@font-face {
  font-family: "Archivo";
  src: url("fonts/archivo-variable-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-stretch: 75% 125%;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/ibm-plex-mono-medium-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --ink: #0b0b0b;
  --paper: #f1f0ea;
  --white: #ffffff;
  --orange: #ff4d00;
  --soft-orange: #ff6b2c;
  --gray: #a6a59e;
  --line-dark: rgba(255, 255, 255, 0.18);
  --line-light: rgba(11, 11, 11, 0.2);
  --shell: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

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

.shell {
  width: min(var(--shell), calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  border-bottom: 1px solid var(--line-dark);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wordmark {
  text-decoration: none;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.wordmark span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a,
.kicker,
.project-status,
.site-footer,
.legal-nav a,
.legal-meta {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a[aria-current="page"] {
  color: var(--orange);
}

.hero {
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 150px 0 74px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0 49.9%, rgba(255,255,255,.07) 50%, transparent 50.1%),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    var(--ink);
  background-size: 100% 100%, 100% 92px, auto;
}

.kicker {
  margin: 0 0 22px;
  color: var(--orange);
}

.hero h1 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(72px, 12.6vw, 178px);
  font-weight: 850;
  font-stretch: condensed;
  line-height: 0.82;
  letter-spacing: -0.062em;
  word-spacing: 0.065em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 650px;
  margin: 42px 0 0;
  font-size: clamp(19px, 2.1vw, 30px);
  font-weight: 450;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.button {
  display: inline-block;
  margin-top: 32px;
  padding: 15px 20px;
  background: var(--orange);
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    transform 220ms cubic-bezier(.2, .7, .2, 1);
}

.button:hover {
  background: var(--soft-orange);
  transform: translateY(-4px);
}

.section {
  padding: 130px 0;
}

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

.work .kicker {
  color: var(--ink);
}

.section-intro {
  max-width: 960px;
  margin-bottom: 88px;
}

.section-intro h2,
.production h2,
.contact h2,
.legal h1 {
  margin: 0;
  font-weight: 820;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.section-intro h2 {
  font-size: clamp(48px, 7vw, 98px);
}

.section-intro > p:last-child {
  max-width: 620px;
  margin: 26px 0 0;
  color: #474741;
  font-size: 18px;
  line-height: 1.5;
}

.project {
  min-width: 0;
}

.project-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 48px;
  padding-bottom: 90px;
  border-bottom: 1px solid var(--line-light);
}

.project-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #d7d6cf;
  border: 1px solid var(--line-light);
  transition:
    box-shadow 420ms ease,
    transform 420ms cubic-bezier(.2, .7, .2, 1);
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 12px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.project-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2, .7, .2, 1);
}

.project-image:hover img {
  transform: scale(1.045);
}

.project-image:hover {
  box-shadow: 0 20px 46px rgba(11, 11, 11, .18);
  transform: translateY(-7px);
}

.project-copy {
  padding-top: 24px;
}

.project-status {
  margin: 0 0 16px;
  color: #65645e;
}

.project h3,
.next-up h3 {
  margin: 0;
  font-size: clamp(35px, 4vw, 58px);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.project-copy > p:not(.project-status) {
  max-width: 500px;
  margin: 20px 0 0;
  color: #474741;
  font-size: 16px;
  line-height: 1.55;
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--orange);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: var(--orange);
}

.project-pair {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 80px;
  padding: 90px 0;
  border-bottom: 1px solid var(--line-light);
}

.project-pair .project:nth-child(2) {
  margin-top: 110px;
}

.next-up {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  padding-top: 90px;
}

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

.pipeline-item {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-light);
}

.pipeline-item strong {
  font-size: 19px;
}

.pipeline-item span {
  color: #5d5c56;
  font-size: 14px;
}

.pipeline-item span:last-child {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ventures-hero {
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 150px 0 74px;
  background:
    linear-gradient(90deg, transparent 0 62%, rgba(255,255,255,.07) 62.1%, transparent 62.2%),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    var(--ink);
  background-size: 100% 100%, 100% 92px, auto;
}

.ventures-hero h1 {
  max-width: 1180px;
  margin: 0;
  font-size: clamp(68px, 10.4vw, 148px);
  font-weight: 850;
  font-stretch: condensed;
  line-height: .84;
  letter-spacing: -.062em;
  text-transform: uppercase;
}

.ventures-hero > .shell > p:not(.kicker) {
  max-width: 690px;
  margin: 38px 0 0;
  color: #c7c6bf;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.35;
  letter-spacing: -.03em;
}

.ventures-intro {
  background: #151515;
}

.ventures-intro-inner {
  max-width: 1040px;
  margin-left: max(32px, calc((100% - var(--shell)) / 2));
  margin-right: auto;
}

.ventures-intro h2,
.venture-lanes h2,
.venture-collaboration h2 {
  margin: 0;
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 820;
  line-height: .92;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.ventures-intro p {
  max-width: 720px;
  margin: 34px 0 0;
  color: #b9b8b1;
  font-size: 20px;
  line-height: 1.6;
}

.venture-lanes {
  background: var(--ink);
}

.venture-lanes-head {
  max-width: 900px;
  margin-bottom: 74px;
}

.venture-lane {
  min-width: 0;
}

.venture-lane-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, .75fr);
  align-items: end;
  gap: 50px;
  padding-bottom: 88px;
  border-bottom: 1px solid var(--line-dark);
}

.venture-lane-image {
  overflow: hidden;
  background: #171717;
}

.venture-lane-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2, .7, .2, 1);
}

.venture-lane:hover .venture-lane-image img {
  transform: scale(1.04);
}

.venture-lane-copy {
  padding-top: 24px;
}

.venture-lane h3 {
  margin: 0;
  font-size: clamp(36px, 4.2vw, 62px);
  font-weight: 780;
  line-height: .96;
  letter-spacing: -.055em;
}

.venture-lane-copy > p {
  max-width: 520px;
  margin: 22px 0 0;
  color: #b9b8b1;
  font-size: 17px;
  line-height: 1.55;
}

.venture-lane-copy > span {
  display: block;
  margin-top: 30px;
  color: var(--orange);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.venture-lane-pair {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 74px;
  padding: 88px 0;
}

.venture-lane-pair .venture-lane:nth-child(2) {
  margin-top: 110px;
}

.venture-lane-media .venture-lane-image img {
  aspect-ratio: 4 / 3;
}

.venture-lane-open {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 80px;
  align-items: end;
  padding: 58px;
  border-left: 8px solid var(--orange);
  background: #181818;
}

.venture-lane-open > div > p,
.venture-lane-open > p {
  margin: 20px 0 0;
  color: #b9b8b1;
  font-size: 18px;
  line-height: 1.55;
}

.venture-lane-open > p {
  margin: 0;
}

.venture-collaboration {
  background: var(--orange);
  color: var(--ink);
}

.venture-collaboration-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 110px;
}

.venture-collaboration h2 {
  max-width: 850px;
}

.venture-collaboration h2 + p {
  max-width: 650px;
  margin: 30px 0 0;
  font-size: 19px;
  line-height: 1.55;
}

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

.button-dark:hover {
  background: #252525;
}

@keyframes load-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  animation: load-in 420ms cubic-bezier(.2, .7, .2, 1) both;
}

.hero .kicker,
.ventures-hero .kicker {
  animation: load-in 520ms cubic-bezier(.16, 1, .3, 1) both;
}

.hero h1,
.ventures-hero h1 {
  animation: load-in 720ms 40ms cubic-bezier(.16, 1, .3, 1) both;
}

.hero-copy,
.ventures-hero > .shell > p:not(.kicker) {
  animation: load-in 620ms 150ms cubic-bezier(.16, 1, .3, 1) both;
}

.hero .button,
.ventures-hero .button {
  animation: load-in 560ms 260ms cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes section-rise {
  from {
    transform: translateY(72px);
  }

  to {
    transform: translateY(0);
  }
}

@supports (animation-timeline: view()) {
  .section > .shell,
  .ventures-intro > .shell {
    animation: section-rise linear both;
    animation-timeline: view();
    animation-range: entry 5% entry 58%;
  }
}

.venture-seeking {
  padding-top: 14px;
}

.venture-seeking > p {
  margin: 0 0 24px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.venture-seeking ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.venture-seeking li {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.production {
  background:
    linear-gradient(120deg, transparent 0 74%, rgba(255,77,0,.14) 74.1% 100%),
    var(--ink);
}

.production-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 100px;
}

.production h2 {
  max-width: 760px;
  font-size: clamp(56px, 7.5vw, 110px);
}

.production-link {
  margin-top: 34px;
}

.bio-hero {
  min-height: 76dvh;
  display: flex;
  align-items: flex-end;
  padding: 150px 0 84px;
  background:
    linear-gradient(90deg, transparent 0 49.9%, rgba(255,255,255,.07) 50%, transparent 50.1%),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    var(--ink);
  background-size: 100% 100%, 100% 92px, auto;
}

.bio-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: end;
  gap: 70px;
}

.bio-hero h1 {
  max-width: 950px;
  margin: 0;
  font-size: clamp(68px, 11vw, 154px);
  font-weight: 850;
  font-stretch: condensed;
  line-height: .84;
  letter-spacing: -.062em;
  text-transform: uppercase;
}

.bio-portrait {
  margin: 0;
  border: 1px solid var(--line-dark);
  background: #171717;
  overflow: hidden;
}

.bio-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.bio-portrait figcaption {
  padding: 10px 11px 12px;
  color: #8f8d85;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bio-content {
  background: var(--paper);
  color: var(--ink);
}

.bio-content .kicker,
.bio-studies .kicker {
  color: var(--orange);
}

.bio-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 100px;
}

.bio-content h2,
.bio-studies h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(48px, 6vw, 88px);
  line-height: .9;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.bio-copy {
  max-width: 540px;
}

.bio-copy p {
  margin: 0 0 24px;
  color: #5f5e58;
  font-size: 19px;
  line-height: 1.6;
}

.bio-copy .text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--ink);
}

.bio-studies {
  background: var(--ink);
}

.bio-studies-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}

.bio-studies-head .kicker {
  margin-bottom: 18px;
}

.bio-studies-head > p {
  max-width: 320px;
  margin: 0 0 4px;
  color: #a7a69f;
  font-size: 15px;
  line-height: 1.5;
}

.production-set-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.production-set-card {
  margin: 0;
  background: #111;
  overflow: hidden;
}

.production-set-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.production-set-card figcaption {
  padding: 12px 14px 14px;
  color: #a7a69f;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.production-copy > p {
  margin: 35px 0 70px;
  color: #c7c6bf;
  font-size: 19px;
  line-height: 1.65;
}

.production-method {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
  counter-reset: method;
}

.production-method li {
  position: relative;
  counter-increment: method;
  padding: 22px 0 22px 56px;
  border-bottom: 1px solid var(--line-dark);
  color: #c7c6bf;
  font-size: 14px;
  line-height: 1.5;
}

.production-method li::before {
  content: "0" counter(method);
  position: absolute;
  left: 0;
  top: 23px;
  color: var(--orange);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.production-method span {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.contact {
  background: var(--orange);
  color: var(--ink);
}

.contact .kicker {
  color: var(--ink);
}

.contact h2 {
  max-width: 1000px;
  font-size: clamp(64px, 10vw, 150px);
  text-transform: uppercase;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 48px;
}

.contact a {
  display: inline-block;
  margin-top: 52px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--ink);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.site-footer {
  padding: 28px 0 36px;
  color: var(--gray);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-inner > div {
  display: flex;
  gap: 22px;
}

.site-footer a {
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

.legal-shell {
  width: min(1040px, calc(100% - 64px));
  margin: 0 auto;
}

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

.legal-header .nav {
  min-height: 76px;
}

.back-link {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal {
  padding: 100px 0 120px;
}

.legal h1 {
  max-width: 900px;
  font-size: clamp(58px, 9vw, 124px);
  text-transform: uppercase;
}

.legal-lede {
  max-width: 680px;
  margin: 34px 0 0;
  color: #c7c6bf;
  font-size: 18px;
  line-height: 1.65;
}

.legal-grid {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 70px;
  margin-top: 90px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}

.legal-nav {
  position: sticky;
  top: 28px;
  align-self: start;
}

.legal-nav a {
  display: block;
  padding: 8px 0;
  color: var(--gray);
  text-decoration: none;
}

.legal-copy {
  max-width: 720px;
}

.legal-copy section {
  margin-bottom: 46px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line-dark);
}

.legal-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(29px, 4vw, 46px);
  letter-spacing: -0.045em;
}

.legal-copy p,
.legal-copy li {
  color: #c7c6bf;
  font-size: 15px;
  line-height: 1.75;
}

.legal-copy p {
  margin: 0 0 16px;
}

.legal-copy ul {
  margin: 0;
  padding-left: 20px;
}

.legal-copy a {
  color: var(--white);
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

.legal-meta {
  color: var(--orange);
}

@media (max-width: 900px) {
  .project-featured,
  .production-grid,
  .bio-content-grid,
  .venture-lane-feature,
  .venture-lane-open,
  .venture-collaboration-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .bio-hero-grid {
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 38px;
  }

  .project-pair {
    gap: 36px;
  }

  .next-up {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .venture-lane-pair {
    gap: 36px;
  }

  .venture-lane-open {
    align-items: start;
  }

  .production-copy > p {
    margin-top: 0;
  }

}

@media (max-width: 720px) {
  .shell,
  .legal-shell {
    width: min(100% - 32px, 620px);
  }

  .nav {
    min-height: 66px;
  }

  .wordmark {
    font-size: 13px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 9px;
  }

  .hero {
    min-height: 760px;
    padding: 122px 0 54px;
    background-size: 100% 100%, 100% 72px, auto;
  }

  .ventures-hero {
    min-height: 760px;
    padding: 122px 0 54px;
    background-size: 100% 100%, 100% 72px, auto;
  }

  .hero h1 {
    font-size: clamp(52px, 14vw, 64px);
    line-height: 0.85;
    letter-spacing: -0.055em;
  }

  .ventures-hero h1 {
    font-size: clamp(48px, 13vw, 66px);
    line-height: .86;
  }

  .ventures-hero > .shell > p:not(.kicker) {
    max-width: 350px;
    margin-top: 30px;
    font-size: 19px;
  }

  .hero-copy {
    max-width: 330px;
    margin-top: 32px;
    font-size: 20px;
  }

  .section {
    padding: 82px 0;
  }

  .section-intro {
    margin-bottom: 52px;
  }

  .section-intro h2 {
    font-size: 48px;
  }

  .project-featured {
    padding-bottom: 62px;
  }

  .project-pair {
    grid-template-columns: 1fr;
    padding: 62px 0;
  }

  .project-pair .project:nth-child(2) {
    margin-top: 28px;
  }

  .ventures-intro-inner {
    width: min(100% - 32px, 620px);
    margin: 0 auto;
  }

  .ventures-intro h2,
  .venture-lanes h2,
  .venture-collaboration h2 {
    font-size: 50px;
  }

  .ventures-intro p {
    font-size: 18px;
  }

  .venture-lanes-head {
    margin-bottom: 52px;
  }

  .venture-lane-feature {
    padding-bottom: 62px;
  }

  .venture-lane-pair {
    grid-template-columns: 1fr;
    padding: 62px 0;
  }

  .venture-lane-pair .venture-lane:nth-child(2) {
    margin-top: 28px;
  }

  .venture-lane h3 {
    font-size: 38px;
  }

  .venture-lane-open {
    padding: 36px 28px;
  }

  .venture-seeking ul {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .project h3,
  .next-up h3 {
    font-size: 36px;
  }

  .pipeline-item {
    grid-template-columns: 1fr auto;
    gap: 8px 18px;
  }

  .pipeline-item span:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .pipeline-item span:last-child {
    grid-column: 2;
    grid-row: 1;
  }

  .production h2 {
    font-size: 54px;
  }

  .bio-hero {
    min-height: auto;
    padding: 126px 0 62px;
  }

  .bio-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .bio-hero h1 {
    font-size: clamp(56px, 14vw, 76px);
  }

  .bio-portrait {
    width: 150px;
  }

  .bio-content h2,
  .bio-studies h2 {
    font-size: 54px;
  }

  .bio-studies-head {
    display: block;
  }

  .bio-studies-head > p {
    margin-top: 24px;
  }

  .production-copy > p {
    font-size: 17px;
  }

  .production-set-grid {
    grid-template-columns: 1fr;
  }

  .contact h2 {
    font-size: clamp(48px, 13.5vw, 62px);
    letter-spacing: -0.055em;
  }

  .contact a {
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .footer-inner,
  .footer-inner > div {
    display: block;
    line-height: 2;
  }

  .footer-inner > div {
    margin-top: 12px;
  }

  .footer-inner a,
  .footer-inner span {
    margin-right: 14px;
  }

  .legal {
    padding: 72px 0 80px;
  }

  .legal h1 {
    font-size: 54px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 60px;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
  }
}

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

  .site-header,
  .hero .kicker,
  .hero h1,
  .hero-copy,
  .hero .button,
  .ventures-hero .kicker,
  .ventures-hero h1,
  .ventures-hero > .shell > p:not(.kicker),
  .ventures-hero .button {
    animation: none;
  }

  .button,
  .project-image,
  .project-image img,
  .venture-lane-image img {
    transition: none;
  }

  .button:hover,
  .project-image:hover,
  .project-image:hover img,
  .venture-lane:hover .venture-lane-image img {
    transform: none;
  }

  .section > .shell,
  .ventures-intro > .shell {
    animation: none;
  }
}
