:root {
  --ink: #0a0b0a;
  --charcoal: #111311;
  --graphite: #1b1e1b;
  --concrete: #dedfda;
  --paper: #f2f2ee;
  --white: #f7f7f3;
  --sage: #b3c4b8;
  --sage-deep: #6f8877;
  --muted-dark: #777d78;
  --muted-light: rgba(247, 247, 243, 0.58);
  --line-light: rgba(247, 247, 243, 0.22);
  --line-dark: rgba(10, 11, 10, 0.24);
  --rail: 184px;
  --gutter: 42px;
  --header-height: 72px;
  --page-max: 1720px;
  --sans: "Helvetica Neue", "Arial Nova", Arial, sans-serif;
  --mono: "Courier New", Courier, monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html.js body:not(.is-ready),
body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
p,
dl,
dd,
ol {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: 0;
}

em {
  color: var(--sage);
  font-style: normal;
  font-weight: 300;
}

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

button {
  color: inherit;
  font: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  padding: 11px 15px;
  color: var(--ink);
  background: var(--sage);
  transform: translateY(-150%);
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 600;
  width: 100%;
  height: 2px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 800;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto auto;
  gap: 28px;
  align-items: end;
  padding: 34px 38px;
  color: var(--white);
  background: var(--ink);
  transition: transform 900ms cubic-bezier(0.76, 0, 0.24, 1);
}

.no-js .preloader,
.preloader.is-gone {
  display: none;
}

.preloader.is-leaving {
  transform: translateY(-100%);
}

.preloader-mark {
  display: flex;
  flex-direction: column;
  font-size: 92px;
  font-weight: 200;
  line-height: 0.83;
  text-transform: uppercase;
}

.preloader-mark span:last-child {
  color: var(--sage);
}

.preloader-track {
  grid-column: 1 / 3;
  height: 1px;
  overflow: hidden;
  background: var(--line-light);
}

.preloader-track i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--sage);
  animation: preloader-track 760ms cubic-bezier(0.65, 0, 0.35, 1) both;
}

.preloader-caption {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

@keyframes preloader-track {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.site-header {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 300;
  width: var(--rail);
  color: var(--white);
  border-right: 1px solid var(--line-light);
  transition: background-color 260ms ease, backdrop-filter 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(10, 11, 10, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  position: absolute;
  top: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  font-size: 21px;
  font-weight: 300;
}

.brand-name {
  font-size: 11px;
  font-weight: 600;
}

.brand::after {
  position: absolute;
  top: 44px;
  left: 0;
  width: 2px;
  height: 38px;
  content: "";
  background: var(--sage);
}

.site-nav {
  position: absolute;
  top: 50%;
  right: 28px;
  left: 28px;
  display: grid;
  gap: 25px;
  transform: translateY(-50%);
}

.site-nav a {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: baseline;
  width: max-content;
  color: rgba(247, 247, 243, 0.72);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a::before {
  position: absolute;
  top: 50%;
  left: -28px;
  width: 0;
  height: 1px;
  content: "";
  background: var(--sage);
  transition: width 220ms ease;
}

.site-nav a span {
  color: var(--muted-light);
  font-family: var(--mono);
  font-size: 8px;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
  transform: translateX(5px);
}

.site-nav a.is-active::before {
  width: 18px;
}

.rail-note {
  position: absolute;
  right: 24px;
  bottom: 25px;
  left: 28px;
  color: var(--muted-light);
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1.65;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
}

.section-frame {
  width: calc(100% - var(--rail));
  max-width: calc(var(--page-max) - var(--rail));
  margin-left: var(--rail);
  padding-inline: var(--gutter);
  border-right: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.section-light {
  color: var(--ink);
  background: var(--concrete);
}

.section-dark {
  color: var(--white);
  background: var(--charcoal);
}

.section-graphite {
  color: var(--white);
  background: var(--graphite);
}

.hero {
  position: relative;
  height: calc(100svh - 72px);
  min-height: 640px;
  max-height: 980px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0) scale(1.035);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.js .hero-visual {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1250ms cubic-bezier(0.76, 0, 0.24, 1) 180ms;
}

.js body.is-ready .hero-visual {
  clip-path: inset(0);
}

.hero-grid {
  position: absolute;
  inset: 0 0 96px var(--rail);
  z-index: -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  pointer-events: none;
}

.hero-grid i {
  border-right: 1px solid rgba(247, 247, 243, 0.08);
}

.hero-copy {
  position: absolute;
  top: 29%;
  left: calc(var(--rail) + 48px);
  max-width: 700px;
}

.hero-eyebrow,
.kicker {
  margin-bottom: 34px;
  color: rgba(247, 247, 243, 0.72);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-eyebrow span {
  margin-inline: 8px;
  color: var(--sage);
}

.hero h1 {
  display: flex;
  flex-direction: column;
  font-size: 112px;
  font-weight: 200;
  line-height: 0.84;
  text-transform: uppercase;
}

.hero h1 span:last-child {
  color: rgba(247, 247, 243, 0.92);
}

.hero-claim {
  margin-top: 34px;
  font-size: 28px;
  font-weight: 300;
}

.hero-meta {
  position: absolute;
  right: 0;
  bottom: 0;
  left: var(--rail);
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr 1.35fr;
  height: 96px;
  background: rgba(10, 11, 10, 0.78);
  border-top: 1px solid rgba(247, 247, 243, 0.28);
  backdrop-filter: blur(14px);
}

.hero-meta article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  padding: 0 28px;
  border-right: 1px solid rgba(247, 247, 243, 0.28);
}

.hero-meta span {
  color: var(--muted-light);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.hero-meta p {
  font-size: 11px;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: normal;
}

.hero-scroll {
  position: absolute;
  top: 28px;
  right: 30px;
  z-index: 2;
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.hero-scroll b {
  color: var(--sage);
  font-size: 17px;
  font-weight: 400;
}

.js [data-hero-item] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js body.is-ready [data-hero-item] {
  opacity: 1;
  transform: translateY(0);
}

.js body.is-ready [data-hero-item]:nth-child(2) { transition-delay: 120ms; }
.js body.is-ready [data-hero-item]:nth-child(3) { transition-delay: 220ms; }
.js body.is-ready [data-hero-item]:nth-child(4) { transition-delay: 320ms; }

.section-label {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-content: start;
  color: var(--white);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-label > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: var(--sage);
}

.section-label > p {
  padding-top: 8px;
}

.section-label-dark {
  color: var(--ink);
}

.section-label-dark > span {
  color: var(--white);
  background: var(--ink);
}

.about .section-frame {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 24px;
  min-height: 980px;
  padding-top: 50px;
  padding-bottom: 110px;
}

.about .section-label {
  grid-column: 1 / 3;
}

.about-heading {
  grid-column: 3 / 12;
}

.about-heading h2 {
  font-size: 88px;
}

.about-copy {
  grid-column: 6 / 10;
  align-self: end;
  display: grid;
  gap: 28px;
  margin-top: 150px;
  color: var(--muted-light);
  font-size: 16px;
  line-height: 1.65;
}

.about-copy .lead {
  color: var(--white);
  font-size: 20px;
  line-height: 1.5;
}

.about-index {
  grid-column: 10 / 13;
  align-self: end;
  margin-top: 150px;
  border-top: 1px solid var(--line-light);
}

.about-index > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-light);
}

.about-index dt {
  color: var(--sage);
  font-family: var(--mono);
  font-size: 9px;
}

.about-index dd {
  font-size: 14px;
}

.thesis {
  border-bottom: 1px solid var(--line-dark);
}

.thesis-frame {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 24px;
  min-height: 820px;
  padding-top: 120px;
  padding-bottom: 100px;
  border-color: var(--line-dark);
}

.thesis .section-label {
  grid-column: 1 / 3;
}

.thesis h2 {
  grid-column: 3 / 12;
  align-self: center;
  font-size: 82px;
  line-height: 1;
}

.thesis h2 em,
.section-light h2 em {
  color: var(--sage-deep);
}

.thesis-frame > p {
  grid-column: 8 / 12;
  align-self: end;
  color: #555b56;
  font-size: 17px;
  line-height: 1.55;
}

.section-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 24px;
  padding-top: 130px;
  padding-bottom: 100px;
  border-color: var(--line-dark);
}

.section-heading > .section-label {
  grid-column: 1 / 3;
}

.section-heading > h2 {
  grid-column: 3 / 9;
  font-size: 70px;
}

.section-heading > p {
  grid-column: 9 / 13;
  align-self: end;
  color: #555b56;
  font-size: 16px;
  line-height: 1.6;
}

.approach-list {
  padding-bottom: 130px;
  border-color: var(--line-dark);
}

.approach-row {
  position: relative;
  display: grid;
  grid-template-columns: 64px 4fr 3fr 38px;
  gap: 24px;
  align-items: center;
  min-height: 182px;
  padding-inline: 18px;
  border-top: 1px solid var(--ink);
  transition: color 260ms ease, background-color 260ms ease, padding 300ms ease;
}

.approach-row:last-child {
  border-bottom: 1px solid var(--ink);
}

.approach-row:hover {
  padding-inline: 28px;
  color: var(--white);
  background: var(--ink);
}

.row-number,
.row-verb {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.row-number {
  align-self: start;
  padding-top: 28px;
}

.row-verb {
  margin-bottom: 16px;
  color: var(--sage-deep);
}

.approach-row:hover .row-verb,
.approach-row:hover .row-arrow {
  color: var(--sage);
}

.approach-row h3 {
  font-size: 38px;
}

.row-copy {
  color: #555b56;
  font-size: 14px;
  line-height: 1.55;
}

.approach-row:hover .row-copy {
  color: var(--muted-light);
}

.row-arrow {
  justify-self: end;
  color: var(--sage-deep);
  font-size: 24px;
}

.disciplines-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 24px;
  padding-top: 120px;
  padding-bottom: 90px;
}

.disciplines-heading .section-label {
  grid-column: 1 / 3;
}

.disciplines-heading h2 {
  grid-column: 3 / 11;
  font-size: 68px;
}

.discipline-stage {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 24px;
  min-height: 790px;
  padding-top: 42px;
  padding-bottom: 120px;
}

.discipline-number {
  position: sticky;
  top: 120px;
  align-self: start;
  color: var(--sage);
  font-size: 248px;
  font-variant-numeric: tabular-nums;
  font-weight: 200;
  line-height: 0.8;
  transition: opacity 160ms ease, transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.discipline-number.is-changing {
  opacity: 0;
  transform: translateY(14px);
}

.discipline-list {
  border-top: 1px solid rgba(247, 247, 243, 0.42);
}

.discipline-item {
  min-height: 168px;
  padding: 29px 0;
  border-bottom: 1px solid rgba(247, 247, 243, 0.42);
  cursor: default;
  opacity: 0.35;
  transition: opacity 240ms ease, padding 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.discipline-item.is-active,
.discipline-item:hover {
  padding-left: 22px;
  opacity: 1;
}

.discipline-item h3 {
  font-size: 46px;
}

.discipline-item p {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted-light);
  font-size: 14px;
}

.focus-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 24px;
  padding-top: 138px;
  padding-bottom: 105px;
}

.focus-heading .section-label {
  grid-column: 1 / 3;
}

.focus-heading h2 {
  grid-column: 3 / 10;
  font-size: 68px;
}

.focus-heading > p {
  grid-column: 10 / 13;
  align-self: end;
  color: var(--muted-light);
  font-size: 15px;
  line-height: 1.6;
}

.focus-list {
  padding-left: var(--gutter);
  list-style: none;
}

.focus-list li {
  display: grid;
  grid-template-columns: 62px 4fr 6fr;
  gap: 24px;
  align-items: center;
  min-height: 148px;
  border-top: 1px solid var(--line-light);
}

.focus-list li:last-child {
  border-bottom: 1px solid var(--line-light);
}

.focus-list li > span {
  align-self: start;
  padding-top: 28px;
  color: var(--sage);
  font-family: var(--mono);
  font-size: 9px;
}

.focus-list h3 {
  font-size: 31px;
}

.focus-list li > p {
  max-width: 650px;
  color: var(--muted-light);
  font-size: 15px;
}

.situations {
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 24px;
  padding-top: 70px;
  padding-bottom: 132px;
}

.situations > p {
  color: var(--sage);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.situations > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 32px;
}

.situations span {
  padding: 15px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 15px;
}

.partnership-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 24px;
  min-height: 690px;
  padding-top: 120px;
  padding-bottom: 94px;
  border-color: var(--line-dark);
}

.partnership-heading .section-label {
  grid-column: 1 / 3;
}

.partnership-heading h2 {
  grid-column: 3 / 12;
  align-self: center;
  font-size: 72px;
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 116px;
  border-color: var(--line-dark);
}

.partner-list article {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 300px;
  padding: 24px 26px;
  border-top: 1px solid var(--ink);
  border-right: 1px solid var(--line-dark);
}

.partner-list article:first-child {
  border-left: 1px solid var(--line-dark);
}

.partner-list article > span {
  color: var(--sage-deep);
  font-family: var(--mono);
  font-size: 9px;
}

.partner-list h3 {
  align-self: center;
  font-size: 48px;
}

.partner-list p {
  max-width: 330px;
  color: #555b56;
  font-size: 14px;
  line-height: 1.55;
}

.horizon {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  isolation: isolate;
}

.horizon::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 46%;
  content: "";
  background: url("assets/hawk-dark-architecture.jpg") 69% center / cover no-repeat;
  opacity: 0.52;
}

.horizon-frame {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 24px;
  min-height: 850px;
  padding-top: 110px;
  padding-bottom: 100px;
}

.horizon-label {
  grid-column: 1 / 3;
  color: var(--sage);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.horizon h2 {
  grid-column: 3 / 10;
  align-self: center;
  font-size: 82px;
}

.horizon-frame > p:last-child {
  grid-column: 3 / 7;
  align-self: end;
  color: var(--muted-light);
  font-size: 16px;
  line-height: 1.65;
}

.contact-frame {
  display: grid;
  grid-template-columns: 2fr 7fr 3fr;
  gap: 24px;
  min-height: 900px;
  padding-top: 126px;
  padding-bottom: 100px;
}

.contact-main h2 {
  font-size: 76px;
}

.contact-main > p {
  max-width: 600px;
  margin-top: 42px;
  color: var(--muted-light);
  font-size: 17px;
  line-height: 1.6;
}

.contact-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 82px;
  padding: 20px 0;
  border-block: 1px solid rgba(247, 247, 243, 0.62);
  font-size: 32px;
  font-weight: 300;
  overflow-wrap: anywhere;
}

.contact-link b {
  flex: 0 0 auto;
  color: var(--sage);
  font-size: 38px;
  font-weight: 300;
}

.contact-aside {
  align-self: end;
  border-top: 1px solid rgba(247, 247, 243, 0.62);
}

.contact-aside > span {
  display: block;
  padding: 14px 0 28px;
  color: var(--sage);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.contact-aside p {
  padding: 13px 0;
  border-top: 1px solid var(--line-light);
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: 3fr 4fr 3fr 2fr;
  gap: 24px;
  min-height: 240px;
  padding: 48px var(--gutter) 48px calc(var(--rail) + var(--gutter));
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid var(--line-light);
  font-size: 12px;
}

.footer-brand {
  display: flex;
  justify-content: space-between;
  max-width: 230px;
  height: max-content;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(247, 247, 243, 0.5);
  font-size: 16px;
  font-weight: 500;
}

.footer-brand b {
  color: var(--sage);
  font-size: 20px;
  font-weight: 300;
}

.site-footer > p {
  max-width: 290px;
  color: var(--muted-light);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 12px 22px;
}

.site-footer nav a:hover {
  color: var(--sage);
}

.site-footer > p:last-child {
  text-align: right;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (max-width: 1200px) {
  :root {
    --rail: 158px;
    --gutter: 28px;
  }

  .site-nav,
  .brand,
  .rail-note {
    left: 24px;
  }

  .site-nav {
    right: 20px;
  }

  .hero-copy {
    left: calc(var(--rail) + 36px);
  }

  .hero h1 {
    font-size: 92px;
  }

  .hero-claim {
    font-size: 24px;
  }

  .hero-meta article {
    padding-inline: 20px;
  }

  .about-heading h2,
  .thesis h2,
  .horizon h2 {
    font-size: 70px;
  }

  .section-heading > h2,
  .disciplines-heading h2,
  .focus-heading h2,
  .partnership-heading h2,
  .contact-main h2 {
    font-size: 58px;
  }

  .discipline-number {
    font-size: 200px;
  }

  .approach-row h3 {
    font-size: 32px;
  }

  .partner-list h3 {
    font-size: 42px;
  }
}

@media (max-width: 900px) {
  :root {
    --rail: 0px;
    --header-height: 68px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 16px);
  }

  .site-header {
    inset: 0 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    width: 100%;
    height: var(--header-height);
    background: rgba(10, 11, 10, 0.72);
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    backdrop-filter: blur(14px);
  }

  .site-header.nav-open {
    height: 100svh;
    background: var(--ink);
    backdrop-filter: none;
  }

  .site-header.nav-open .brand,
  .site-header.nav-open .menu-toggle {
    align-self: start;
    height: var(--header-height);
  }

  .brand {
    position: static;
    align-self: stretch;
    padding-left: var(--gutter);
  }

  .brand::after,
  .rail-note {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 112px;
    padding: 0 var(--gutter);
    background: transparent;
    border: 0;
    border-left: 1px solid var(--line-light);
    cursor: pointer;
  }

  .menu-label {
    font-size: 10px;
    text-transform: uppercase;
  }

  .menu-icon {
    position: relative;
    display: block;
    width: 22px;
    height: 14px;
  }

  .menu-icon i {
    position: absolute;
    left: 0;
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: top 220ms ease, transform 220ms ease;
  }

  .menu-icon i:first-child { top: 3px; }
  .menu-icon i:last-child { top: 11px; }

  .nav-open .menu-icon i:first-child {
    top: 7px;
    transform: rotate(45deg);
  }

  .nav-open .menu-icon i:last-child {
    top: 7px;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    inset: var(--header-height) 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 40px var(--gutter);
    color: var(--white);
    background: var(--ink);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-14px);
    transition: opacity 240ms ease, transform 240ms ease, visibility 240ms ease;
  }

  .nav-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    width: 100%;
    min-height: 82px;
    color: var(--white);
    border-top: 1px solid rgba(247, 247, 243, 0.3);
    font-size: 36px;
    font-weight: 300;
    text-transform: none;
  }

  .site-nav a:last-child {
    border-bottom: 1px solid rgba(247, 247, 243, 0.3);
  }

  .site-nav a::before {
    display: none;
  }

  .site-nav a span {
    color: var(--sage);
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    transform: none;
  }

  .section-frame {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .hero {
    height: calc(100svh - 54px);
    min-height: 650px;
    max-height: 820px;
  }

  .hero-grid {
    inset: var(--header-height) 0 170px;
  }

  .hero-copy {
    top: 25%;
    left: var(--gutter);
  }

  .hero h1 {
    font-size: 84px;
  }

  .hero-meta {
    left: 0;
    grid-template-columns: repeat(2, 1fr);
    height: 170px;
  }

  .hero-meta article {
    padding-inline: var(--gutter);
    border-bottom: 1px solid rgba(247, 247, 243, 0.24);
  }

  .hero-meta p {
    white-space: normal;
  }

  .hero-scroll {
    display: none;
  }

  .about .section-frame {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    min-height: 920px;
  }

  .about .section-label {
    grid-column: 1 / 3;
  }

  .about-heading {
    grid-column: 3 / 9;
  }

  .about-heading h2 {
    font-size: 60px;
  }

  .about-copy {
    grid-column: 3 / 7;
    margin-top: 110px;
  }

  .about-index {
    grid-column: 7 / 9;
    margin-top: 110px;
  }

  .thesis h2,
  .section-heading > h2,
  .disciplines-heading h2,
  .focus-heading h2,
  .partnership-heading h2,
  .horizon h2 {
    grid-column: 3 / 13;
  }

  .thesis-frame > p,
  .section-heading > p,
  .focus-heading > p {
    grid-column: 8 / 13;
  }

  .approach-row {
    grid-template-columns: 44px 1fr 32px;
    min-height: 224px;
    padding-block: 26px;
  }

  .approach-row > div { grid-column: 2; }
  .row-number { grid-row: 1 / 3; }
  .row-copy { grid-column: 2 / 4; }
  .row-arrow { grid-column: 3; grid-row: 1; }

  .discipline-stage {
    grid-template-columns: 3fr 5fr;
  }

  .discipline-number {
    font-size: 150px;
  }

  .partner-list {
    grid-template-columns: 1fr;
  }

  .partner-list article {
    grid-template-columns: 44px 2fr 3fr;
    grid-template-rows: 1fr;
    gap: 18px;
    align-items: center;
    min-height: 160px;
    padding: 22px 0;
    border-right: 0;
  }

  .partner-list article:first-child {
    border-left: 0;
  }

  .partner-list h3 {
    font-size: 40px;
  }

  .horizon::before {
    width: 52%;
    opacity: 0.38;
  }

  .contact-frame {
    grid-template-columns: 2fr 6fr;
  }

  .contact-aside {
    grid-column: 2;
    width: min(100%, 390px);
    margin-top: 65px;
  }

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 48px;
    padding-left: var(--gutter);
  }

  .site-footer > p:last-child {
    text-align: left;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 18px;
    --header-height: 66px;
  }

  .preloader {
    padding: 24px var(--gutter);
  }

  .preloader-mark {
    font-size: 64px;
  }

  .preloader-caption {
    max-width: 130px;
    text-align: right;
  }

  .brand-name {
    font-size: 10px;
  }

  .menu-toggle {
    min-width: 82px;
    padding-inline: 15px;
  }

  .menu-label {
    display: none;
  }

  .site-nav {
    justify-content: flex-start;
    padding-top: 88px;
  }

  .site-nav a {
    min-height: 76px;
    font-size: 31px;
  }

  .hero {
    height: calc(100svh - 54px);
    min-height: 620px;
    max-height: 790px;
  }

  .hero-visual img {
    object-position: 54% center;
    transform: scale(1.045);
  }

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

  .hero-grid i:nth-child(n + 3) {
    display: none;
  }

  .hero-copy {
    top: 20%;
    right: var(--gutter);
    left: var(--gutter);
  }

  .hero-eyebrow {
    margin-bottom: 24px;
    font-size: 8px;
  }

  .hero h1 {
    font-size: 62px;
    line-height: 0.86;
  }

  .hero-claim {
    margin-top: 24px;
    font-size: 20px;
  }

  .hero-meta {
    height: 180px;
  }

  .hero-meta article {
    gap: 5px;
    padding-inline: 16px;
  }

  .hero-meta p {
    font-size: 9px;
    line-height: 1.35;
  }

  .section-label {
    margin-bottom: 54px;
  }

  .about .section-frame {
    display: block;
    min-height: 0;
    padding-top: 36px;
    padding-bottom: 86px;
  }

  .about-heading .kicker {
    margin-bottom: 24px;
  }

  .about-heading h2 {
    font-size: 47px;
  }

  .about-copy {
    margin-top: 68px;
    font-size: 15px;
  }

  .about-copy .lead {
    font-size: 17px;
  }

  .about-index {
    margin-top: 54px;
  }

  .thesis,
  .thesis-frame {
    min-height: 700px;
  }

  .thesis-frame,
  .section-heading,
  .disciplines-heading,
  .focus-heading,
  .partnership-heading,
  .horizon-frame {
    display: block;
    padding-top: 84px;
    padding-bottom: 72px;
  }

  .thesis h2,
  .section-heading > h2,
  .disciplines-heading h2,
  .focus-heading h2,
  .partnership-heading h2,
  .horizon h2 {
    font-size: 46px;
  }

  .thesis h2 {
    margin-top: 82px;
  }

  .thesis-frame > p,
  .section-heading > p,
  .focus-heading > p {
    max-width: 340px;
    margin-top: 70px;
    margin-left: auto;
    font-size: 15px;
  }

  .section-heading > p,
  .focus-heading > p {
    margin-top: 34px;
    margin-left: 0;
  }

  .approach-list {
    padding-bottom: 86px;
  }

  .approach-row {
    grid-template-columns: 30px 1fr 26px;
    gap: 12px;
    min-height: 246px;
    padding: 24px 0;
  }

  .approach-row:hover {
    padding-inline: 0;
  }

  .approach-row h3 {
    font-size: 29px;
  }

  .row-copy {
    font-size: 13px;
  }

  .discipline-stage {
    display: block;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 86px;
  }

  .discipline-number {
    position: static;
    margin: 18px 0 48px;
    font-size: 110px;
  }

  .discipline-item {
    min-height: 148px;
  }

  .discipline-item.is-active,
  .discipline-item:hover {
    padding-left: 0;
  }

  .discipline-item h3 {
    font-size: 36px;
  }

  .focus-list li {
    grid-template-columns: 30px 1fr;
    gap: 12px;
    min-height: 184px;
    padding-block: 24px;
  }

  .focus-list li > span {
    grid-row: 1 / 3;
    padding-top: 5px;
  }

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

  .focus-list li > p {
    grid-column: 2;
    font-size: 14px;
  }

  .situations {
    display: block;
    padding-top: 58px;
    padding-bottom: 86px;
  }

  .situations > div {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .partnership-heading {
    min-height: 630px;
  }

  .partnership-heading h2 {
    margin-top: 90px;
  }

  .partner-list {
    padding-bottom: 80px;
  }

  .partner-list article {
    grid-template-columns: 28px 1fr;
    gap: 12px;
    min-height: 190px;
    padding-block: 26px;
  }

  .partner-list article > span {
    grid-row: 1 / 3;
  }

  .partner-list h3 {
    font-size: 38px;
  }

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

  .horizon,
  .horizon-frame {
    min-height: 760px;
  }

  .horizon::before {
    width: 100%;
    opacity: 0.2;
  }

  .horizon h2 {
    margin-top: 116px;
  }

  .horizon-frame > p:last-child {
    max-width: 320px;
    margin-top: 110px;
    margin-left: auto;
    font-size: 15px;
  }

  .contact-frame {
    display: block;
    min-height: 0;
    padding-top: 86px;
    padding-bottom: 82px;
  }

  .contact-main h2 {
    font-size: 47px;
  }

  .contact-main > p {
    margin-top: 32px;
    font-size: 16px;
  }

  .contact-link {
    margin-top: 54px;
    font-size: 22px;
  }

  .contact-link b {
    font-size: 31px;
  }

  .contact-aside {
    width: 100%;
    margin-top: 58px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 0;
    padding: 44px var(--gutter);
  }

  .site-footer > p:last-child {
    margin-top: 26px;
  }
}

@media (max-width: 370px) {
  .hero h1 {
    font-size: 56px;
  }

  .about-heading h2,
  .thesis h2,
  .section-heading > h2,
  .disciplines-heading h2,
  .focus-heading h2,
  .partnership-heading h2,
  .horizon h2,
  .contact-main h2 {
    font-size: 42px;
  }

  .contact-link {
    font-size: 19px;
  }
}

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

  .preloader {
    display: none;
  }

  .hero-visual,
  .js .hero-visual {
    clip-path: none;
  }

  .hero-visual img {
    transform: scale(1.015);
  }
}
