:root {
  --paper: #f7f7f4;
  --paper-2: #efefea;
  --ink: #121315;
  --muted: #666a6d;
  --line: rgba(18, 19, 21, 0.14);
  --red: #c92832;
  --red-dark: #8c121c;
  --dark: #111214;
  --dark-2: #191a1d;
  --white: #ffffff;
  --shell: min(1180px, calc(100% - 48px));
  --radius: 24px;
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 247, 244, 0.86);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}

.brand-mark__y {
  position: relative;
  z-index: 2;
  font-size: 21px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.brand-mark__orbit {
  position: absolute;
  inset: 2px;
  border: 2px solid var(--ink);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-30deg);
}

.brand-mark__orbit::after {
  content: "";
  position: absolute;
  left: -2px;
  top: 4px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 7px solid var(--ink);
  transform: rotate(30deg);
}

.brand-name {
  font-size: 17px;
  letter-spacing: -0.02em;
}

.brand-name strong {
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
}

.site-nav a {
  transition: color 160ms ease;
}

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

.site-nav .nav-contact {
  padding: 10px 17px;
  border: 1px solid var(--ink);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  padding: 175px 0 100px;
  display: grid;
  align-items: center;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(to right, rgba(18,19,21,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(18,19,21,.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 90%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 1px;
  left: 20%;
  top: 65%;
  background: linear-gradient(90deg, transparent, rgba(201,40,50,.4), transparent);
  transform: rotate(-20deg);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb--one {
  width: 420px;
  height: 420px;
  top: 80px;
  right: -180px;
  background: radial-gradient(circle at 30% 30%, rgba(201,40,50,.16), transparent 70%);
}

.hero-orb--two {
  width: 600px;
  height: 600px;
  bottom: -300px;
  left: -250px;
  background: radial-gradient(circle at 60% 40%, rgba(18,19,21,.08), transparent 68%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: 80px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.055em;
  line-height: .98;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4rem, 7.6vw, 7.6rem);
  font-weight: 650;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero-manifesto {
  margin: 30px 0 30px;
  padding-left: 20px;
  border-left: 2px solid var(--red);
}

.hero-manifesto p {
  margin: 2px 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 600;
}

.hero-intro {
  max-width: 650px;
  margin: 0;
  color: #4e5255;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

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

.button--primary {
  padding: 0 24px;
  color: var(--white);
  background: var(--ink);
}

.button--primary:hover {
  background: var(--red);
}

.button--text {
  min-height: auto;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}

.hero-object {
  position: relative;
}

.signal-card {
  position: relative;
  aspect-ratio: 0.86;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(18,19,21,.12);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.95), rgba(233,233,228,.88));
  box-shadow:
    0 32px 80px rgba(18,19,21,.12),
    inset 0 1px 0 rgba(255,255,255,.9);
  transform: rotate(2.5deg);
}

.signal-card::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.55) 48%, transparent 60%);
  transform: translateX(-60%) rotate(8deg);
  animation: sheen 7s ease-in-out infinite;
}

@keyframes sheen {
  0%, 65% { transform: translateX(-60%) rotate(8deg); }
  100% { transform: translateX(70%) rotate(8deg); }
}

.signal-card__top,
.signal-card__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.signal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(201,40,50,.1);
}

.signal-visual {
  position: absolute;
  inset: 14% 6% 12%;
}

.signal-core {
  position: absolute;
  z-index: 3;
  inset: 50% auto auto 50%;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 50px rgba(18,19,21,.2);
}

.signal-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(18,19,21,.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.signal-ring--one {
  width: 235px;
  height: 235px;
}

.signal-ring--two {
  width: 355px;
  height: 355px;
  border-style: dashed;
  animation: orbit 28s linear infinite;
}

@keyframes orbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.signal-node {
  position: absolute;
  z-index: 4;
  min-width: 78px;
  padding: 9px 13px;
  border: 1px solid rgba(18,19,21,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 9px 24px rgba(18,19,21,.08);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}

.signal-node--apps {
  top: 13%;
  left: 3%;
}

.signal-node--platforms {
  top: 24%;
  right: -1%;
}

.signal-node--ai {
  right: 9%;
  bottom: 12%;
}

.signal-card__bottom {
  position: absolute;
  inset: auto 24px 24px;
  justify-content: space-between;
}

.signal-line {
  flex: 1;
  height: 1px;
  background: rgba(18,19,21,.18);
}

.hero-vision {
  margin: 24px 0 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  letter-spacing: .01em;
}

.section {
  padding: 130px 0;
}

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

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

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 64px;
  color: #55595d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-label::after {
  content: "";
  width: 54px;
  height: 1px;
  margin-left: 6px;
  background: var(--line);
}

.section-label span {
  color: var(--red);
}

.section-label p {
  margin: 0;
}

.section-label--light {
  color: #a9abad;
}

.section-label--light::after {
  background: rgba(255,255,255,.16);
}

.statement-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 100px;
}

.statement h2 {
  max-width: 730px;
  font-size: clamp(3.1rem, 6vw, 6.1rem);
  font-weight: 600;
}

.statement h2 span {
  display: block;
  color: #a8aaab;
}

.statement-copy {
  align-self: end;
  padding-bottom: 8px;
}

.statement-copy p {
  color: var(--muted);
}

.statement-copy .lead {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.45;
}

.heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 70px;
}

.heading-row h2,
.portfolio-intro h2,
.principles-title h2,
.process-heading h2,
.founder h2,
.contact h2 {
  font-size: clamp(3rem, 5.5vw, 5.4rem);
  font-weight: 600;
}

.heading-row > p {
  max-width: 430px;
  margin: 0 0 8px;
  color: #aeb0b2;
  font-size: 17px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 74px;
  border-top: 1px solid rgba(255,255,255,.14);
  border-left: 1px solid rgba(255,255,255,.14);
}

.capability-card {
  position: relative;
  min-height: 430px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  transition: background 220ms ease;
}

.capability-card:hover {
  background: rgba(255,255,255,.045);
}

.card-number {
  color: #85878a;
  font-size: 11px;
  font-weight: 600;
}

.card-icon {
  width: 54px;
  height: 54px;
  margin-top: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.card-icon svg {
  width: 26px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.35;
}

.capability-card h3 {
  margin: 38px 0 15px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
}

.capability-card p {
  margin: 0;
  color: #9fa1a4;
  font-size: 14px;
}

.card-tag {
  margin-top: auto;
  color: #797c80;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.portfolio-intro {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: end;
}

.portfolio-intro p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 17px;
}

.project-list {
  display: grid;
  gap: 22px;
}

.project {
  position: relative;
  min-height: 410px;
  padding: 34px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  isolation: isolate;
}

.project::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
}

.project--red::before {
  background: linear-gradient(125deg, #761019 0%, #be2530 65%, #e34b55 100%);
}

.project--blue::before {
  background: linear-gradient(125deg, #102230 0%, #1f4d62 62%, #2e768a 100%);
}

.project--violet::before {
  background: linear-gradient(125deg, #211838 0%, #4a3471 62%, #7857a3 100%);
}

.project-meta {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-main {
  position: absolute;
  inset: auto 34px 34px;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.project-main > div {
  max-width: 580px;
}

.project-kicker {
  margin: 0 0 8px;
  color: rgba(255,255,255,.66);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.project-main p:last-child {
  max-width: 480px;
  margin: 17px 0 0;
  color: rgba(255,255,255,.8);
}

.project-main > a,
.project-arrow {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  transition: transform 180ms ease, background 180ms ease;
}

.project-main > a:hover {
  transform: translateX(4px);
  background: rgba(255,255,255,.12);
}

.project-arrow--muted {
  opacity: .55;
}

.project-main svg {
  width: 24px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.6;
}

.project-art {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.project-art--link {
  width: 370px;
  height: 220px;
  right: 10%;
  top: 20%;
  transform: rotate(-16deg);
}

.project-art--link span {
  position: absolute;
  width: 220px;
  height: 92px;
  border: 28px solid rgba(255,255,255,.13);
  border-radius: 999px;
}

.project-art--link span:first-child {
  left: 0;
  top: 15px;
}

.project-art--link span:last-child {
  right: 0;
  bottom: 15px;
}

.project-art--compass {
  width: 350px;
  height: 350px;
  top: -30px;
  right: 8%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
}

.project-art--compass::before,
.project-art--compass::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  background: rgba(255,255,255,.12);
  transform: translate(-50%, -50%);
}

.project-art--compass::before {
  width: 1px;
  height: 130%;
}

.project-art--compass::after {
  width: 130%;
  height: 1px;
}

.project-art--compass span {
  position: absolute;
  width: 90px;
  height: 150px;
  left: 50%;
  top: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,.3) 50%, rgba(10,20,28,.3) 50%);
  clip-path: polygon(50% 0, 100% 100%, 50% 76%, 0 100%);
  transform: translate(-50%, -50%) rotate(30deg);
}

.project-art--spark {
  right: 12%;
  top: 10%;
  width: 300px;
  height: 230px;
}

.project-art--spark span {
  position: absolute;
  color: rgba(255,255,255,.17);
  line-height: 1;
}

.project-art--spark span:nth-child(1) {
  right: 10px;
  top: 0;
  font-size: 190px;
}

.project-art--spark span:nth-child(2) {
  left: 0;
  top: 60px;
  font-size: 70px;
}

.project-art--spark span:nth-child(3) {
  left: 95px;
  bottom: 0;
  font-size: 42px;
}


.project--teal::before {
  background: linear-gradient(125deg, #0d302f 0%, #17625d 62%, #35a29a 100%);
}

.project--amber::before {
  background: linear-gradient(125deg, #36240b 0%, #8a5a16 62%, #d7982f 100%);
}

.project-motto {
  margin: 12px 0 0 !important;
  color: rgba(255,255,255,.96) !important;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
}

.project-art--reel {
  width: 360px;
  height: 260px;
  right: 8%;
  top: 10%;
}

.project-art--reel span {
  position: absolute;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.project-art--reel span:nth-child(1) {
  width: 230px;
  height: 230px;
  right: 20px;
  top: 0;
}

.project-art--reel span:nth-child(2),
.project-art--reel span:nth-child(3) {
  width: 68px;
  height: 68px;
  background: rgba(255,255,255,.12);
}

.project-art--reel span:nth-child(2) {
  right: 98px;
  top: 45px;
}

.project-art--reel span:nth-child(3) {
  right: 35px;
  top: 112px;
}

.project-art--trip {
  width: 390px;
  height: 260px;
  right: 5%;
  top: 8%;
}

.project-art--trip::before {
  content: "";
  position: absolute;
  inset: 12px 34px 28px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  transform: rotate(-5deg);
}

.project-art--trip span {
  position: absolute;
  border-radius: 50%;
}

.project-art--trip span:first-child {
  width: 82px;
  height: 82px;
  right: 76px;
  top: 42px;
  border: 18px solid rgba(255,255,255,.16);
}

.project-art--trip span:last-child {
  width: 12px;
  height: 12px;
  right: 110px;
  top: 76px;
  background: rgba(255,255,255,.35);
  box-shadow:
    -150px 92px 0 4px rgba(255,255,255,.11),
    -105px 52px 0 2px rgba(255,255,255,.18);
}

.project-art--road {
  width: 420px;
  height: 280px;
  right: 3%;
  top: 4%;
}

.project-art--road span {
  position: absolute;
  left: 50%;
  bottom: -70px;
  width: 110px;
  height: 390px;
  border-left: 2px solid rgba(255,255,255,.18);
  border-right: 2px solid rgba(255,255,255,.18);
  transform-origin: bottom;
}

.project-art--road span:first-child {
  transform: translateX(-88px) perspective(300px) rotateX(20deg) rotate(13deg);
}

.project-art--road span:last-child {
  transform: translateX(10px) perspective(300px) rotateX(20deg) rotate(-13deg);
}

.future-work {
  margin-top: 84px;
  padding: 46px;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.38);
}

.future-work h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.future-work__items {
  display: grid;
  gap: 0;
}

.future-work__items article {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.future-work__items article:last-child {
  border-bottom: 1px solid var(--line);
}

.future-work__items span {
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
}

.future-work__items h4 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 19px;
}

.future-work__items p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.portfolio-note {
  margin: 28px 0 0;
  color: #777b7e;
  font-size: 13px;
  text-align: center;
}

.principles-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
}

.principles-title {
  position: sticky;
  top: 140px;
  align-self: start;
}

.principles-title h2 {
  max-width: 510px;
}

.principle {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.principle:last-child {
  border-bottom: 1px solid var(--line);
}

.principle > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
}

.principle h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 23px;
}

.principle p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.process-heading {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 80px;
  align-items: end;
}

.process-heading p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
}

.process-track {
  position: relative;
  margin: 85px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.process-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 17px;
  height: 1px;
  background: var(--line);
}

.process-track li {
  position: relative;
  padding: 0 28px 0 0;
}

.process-index {
  position: relative;
  z-index: 2;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
}

.process-track h3 {
  margin: 28px 0 10px;
  font-family: var(--font-display);
  font-size: 20px;
}

.process-track p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.process-quote {
  margin: 100px 0 0;
  padding: 62px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.35);
}

.process-quote p {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.045em;
}

.founder-layout {
  display: grid;
  grid-template-columns: .65fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.founder-mark {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background:
    radial-gradient(circle at 35% 30%, #ea4d57, var(--red-dark) 58%, #270609 100%);
  font-family: var(--font-display);
  font-size: clamp(7rem, 16vw, 13rem);
  font-weight: 700;
  box-shadow: 0 30px 70px rgba(111,12,20,.18);
}

.founder-copy {
  max-width: 680px;
}

.founder-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.contact {
  padding-top: 150px;
  padding-bottom: 150px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr .65fr;
  gap: 100px;
  align-items: end;
}

.eyebrow--light {
  color: #aeb0b2;
}

.contact h2 {
  max-width: 800px;
}

.contact-action {
  padding-bottom: 8px;
}

.contact-action p {
  margin: 0 0 28px;
  color: #aeb0b2;
}

.button--light {
  padding: 0 24px;
  color: var(--ink);
  background: var(--white);
}

.button--light:hover {
  color: var(--white);
  background: var(--red);
}

.site-footer {
  padding: 46px 0 28px;
  background: var(--dark);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.12);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 40px;
  padding-bottom: 36px;
}

.brand--footer .brand-mark__orbit {
  border-color: var(--white);
  border-left-color: transparent;
}

.brand--footer .brand-mark__orbit::after {
  border-right-color: var(--white);
}

.footer-top > p {
  margin: 0;
  color: #9b9da0;
  font-size: 14px;
}

.footer-top nav {
  display: flex;
  gap: 24px;
  color: #c3c5c7;
  font-size: 13px;
}

.footer-top nav a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #777a7d;
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(.2,.7,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--delay,
.reveal--delay-1 {
  transition-delay: 100ms;
}

.reveal--delay-2 {
  transition-delay: 180ms;
}

.reveal--delay-3 {
  transition-delay: 260ms;
}

.reveal--delay-4 {
  transition-delay: 340ms;
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .hero {
    min-height: auto;
    padding-top: 150px;
  }

  .hero-layout,
  .statement-grid,
  .portfolio-intro,
  .principles-layout,
  .process-heading,
  .founder-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-object {
    max-width: 520px;
    margin: 40px auto 0;
  }

  .statement-grid,
  .principles-layout,
  .founder-layout,
  .contact-layout {
    gap: 56px;
  }

  .heading-row {
    display: block;
  }

  .heading-row > p {
    margin-top: 28px;
  }

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

  .portfolio-intro {
    gap: 28px;
  }

  .principles-title {
    position: static;
  }

  .future-work {
    grid-template-columns: 1fr;
    gap: 30px;
  }


  .process-heading {
    gap: 28px;
  }

  .process-track {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-track::before {
    left: 17px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }

  .process-track li {
    min-height: 145px;
    padding: 0 0 35px 76px;
  }

  .process-index {
    position: absolute;
    left: 0;
    top: 0;
  }

  .process-track h3 {
    margin-top: 0;
  }

  .founder-mark {
    width: min(440px, 80vw);
    margin-inline: auto;
  }

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

  .footer-top > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 30px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .nav-toggle {
    position: relative;
    z-index: 102;
    width: 42px;
    height: 42px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
  }

  .nav-toggle span:not(.sr-only) {
    width: 23px;
    height: 1px;
    display: block;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    padding: 120px 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    color: var(--white);
    background: var(--dark);
    font-family: var(--font-display);
    font-size: 28px;
    transform: translateX(100%);
    transition: transform 260ms cubic-bezier(.2,.7,.2,1);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav .nav-contact {
    padding: 0;
    border: 0;
  }

  .site-header:has(.site-nav.is-open) .brand {
    position: relative;
    z-index: 102;
    color: var(--white);
  }

  .site-header:has(.site-nav.is-open) .brand-mark__orbit {
    border-color: var(--white);
    border-left-color: transparent;
  }

  .site-header:has(.site-nav.is-open) .brand-mark__orbit::after {
    border-right-color: var(--white);
  }

  .site-header:has(.site-nav.is-open) .nav-toggle span:not(.sr-only) {
    background: var(--white);
  }

  .hero {
    padding: 130px 0 80px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 18vw, 5.2rem);
  }

  .hero-layout {
    gap: 42px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .signal-card {
    border-radius: 22px;
  }

  .section {
    padding: 88px 0;
  }

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

  .statement h2,
  .heading-row h2,
  .portfolio-intro h2,
  .principles-title h2,
  .process-heading h2,
  .founder h2,
  .contact h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

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

  .capability-card {
    min-height: 340px;
  }

  .card-icon {
    margin-top: 36px;
  }

  .portfolio-intro {
    margin-bottom: 48px;
  }

  .project {
    min-height: 510px;
    padding: 24px;
  }

  .project-meta {
    gap: 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .project-main {
    inset: auto 24px 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .project-main > a,
  .project-arrow {
    width: 54px;
    height: 54px;
  }

  .project-art--link,
  .project-art--compass,
  .project-art--spark {
    right: -70px;
    opacity: .8;
  }

  .process-quote {
    padding: 34px 26px;
  }

  .future-work {
    margin-top: 56px;
    padding: 28px 22px;
  }

  .future-work__items article {
    grid-template-columns: 32px 1fr;
  }


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

  .footer-top nav {
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}
