:root {
  color-scheme: dark;
  --ink: #0b0c0b;
  --ink-soft: #131613;
  --paper: #f2ead8;
  --paper-soft: #d5cbb7;
  --ember: #f05a24;
  --ember-dark: #bf3515;
  --signal: #60e6da;
  --line-dark: rgba(242, 234, 216, 0.18);
  --line-light: rgba(11, 12, 11, 0.18);
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

::selection {
  background: var(--ember);
  color: var(--paper);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
}

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

.wrap {
  width: min(100% - 80px, 1280px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 max(40px, calc((100vw - 1280px) / 2));
  border-bottom: 1px solid transparent;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    height 180ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-color: var(--line-dark);
  background: rgba(11, 12, 11, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  color: var(--ember);
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 10px;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--paper);
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.nav-cta:hover {
  background: var(--paper);
  color: var(--ink);
}

.menu-button {
  position: relative;
  z-index: 102;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition:
    transform 180ms ease,
    top 180ms ease;
}

.menu-button span:first-child {
  top: 17px;
}

.menu-button span:last-child {
  top: 26px;
}

.menu-button[aria-expanded="true"] span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 740px;
  height: 92svh;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-enter 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.96) 0%, rgba(5, 7, 6, 0.76) 33%, rgba(5, 7, 6, 0.08) 69%),
    linear-gradient(0deg, rgba(5, 7, 6, 0.7) 0%, rgba(5, 7, 6, 0) 35%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: var(--header-height);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--paper-soft);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 2px;
  background: var(--ember);
  content: "";
}

.eyebrow.dark {
  color: #555b55;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--paper);
  font-size: 84px;
  font-weight: 800;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 590px;
  margin: 28px 0 0;
  color: #e0d8c8;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  background: var(--ember);
  color: #fff8eb;
}

.button-primary:hover {
  background: #ff6c34;
}

.button-ghost {
  border-color: rgba(242, 234, 216, 0.55);
  background: rgba(11, 12, 11, 0.32);
  color: var(--paper);
}

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

.hero-scroll {
  position: absolute;
  z-index: 3;
  right: max(40px, calc((100vw - 1280px) / 2));
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: rgba(242, 234, 216, 0.7);
  font-family: var(--mono);
  font-size: 10px;
}

.hero-scroll i {
  display: block;
  width: 72px;
  height: 1px;
  overflow: hidden;
  background: rgba(242, 234, 216, 0.28);
}

.hero-scroll i::after {
  display: block;
  width: 35%;
  height: 100%;
  background: var(--ember);
  content: "";
}

.section {
  padding: 136px 0;
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  column-gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.about h2,
.project h2,
.signal h2,
.closing h2 {
  margin: 0;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
}

.section-heading > p:last-child {
  max-width: 500px;
  margin: 0 0 5px;
  color: #4e534e;
  font-size: 17px;
}

.venture-list {
  border-top: 1px solid var(--line-light);
}

.venture {
  position: relative;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 210px;
  gap: 30px;
  align-items: center;
  min-height: 260px;
  padding: 48px 32px 48px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
  transition:
    color 220ms ease,
    padding 220ms ease;
}

.venture::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  background: var(--ink);
  content: "";
  transition: transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.venture-studios::before {
  background: #123c38;
}

.venture:hover {
  padding-left: 28px;
  color: var(--paper);
}

.venture:hover::before {
  transform: scaleY(1);
}

.venture > * {
  position: relative;
  z-index: 1;
}

.venture-index {
  align-self: start;
  padding-top: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
}

.venture-copy h3 {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1;
}

.venture-copy p {
  max-width: 660px;
  margin: 0;
  color: #4e534e;
  font-size: 16px;
  transition: color 220ms ease;
}

.venture:hover .venture-copy p {
  color: var(--paper-soft);
}

.venture-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.venture-link b {
  font-size: 24px;
  font-weight: 400;
}

.about {
  position: relative;
  overflow: hidden;
  background: var(--ember);
  color: #fff8eb;
}

.about::after {
  position: absolute;
  right: -70px;
  bottom: -210px;
  color: rgba(91, 20, 5, 0.16);
  font-family: var(--mono);
  font-size: 360px;
  font-weight: 600;
  line-height: 1;
  content: "M";
  pointer-events: none;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
}

.about .eyebrow {
  color: #fff0df;
}

.about .eyebrow::before {
  background: var(--ink);
}

.about-body {
  max-width: 680px;
  padding-top: 44px;
}

.about-body > p {
  max-width: 600px;
  margin: 0 0 24px;
  color: #ffe5cf;
}

.about-body .about-lead {
  margin-bottom: 32px;
  color: #fff8eb;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.45;
}

.team {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 88px;
}

.team-member {
  min-width: 0;
}

.team-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #8d260f;
}

.team-portrait::after {
  position: absolute;
  inset: 0;
  background: rgba(240, 90, 36, 0.08);
  content: "";
  pointer-events: none;
  transition: opacity 220ms ease;
}

.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
  transition:
    filter 280ms ease,
    transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.team-member:nth-child(1) .team-portrait img {
  object-position: center 42%;
}

.team-member:nth-child(2) .team-portrait img {
  object-position: 52% 42%;
}

.team-member:nth-child(3) .team-portrait img {
  object-position: 72% center;
}

.team-member:hover .team-portrait img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.03);
}

.team-member:hover .team-portrait::after {
  opacity: 0;
}

.team-caption {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 104px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 248, 235, 0.35);
}

.team-caption > span {
  padding-top: 4px;
  color: #ffd9ba;
  font-family: var(--mono);
  font-size: 10px;
}

.team-member h3 {
  margin: 0;
  font-size: 18px;
}

.team-member p {
  margin: 2px 0 0;
  color: #ffd9ba;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.team-social {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 7px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 248, 235, 0.6);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  transition: border-color 180ms ease;
}

.team-social:hover {
  border-color: #fff8eb;
}

.closing {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #121512;
}

.closing-track {
  position: absolute;
  top: 46px;
  left: 0;
  display: flex;
  width: max-content;
  color: rgba(242, 234, 216, 0.055);
  font-size: 160px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}

.closing-track span {
  padding-right: 50px;
}

.closing-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 620px;
}

.closing .button {
  margin-top: 42px;
}

.site-footer {
  padding: 64px 0 36px;
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-grid > p {
  margin: 2px 0 0;
  color: #969b91;
  font-size: 13px;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.footer-grid nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.footer-grid nav a:hover {
  border-color: currentColor;
}

.footer-grid .copyright {
  grid-column: 1 / -1;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

/* Studios */
.studios-page {
  --ember: #e7602b;
  --signal: #62e6d8;
  background: #07110f;
}

.studio-hero .hero-media {
  object-position: center center;
}

.studio-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 10, 9, 0.95) 0%, rgba(4, 10, 9, 0.68) 36%, rgba(4, 10, 9, 0.05) 67%),
    linear-gradient(0deg, rgba(4, 10, 9, 0.66) 0%, rgba(4, 10, 9, 0) 30%);
}

.studio-hero h1 {
  font-size: 76px;
}

.button-signal {
  align-self: flex-start;
  margin-top: 38px;
  border-color: var(--signal);
  background: rgba(7, 17, 15, 0.55);
  color: var(--signal);
}

.button-signal:hover {
  background: var(--signal);
  color: #07110f;
}

.transmission {
  position: absolute;
  z-index: 3;
  right: max(40px, calc((100vw - 1280px) / 2));
  bottom: 34px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 34px;
  color: var(--signal);
}

.transmission span {
  width: 3px;
  height: 30%;
  background: currentColor;
  animation: signal 900ms ease-in-out infinite alternate;
}

.transmission span:nth-child(2) {
  height: 60%;
  animation-delay: 160ms;
}

.transmission span:nth-child(3) {
  height: 100%;
  animation-delay: 80ms;
}

.transmission span:nth-child(4) {
  height: 50%;
  animation-delay: 260ms;
}

.transmission span:nth-child(5) {
  height: 75%;
  animation-delay: 360ms;
}

.transmission small {
  margin: 0 0 1px 9px;
  font-family: var(--mono);
  font-size: 9px;
}

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

.project-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 120px;
  align-items: start;
}

.project-code {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(100%, 440px);
  padding: 34px;
  border: 1px solid var(--line-light);
  border-top: 4px solid var(--ember);
  font-family: var(--mono);
}

.project-code span {
  align-self: end;
  color: #73786e;
  font-size: 10px;
}

.project-code strong {
  grid-row: 1 / 3;
  grid-column: 2;
  color: #c9c0ae;
  font-size: 90px;
  font-weight: 400;
  line-height: 1;
  text-align: right;
}

.project-code i {
  grid-column: 1 / -1;
  height: 1px;
  margin: 30px 0;
  background: var(--line-light);
}

.project-code b {
  color: #32736d;
  font-size: 11px;
  text-align: right;
}

.project-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 28px 0 0;
  color: #4e534e;
  font-size: 18px;
}

.milestones {
  border-top: 1px solid rgba(242, 234, 216, 0.16);
  background: #07110f;
}

.milestone-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: end;
}

.milestone-heading h2 {
  margin: 0;
  color: var(--paper);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
}

.milestone-heading > p {
  max-width: 480px;
  margin: 0 0 6px;
  color: #9ea99f;
  font-size: 17px;
}

.milestone-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 80px 0 0;
  padding: 0;
  border-top: 1px solid rgba(98, 230, 216, 0.34);
  list-style: none;
}

.milestone-list li {
  position: relative;
  min-width: 0;
  padding: 48px 56px 0 0;
}

.milestone-list li + li {
  padding-right: 0;
  padding-left: 56px;
  border-left: 1px solid rgba(242, 234, 216, 0.16);
}

.milestone-list li::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid #07110f;
  background: var(--signal);
  box-shadow: 0 0 0 1px var(--signal);
  content: "";
}

.milestone-list li + li::before {
  left: 56px;
}

.milestone-year {
  display: block;
  color: rgba(242, 234, 216, 0.22);
  font-family: var(--mono);
  font-size: 72px;
  line-height: 1;
}

.milestone-status {
  margin: 24px 0 12px;
  color: var(--signal);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.milestone-list h3 {
  margin: 0;
  color: var(--paper);
  font-size: 27px;
}

.milestone-list article > p:last-child {
  margin: 8px 0 0;
  color: #9ea99f;
}

.coordinates {
  padding: 0;
  border-top: 1px solid rgba(242, 234, 216, 0.16);
  border-bottom: 1px solid rgba(242, 234, 216, 0.16);
  background: #0c1916;
}

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

.coordinate-grid article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
  padding: 30px;
  border-right: 1px solid rgba(242, 234, 216, 0.16);
}

.coordinate-grid article:first-child {
  border-left: 1px solid rgba(242, 234, 216, 0.16);
}

.coordinate-grid span {
  margin-bottom: 18px;
  color: var(--signal);
  font-family: var(--mono);
  font-size: 10px;
}

.coordinate-grid strong {
  color: var(--paper);
  font-size: 17px;
}

.signal {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #07110f;
}

.signal-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(98, 230, 216, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 230, 216, 0.22) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, black 35%, black 65%, transparent);
}

.signal-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  text-align: center;
}

.signal .eyebrow {
  flex-direction: column;
}

.signal .eyebrow::before {
  width: 2px;
  height: 36px;
  margin-bottom: 10px;
  background: var(--signal);
}

.signal h2 {
  font-size: 68px;
}

.signal-content > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: #9ea99f;
}

.text-link {
  display: inline-flex;
  gap: 18px;
  margin-top: 42px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--signal);
  color: var(--signal);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.studio-footer {
  background: #050c0b;
}

.studios-page .brand strong {
  color: var(--signal);
}

.reveal {
  transform: translateY(24px);
  opacity: 0;
  transition:
    transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 650ms ease;
}

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

@keyframes hero-enter {
  from {
    transform: scale(1.035);
    opacity: 0.65;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

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

@keyframes signal {
  to {
    transform: scaleY(0.35);
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
  }

  .wrap {
    width: min(100% - 48px, 900px);
  }

  .site-header {
    padding-inline: 24px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 90px 32px 40px;
    transform: translateY(-100%);
    visibility: hidden;
    background: var(--ink);
    font-size: 18px;
    opacity: 0;
    transition:
      transform 240ms ease,
      opacity 240ms ease,
      visibility 240ms;
  }

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

  .site-nav .nav-cta {
    margin-top: 12px;
    font-size: 12px;
  }

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

  .studio-hero h1 {
    font-size: 58px;
  }

  .section {
    padding: 100px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-heading .eyebrow {
    grid-column: auto;
  }

  .section-heading h2,
  .about h2,
  .project h2,
  .milestone-heading h2,
  .closing h2 {
    font-size: 48px;
  }

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

  .venture-link {
    grid-column: 2;
  }

  .about-grid,
  .project-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .milestone-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-body {
    padding-top: 0;
  }

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

  .coordinate-grid article:nth-child(2) {
    border-right: 0;
  }

  .coordinate-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(242, 234, 216, 0.16);
  }

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

  .footer-grid .copyright {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: calc(100% - 40px);
  }

  .site-header {
    padding-inline: 20px;
  }

  .brand {
    font-size: 12px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: 690px;
    height: 92svh;
  }

  .hero-media {
    object-position: 63% center;
  }

  .studio-hero .hero-media {
    object-position: 66% center;
  }

  .hero-shade,
  .studio-hero .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 8, 7, 0.9) 0%, rgba(4, 8, 7, 0.56) 65%, rgba(4, 8, 7, 0.12) 100%),
      linear-gradient(0deg, rgba(4, 8, 7, 0.88) 0%, rgba(4, 8, 7, 0.14) 58%);
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 72px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .hero h1,
  .studio-hero h1 {
    font-size: 42px;
    line-height: 0.98;
  }

  .hero-copy {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 28px;
  }

  .button {
    min-height: 50px;
    padding-inline: 18px;
    gap: 14px;
    font-size: 10px;
  }

  .hero-scroll,
  .transmission {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading {
    gap: 24px;
    margin-bottom: 54px;
  }

  .section-heading h2,
  .about h2,
  .project h2,
  .milestone-heading h2,
  .closing h2,
  .signal h2 {
    font-size: 38px;
    line-height: 1.04;
  }

  .section-heading > p:last-child {
    font-size: 15px;
  }

  .venture {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    padding: 34px 0;
  }

  .venture:hover {
    padding-left: 16px;
  }

  .venture-index {
    padding-top: 0;
  }

  .venture-copy h3 {
    font-size: 30px;
  }

  .venture-copy p {
    font-size: 14px;
  }

  .venture-link {
    width: 100%;
  }

  .about::after {
    right: -50px;
    bottom: -80px;
    font-size: 190px;
  }

  .about-grid,
  .project-grid {
    gap: 46px;
  }

  .about-body .about-lead {
    font-size: 20px;
  }

  .team {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 54px;
  }

  .team-portrait {
    aspect-ratio: 4 / 4.6;
  }

  .team-caption {
    min-height: 88px;
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .closing,
  .closing-content {
    min-height: 540px;
  }

  .closing-track {
    top: 70px;
    font-size: 82px;
  }

  .project-code {
    padding: 24px;
  }

  .project-code strong {
    font-size: 68px;
  }

  .project-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .milestone-list {
    grid-template-columns: 1fr;
    margin-top: 56px;
    border-top: 0;
    border-left: 1px solid rgba(98, 230, 216, 0.34);
  }

  .milestone-list li,
  .milestone-list li + li {
    padding: 0 0 54px 34px;
    border-left: 0;
  }

  .milestone-list li:last-child {
    padding-bottom: 0;
  }

  .milestone-list li::before,
  .milestone-list li + li::before {
    top: 4px;
    left: -6px;
  }

  .milestone-year {
    font-size: 58px;
  }

  .coordinate-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .coordinate-grid article {
    min-height: 124px;
    padding: 24px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(242, 234, 216, 0.16);
  }

  .coordinate-grid article:first-child {
    border-left: 0;
  }

  .coordinate-grid article:last-child {
    border-bottom: 0;
  }

  .signal {
    min-height: 560px;
  }

  .signal-content {
    min-height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid .copyright {
    grid-column: auto;
    margin-top: 10px;
  }
}

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

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