@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/instrument-serif-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/instrument-serif-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #121212;
  --paper: #f3f1eb;
  --white: #fffefb;
  --coral: #ed573b;
  --coral-dark: #c63c25;
  --cobalt: #1649d8;
  --green: #153d31;
  --acid: #d8ed72;
  --line: rgba(18, 18, 18, 0.18);
  --line-light: rgba(255, 255, 255, 0.24);
  --sans: "Manrope", Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --header-height: 82px;
  --page-gutter: 56px;
  --max-width: 1540px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

* {
  margin: 0;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--coral) var(--ink);
}

body {
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button {
  border: 0;
  cursor: pointer;
}

ul {
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

::selection {
  color: var(--ink);
  background: var(--acid);
}

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

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

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

.scroll-progress {
  position: fixed;
  z-index: 120;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

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

.intro {
  position: fixed;
  z-index: 999;
  display: grid;
  inset: 0;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  transition: clip-path 900ms var(--ease-out) 900ms, visibility 0s linear 1.8s;
  clip-path: inset(0 0 0 0);
}

.no-js .intro {
  display: none;
}

.is-ready .intro {
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
}

.intro__word {
  display: flex;
  align-items: flex-end;
  font-size: 11rem;
  font-weight: 700;
  line-height: 0.75;
}

.intro__word span,
.intro__word i {
  opacity: 0;
  transform: translateY(50px);
  animation: intro-letter 600ms var(--ease-out) forwards;
}

.intro__word span:nth-child(2) { animation-delay: 80ms; }
.intro__word span:nth-child(3) { animation-delay: 160ms; }
.intro__word i {
  color: var(--coral);
  font-family: var(--serif);
  font-style: italic;
  animation-delay: 240ms;
}

@keyframes intro-letter {
  to { opacity: 1; transform: translateY(0); }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-gutter);
  color: var(--white);
  border-bottom: 1px solid var(--line-light);
  transition: color 300ms ease, background-color 300ms ease, border-color 300ms ease, transform 300ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(243, 241, 235, 0.94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
}

.wordmark {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
  line-height: 1;
}

.wordmark__main {
  font-size: 1.75rem;
  font-weight: 700;
}

.wordmark__main span {
  color: var(--coral);
}

.wordmark__sub {
  max-width: 72px;
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.nav a {
  position: relative;
}

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

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

.nav__contact {
  display: inline-flex;
  height: 42px;
  align-items: center;
  gap: 22px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--acid);
  transition: color 200ms ease, background-color 200ms ease;
}

.nav__contact:hover {
  color: var(--white);
  background: var(--coral);
}

.menu-toggle {
  position: relative;
  z-index: 3;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  position: absolute;
  left: 8px;
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: transform 280ms ease, top 280ms ease;
}

.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child { top: 27px; }
.menu-open .menu-toggle span:first-child { top: 22px; transform: rotate(45deg); }
.menu-open .menu-toggle span:last-child { top: 22px; transform: rotate(-45deg); }

.section {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 140px var(--page-gutter);
}

.section-index {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  margin-bottom: 84px;
  color: rgba(18, 18, 18, 0.62);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.section-index p {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-index p::before {
  width: 38px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-index--dark {
  color: rgba(255, 255, 255, 0.7);
}

.section-index--dark span {
  color: var(--acid);
}

.display {
  font-size: 5.5rem;
  font-weight: 500;
  line-height: 0.96;
}

.display em {
  font-family: var(--serif);
  font-weight: 400;
}

.lead {
  font-size: 1.35rem;
  line-height: 1.5;
}

.kicker {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: gap 250ms var(--ease-out);
}

.text-link:hover { gap: 30px; }
.text-link--light { color: var(--white); }

.hero {
  position: relative;
  min-height: 92svh;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 108%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.05);
  transition: transform 1.8s var(--ease-out) 1s;
}

.is-ready .hero__media img {
  transform: scale(1);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(9, 12, 11, 0.7) 0%, rgba(9, 12, 11, 0.28) 52%, rgba(9, 12, 11, 0.2) 100%),
    linear-gradient(0deg, rgba(9, 12, 11, 0.88) 0%, transparent 54%);
}

.hero__rail {
  position: absolute;
  z-index: 1;
  top: calc(var(--header-height) + 26px);
  right: var(--page-gutter);
  left: var(--page-gutter);
  display: flex;
  justify-content: space-between;
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
}

.hero__rail span { color: var(--acid); }

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, var(--max-width));
  min-height: 92svh;
  margin: 0 auto;
  flex-direction: column;
  justify-content: flex-end;
  padding: 170px var(--page-gutter) 52px;
}

.hero__kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 700ms ease 1.55s, transform 700ms var(--ease-out) 1.55s;
}

.is-ready .hero__kicker {
  opacity: 1;
  transform: translateY(0);
}

.hero__kicker span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--acid);
}

.hero h1 {
  max-width: 1200px;
  font-size: 8rem;
  font-weight: 600;
  line-height: 0.78;
}

.hero h1 span,
.hero h1 em {
  display: inline-block;
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 900ms ease, transform 900ms var(--ease-out);
}

.hero h1 span { transition-delay: 1.45s; }
.hero h1 em {
  margin-left: 8.5rem;
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 400;
  transition-delay: 1.58s;
}

.is-ready .hero h1 span,
.is-ready .hero h1 em {
  opacity: 1;
  transform: translateY(0);
}

.hero__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  font-size: 0.9rem;
  font-weight: 500;
}

.round-link {
  display: grid;
  width: 92px;
  height: 92px;
  place-content: center;
  justify-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 250ms ease, background-color 250ms ease, transform 250ms ease;
}

.round-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.round-link:hover {
  color: var(--ink);
  background: var(--acid);
  transform: rotate(-7deg);
}

.hero__caption {
  position: absolute;
  z-index: 1;
  right: 15px;
  top: 50%;
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

.statement {
  padding-bottom: 0;
}

.statement__body {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.8fr);
  gap: 100px;
  align-items: end;
}

.statement__copy {
  padding-bottom: 8px;
}

.statement__copy .lead {
  margin-bottom: 28px;
}

.statement__copy p:last-child {
  max-width: 48ch;
  color: rgba(18, 18, 18, 0.66);
}

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

.principle {
  position: relative;
  min-height: 280px;
  padding: 34px 32px 38px 0;
  border-right: 1px solid var(--line);
}

.principle + .principle {
  padding-left: 32px;
}

.principle:last-child { border-right: 0; }

.principle__num {
  display: block;
  margin-bottom: 66px;
  color: var(--coral);
  font-size: 0.66rem;
  font-weight: 700;
}

.principle h3 {
  margin-bottom: 14px;
  font-size: 1.15rem;
  font-weight: 600;
}

.principle p {
  max-width: 34ch;
  color: rgba(18, 18, 18, 0.62);
  font-size: 0.9rem;
}

.current {
  display: grid;
  min-height: 900px;
  grid-template-columns: minmax(0, 1.55fr) minmax(440px, 0.8fr);
  margin-top: 140px;
  color: var(--white);
  background: var(--green);
}

.current__image {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.current__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(8, 28, 22, 0.25), transparent 40%);
}

.current__image img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  transform: translateY(-5%);
}

.image-credit {
  position: absolute;
  z-index: 1;
  left: 26px;
  bottom: 22px;
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
}

.current__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
}

.current__label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: var(--acid);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pulse {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.pulse::after {
  position: absolute;
  inset: -5px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { opacity: 0.8; transform: scale(0.5); }
  100% { opacity: 0; transform: scale(1.8); }
}

.current__location {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.current h2 {
  margin: 28px 0 32px;
  font-size: 5rem;
  font-weight: 500;
  line-height: 0.87;
}

.current h2 em {
  font-family: var(--serif);
  font-weight: 400;
}

.current__lede {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.current__facts {
  margin: 50px 0;
  border-top: 1px solid var(--line-light);
}

.current__facts div {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.current__facts dt { color: rgba(255, 255, 255, 0.66); }
.current__facts dd { text-align: right; }

.services__head {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 100px;
}

.services__head .lead {
  max-width: 32ch;
  padding-bottom: 8px;
}

.service-list {
  border-top: 1px solid var(--ink);
}

.service {
  position: relative;
  display: grid;
  min-height: 235px;
  grid-template-columns: 150px minmax(0, 1fr) 80px;
  gap: 34px;
  align-items: center;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.service__index {
  align-self: start;
  padding-top: 8px;
  color: var(--coral);
  font-size: 0.66rem;
  font-weight: 700;
}

.service h3 {
  max-width: 800px;
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1.1;
}

.service div > p {
  max-width: 67ch;
  margin-top: 18px;
  color: rgba(18, 18, 18, 0.62);
}

.service__mark {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition: background-color 240ms ease, transform 240ms var(--ease-out);
}

.service__mark::before,
.service__mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
}

.service__mark::after { transform: translate(-50%, -50%) rotate(90deg); }

.service:hover .service__mark {
  background: var(--acid);
  transform: rotate(90deg);
}

.experience {
  color: var(--white);
  background: var(--ink);
}

.experience__header {
  min-height: 720px;
  padding-top: 150px;
  padding-bottom: 120px;
}

.experience .section-index { color: rgba(255, 255, 255, 0.6); }
.experience__header .display { max-width: 1000px; }

.experience__note {
  max-width: 45ch;
  margin: 62px 0 0 auto;
  color: rgba(255, 255, 255, 0.58);
}

.project-dossier {
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: start;
  border-top: 1px solid var(--line-light);
}

.project-visual {
  position: sticky;
  top: 0;
  display: flex;
  height: 100svh;
  min-height: 700px;
  flex-direction: column;
  padding: 24px;
  border-right: 1px solid var(--line-light);
}

.project-visual__frame {
  position: relative;
  flex: 1;
  min-height: 0;
  background: #242424;
  overflow: hidden;
}

.project-visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 280ms ease, transform 700ms var(--ease-out);
}

.project-visual__frame img.is-changing {
  opacity: 0;
  transform: scale(1.025);
}

.project-visual__veil {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 24%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.36), transparent);
  pointer-events: none;
}

.project-visual__meta {
  display: flex;
  justify-content: space-between;
  padding-top: 17px;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
}

.project-visual__meta p:last-child { color: rgba(255, 255, 255, 0.52); }

.project-list {
  min-width: 0;
}

.project {
  position: relative;
  display: flex;
  min-height: 72svh;
  flex-direction: column;
  justify-content: center;
  padding: 74px 64px;
  border-bottom: 1px solid var(--line-light);
  transition: opacity 350ms ease, background-color 350ms ease;
}

.project.is-active,
.project:focus-within {
  background: #181818;
}

.project__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.project.is-active .project__top span { color: var(--acid); }

.project h3 {
  max-width: 600px;
  font-family: var(--serif);
  font-size: 4.1rem;
  font-weight: 400;
  line-height: 0.92;
  color: rgba(255, 255, 255, 0.7);
}

.project.is-active h3 { color: var(--white); }

.project__role {
  margin: 26px 0 36px;
  color: var(--acid);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project__body {
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.62);
}

.register {
  width: 100%;
  max-width: none;
  color: var(--white);
  background: var(--cobalt);
}

.register__head {
  display: flex;
  width: min(100%, calc(var(--max-width) - (2 * var(--page-gutter))));
  margin: 0 auto 90px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.register__head .kicker { color: var(--acid); }

.register__head h2 {
  max-width: 730px;
  font-family: var(--serif);
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 0.9;
  text-align: right;
}

.register__grid {
  display: grid;
  width: min(100%, calc(var(--max-width) - (2 * var(--page-gutter))));
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  border-top: 1px solid var(--line-light);
}

.register__column {
  padding: 38px 34px 0 0;
  border-right: 1px solid var(--line-light);
}

.register__column + .register__column { padding-left: 34px; }
.register__column:last-child { border-right: 0; }

.register__column h3 {
  min-height: 54px;
  color: var(--acid);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.register__column li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.82rem;
}

.register__column small {
  max-width: 45%;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.61rem;
  text-align: right;
  text-transform: uppercase;
}

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

.people__intro {
  min-height: 650px;
}

.people__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.person {
  position: relative;
  min-height: 830px;
  padding: 74px 64px 90px;
  overflow: hidden;
}

.person--coral {
  color: var(--ink);
  background: var(--coral);
}

.person--blue {
  color: var(--white);
  background: var(--green);
}

.person__portrait {
  position: relative;
  z-index: 1;
  width: 190px;
  height: 255px;
  margin-left: auto;
  background: var(--paper);
  overflow: hidden;
}

.person__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.person__number {
  position: absolute;
  top: -20px;
  left: 30px;
  color: rgba(255, 255, 255, 0.15);
  font-size: 18rem;
  font-weight: 700;
  line-height: 1;
}

.person--coral .person__number { color: rgba(18, 18, 18, 0.1); }

.person__content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-top: 90px;
}

.person__role {
  margin-bottom: 16px;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.person h3 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 400;
  line-height: 0.9;
}

.person__content > p:not(.person__role) {
  max-width: 50ch;
  font-size: 1.03rem;
}

.person details {
  margin-top: 42px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.person summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 700;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
}

.person summary::-webkit-details-marker { display: none; }

.person summary span {
  position: relative;
  width: 18px;
  height: 18px;
}

.person summary span::before,
.person summary span::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform 250ms ease;
}

.person summary span::after { transform: rotate(90deg); }
.person details[open] summary span::after { transform: rotate(0); }

.person__more {
  max-width: 55ch;
  padding: 4px 0 28px;
  font-size: 0.88rem;
}

.person__more p + p { margin-top: 16px; }

.contact {
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
  gap: 80px;
  color: var(--white);
  background: var(--coral-dark);
}

.contact__intro {
  padding-left: max(0px, calc((100vw - var(--max-width)) / 2));
}

.contact .display {
  max-width: 760px;
}

.contact__lead {
  max-width: 42ch;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.12rem;
}

.contact__direct {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 100px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}

.contact__direct div {
  display: flex;
  flex-direction: column;
}

.contact__direct p {
  margin-bottom: 16px;
  color: var(--acid);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact__direct a {
  width: max-content;
  max-width: 100%;
  margin: 3px 0;
  font-size: 0.8rem;
  border-bottom: 1px solid transparent;
}

.contact__direct a:hover { border-bottom-color: currentColor; }

.contact-form {
  align-self: center;
  padding: 20px 0 20px 74px;
  border-left: 1px solid var(--line-light);
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.field {
  margin-bottom: 36px;
}

.field label {
  display: block;
  margin-bottom: 11px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  resize: vertical;
  transition: border-color 200ms ease;
}

.field input {
  height: 52px;
}

.field textarea {
  min-height: 135px;
  padding: 13px 0;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--acid);
}

.submit-button {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  color: var(--ink);
  background: var(--acid);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 200ms ease, background-color 200ms ease;
}

.submit-button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 240ms var(--ease-out);
}

.submit-button:hover {
  color: var(--white);
  background: var(--ink);
}

.submit-button:hover svg { transform: translateX(7px); }

.footer {
  padding: 90px var(--page-gutter) 34px;
  color: var(--ink);
  background: var(--paper);
  overflow: hidden;
}

.footer__brand {
  margin-bottom: 72px;
  font-size: 18rem;
  font-weight: 700;
  line-height: 0.68;
  white-space: nowrap;
}

.footer__brand span { color: var(--coral); }

.footer__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  padding: 38px 0;
  border-top: 1px solid var(--ink);
}

.footer__row > div p:first-child {
  margin-bottom: 7px;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer__row > div p:last-child,
.footer__row nav {
  color: rgba(18, 18, 18, 0.72);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
}

.footer__row nav {
  display: flex;
  gap: 28px;
}

.footer__row nav a:hover { color: var(--coral); }

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

.sources summary {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.66rem;
  font-weight: 700;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
}

.sources summary::-webkit-details-marker { display: none; }
.sources summary::after { content: "+"; font-size: 1.2rem; font-weight: 400; }
.sources[open] summary::after { content: "-"; }

.sources__body {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 30px;
  padding: 0 0 32px;
  color: rgba(18, 18, 18, 0.62);
  font-size: 0.7rem;
}

.sources__body a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(18, 18, 18, 0.3);
  text-underline-offset: 4px;
}

.sources__body a:hover { color: var(--coral); }

.footer__legal {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: rgba(18, 18, 18, 0.7);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
}

.footer__legal p:nth-child(2) { text-align: center; }
.footer__legal a { color: var(--ink); }

.thanks-page {
  color: var(--white);
  background: var(--green);
}

.thanks-page .site-header {
  color: var(--white);
  background: transparent;
}

.thanks {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 130px var(--page-gutter) 60px;
  overflow: hidden;
}

.thanks::before {
  position: absolute;
  top: 10%;
  right: -5%;
  color: rgba(255, 255, 255, 0.055);
  content: "TRU.";
  font-size: 25rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.thanks__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 940px);
}

.thanks__eyebrow {
  margin-bottom: 32px;
  color: var(--acid);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.thanks h1 {
  max-width: 900px;
  font-size: 6.5rem;
  font-weight: 500;
  line-height: 0.9;
}

.thanks h1 em {
  font-family: var(--serif);
  font-weight: 400;
}

.thanks__message {
  max-width: 48ch;
  margin: 50px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.1rem;
}

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

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

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

@media (max-width: 1220px) {
  :root {
    --page-gutter: 36px;
  }

  .hero h1 { font-size: 6.3rem; }
  .display { font-size: 4.5rem; }
  .statement__body { gap: 64px; }
  .current { grid-template-columns: minmax(0, 1.3fr) minmax(400px, 0.8fr); }
  .current__panel { padding: 70px 42px; }
  .current h2 { font-size: 4.2rem; }
  .project { padding: 60px 44px; }
  .project h3 { font-size: 3.4rem; }
  .person { padding: 60px 44px 80px; }
  .person h3 { font-size: 4.2rem; }
  .contact { gap: 56px; }
  .contact-form { padding-left: 50px; }
  .footer__brand { font-size: 14rem; }
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
    --page-gutter: 26px;
  }

  .menu-toggle { display: block; }

  .nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 110px var(--page-gutter) 40px;
    color: var(--white);
    background: var(--ink);
    visibility: hidden;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 500ms var(--ease-out), visibility 0s linear 500ms;
  }

  .menu-open .nav {
    visibility: visible;
    clip-path: inset(0);
    transition: clip-path 500ms var(--ease-out), visibility 0s;
  }

  .menu-open .site-header { color: var(--white); }

  .nav a {
    display: flex;
    min-height: 74px;
    align-items: center;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--serif);
    font-size: 2.6rem;
    font-weight: 400;
    text-transform: none;
  }

  .nav a:not(.nav__contact)::after { display: none; }

  .nav__contact {
    height: auto;
    margin-top: 40px;
    padding: 0 22px;
    color: var(--ink);
    font-family: var(--sans) !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
  }

  .display { font-size: 4rem; }

  .statement__body,
  .services__head {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .statement__copy { max-width: 650px; margin-left: 15%; }
  .principle { min-height: 250px; }

  .current {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .current__image { min-height: 70svh; }
  .current__panel { min-height: 720px; padding: 90px var(--page-gutter); }
  .current__lede { max-width: 60ch; }

  .services__head .lead { margin-left: 25%; }

  .project-dossier { grid-template-columns: 50% 50%; }
  .project-visual { padding: 18px; }
  .project { padding: 48px 32px; }
  .project h3 { font-size: 3rem; }

  .register__head h2 { font-size: 4rem; }
  .register__grid { grid-template-columns: 1fr 1fr; }
  .register__column:nth-child(2) { border-right: 0; }
  .register__column:nth-child(3) { grid-column: 1 / -1; padding-left: 0; border-right: 0; }

  .people__grid { grid-template-columns: 1fr; }
  .person { min-height: 720px; }
  .person__content { max-width: 700px; }

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

  .contact__intro { padding-left: 0; }
  .contact-form { padding: 0; border-left: 0; }
  .footer__brand { font-size: 11rem; }
  .sources__body { grid-template-columns: repeat(2, 1fr); }
  .sources__body p { grid-column: 1 / -1; }
}

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

  body { font-size: 15px; }
  .section { padding-top: 96px; padding-bottom: 96px; }
  .section-index { margin-bottom: 58px; }
  .display { font-size: 3.25rem; line-height: 0.93; }
  .lead { font-size: 1.14rem; }
  .intro__word { font-size: 7rem; }

  .wordmark__main { font-size: 1.5rem; }
  .wordmark__sub { font-size: 0.54rem; }

  .hero,
  .hero__content {
    min-height: 89svh;
  }

  .hero__media img {
    height: 104%;
    object-position: 62% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(9, 12, 11, 0.68), rgba(9, 12, 11, 0.16)),
      linear-gradient(0deg, rgba(9, 12, 11, 0.95), transparent 70%);
  }

  .hero__rail { display: none; }
  .hero__content { padding: 140px var(--page-gutter) 28px; }
  .hero__kicker { flex-wrap: wrap; gap: 8px; margin-bottom: 22px; font-size: 0.58rem; }
  .hero h1 { font-size: 4.1rem; line-height: 0.83; }
  .hero h1 em { margin-left: 0; }
  .hero__footer { align-items: center; margin-top: 42px; }
  .hero__footer > p { font-size: 0.78rem; }
  .round-link { width: 72px; height: 72px; }
  .hero__caption { display: none; }

  .statement__copy { margin-left: 0; }
  .principles { grid-template-columns: 1fr; margin-top: 80px; }
  .principle,
  .principle + .principle {
    min-height: 0;
    padding: 28px 0 32px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .principle__num { margin-bottom: 38px; }

  .current { margin-top: 80px; }
  .current__image { min-height: 57svh; }
  .current__panel { min-height: 0; padding: 76px var(--page-gutter) 86px; }
  .current h2 { font-size: 3.6rem; }
  .current__facts div { align-items: flex-start; }

  .services__head { margin-bottom: 68px; }
  .services__head .lead { margin-left: 0; }
  .service {
    min-height: 0;
    grid-template-columns: 1fr 48px;
    gap: 28px;
    padding: 34px 0;
  }
  .service__index { grid-column: 1 / -1; }
  .service h3 { font-size: 1.8rem; }
  .service div > p { font-size: 0.88rem; }
  .service__mark { width: 44px; height: 44px; }

  .experience__header { min-height: 580px; }
  .experience__note { margin-left: 0; }

  .project-dossier {
    display: block;
  }

  .project-visual {
    position: sticky;
    z-index: 2;
    top: var(--header-height);
    height: 45svh;
    min-height: 310px;
    padding: 12px;
    border-right: 0;
    background: var(--ink);
  }

  .project-list {
    position: relative;
    z-index: 3;
  }

  .project {
    min-height: 58svh;
    padding: 54px var(--page-gutter);
    background: rgba(18, 18, 18, 0.96);
  }

  .project.is-active { background: #181818; }
  .project h3 { font-size: 3.1rem; }
  .project__top { margin-bottom: 38px; }

  .register__head {
    display: block;
    margin-bottom: 66px;
  }
  .register__head h2 {
    margin-top: 28px;
    font-size: 3.6rem;
    text-align: left;
  }
  .register__grid { grid-template-columns: 1fr; }
  .register__column,
  .register__column + .register__column,
  .register__column:nth-child(3) {
    grid-column: auto;
    padding: 34px 0 0;
    border-right: 0;
  }
  .register__column h3 { min-height: 42px; }

  .people__intro { min-height: 520px; }
  .person {
    min-height: 0;
    padding: 50px var(--page-gutter) 70px;
  }
  .person__portrait { width: 150px; height: 205px; }
  .person__number { top: 5px; left: 10px; font-size: 11rem; }
  .person__content { margin-top: 65px; }
  .person h3 { font-size: 3.8rem; }

  .contact { gap: 70px; }
  .contact__direct { grid-template-columns: 1fr; gap: 30px; margin-top: 70px; }
  .contact__direct a { font-size: 0.76rem; }

  .footer { padding: 70px var(--page-gutter) 28px; }
  .footer__brand { margin-bottom: 48px; font-size: 7.4rem; }
  .footer__row { display: block; padding: 28px 0; }
  .footer__row nav { flex-wrap: wrap; gap: 16px 22px; margin-top: 30px; }
  .sources__body { grid-template-columns: 1fr; }
  .sources__body p { grid-column: auto; }
  .footer__legal { grid-template-columns: 1fr; gap: 10px; }
  .footer__legal p:nth-child(2) { text-align: left; }
  .thanks::before { top: 25%; font-size: 11rem; }
  .thanks h1 { font-size: 4rem; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 3.55rem; }
  .display { font-size: 2.9rem; }
  .project h3 { font-size: 2.7rem; }
  .contact__direct a { font-size: 0.68rem; }
  .footer__brand { font-size: 6.4rem; }
}

@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;
    transition-duration: 0.01ms !important;
  }
  .intro { display: none; }
  .hero__media img { height: 100%; transform: none; }
  .js .reveal { opacity: 1; transform: none; }
}
