@font-face {
  font-family: "Oswald";
  src: url("./assets/oswald-official-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("./assets/oswald-official-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("./assets/montserrat-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("./assets/montserrat-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("./assets/montserrat-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --ink: #080909;
  --paper: #f1f0ec;
  --paper-bright: #f7f7f4;
  --paper-gray: #dfe1e2;
  --paper-soft-magenta: #eee3e9;
  --wine: #bc387c;
  --light-surface:
    linear-gradient(
      to bottom,
      var(--paper) 0%,
      rgba(241, 240, 236, 0) 13%,
      rgba(241, 240, 236, 0) 87%,
      var(--paper) 100%
    ),
    radial-gradient(
      ellipse at 86% 14%,
      rgba(188, 56, 124, 0.11) 0%,
      rgba(188, 56, 124, 0.045) 19%,
      transparent 43%
    ),
    radial-gradient(
      ellipse at 12% 78%,
      rgba(92, 98, 106, 0.2) 0%,
      rgba(92, 98, 106, 0.07) 25%,
      transparent 51%
    ),
    linear-gradient(
      132deg,
      var(--paper-bright) 0%,
      #ececea 24%,
      var(--paper-gray) 51%,
      var(--paper-soft-magenta) 76%,
      var(--paper) 100%
    );
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--ink);
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  overflow-x: hidden;
  cursor: none;
}
h1,
h2,
h3 {
  font-family: "Montserrat", Arial, sans-serif;
}
strong,
.monolith {
  font-family: "Oswald", "Arial Narrow", sans-serif;
}
p,
small,
a,
button,
.eyebrow,
.nav-label,
.nav-index {
  font-family: "Oswald", "Arial Narrow", sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.boot {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-content: center;
  gap: 16px;
  background: #090909;
  text-align: center;
  opacity: 1;
  clip-path: inset(0);
  pointer-events: auto;
  will-change: clip-path, opacity;
  animation: boot-autodismiss 0.85s var(--ease) 1.45s forwards;
}
.boot.is-done {
  animation-delay: 0s;
}
.boot img {
  width: min(390px, 76vw);
}
.boot > div {
  height: 1px;
  background: #292929;
}
.boot i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--wine);
  animation: load 1.2s var(--ease) forwards;
}
.boot small,
.eyebrow {
  font-size: 15px;
  letter-spacing: 0.12em;
}
@keyframes load {
  to {
    width: 100%;
  }
}
@keyframes boot-autodismiss {
  0% {
    opacity: 1;
    clip-path: inset(0);
    visibility: visible;
    pointer-events: auto;
  }
  99% {
    opacity: 0;
    clip-path: inset(0 0 100%);
    visibility: visible;
    pointer-events: none;
  }
  100% {
    opacity: 0;
    clip-path: inset(0 0 100%);
    visibility: hidden;
    pointer-events: none;
  }
}
.nav {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 22px;
  pointer-events: none;
}
.nav > * {
  pointer-events: auto;
}
.brand {
  position: relative;
  width: clamp(175px, 14vw, 245px);
  height: 64px;
}
.brand img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  transition: opacity 0.3s;
}
.logo-dark {
  opacity: 0;
}
.theme-light .logo-white {
  opacity: 0;
}
.theme-light .logo-dark {
  opacity: 1;
}
.talk {
  justify-self: end;
  display: grid;
  place-items: center;
  height: 46px;
  padding: 0 24px;
  border-radius: 99px;
  background: var(--wine);
  font-weight: 700;
  letter-spacing: 0.07em;
}
.nav-center {
  grid-column: 2;
  grid-row: 1;
  width: clamp(390px, 38vw, 590px);
  height: 54px;
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  align-items: center;
  padding: 0 18px;
  color: #fff;
  border: 1px solid #ffffff2b;
  border-radius: 7px;
  background: #181819b8;
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 45px #0004;
  cursor: none;
}
.nav-index,
.drawer span {
  color: var(--wine);
}
.nav-label {
  letter-spacing: 0.1em;
}
.bars {
  justify-self: end;
  width: 24px;
  display: grid;
  gap: 4px;
}
.bars i {
  height: 1px;
  background: #fff;
}
.bars i:nth-child(2) {
  width: 17px;
  justify-self: end;
}
.bars i:nth-child(3) {
  width: 21px;
  justify-self: end;
}
.drawer {
  position: fixed;
  top: 78px;
  left: 50%;
  width: clamp(390px, 38vw, 590px);
  padding: 10px;
  background: #0f0f10ee;
  border: 1px solid #ffffff24;
  border-radius: 8px;
  backdrop-filter: blur(22px);
  transform: translate(-50%, -12px);
  opacity: 0;
  visibility: hidden;
  transition: 0.35s var(--ease);
}
.menu-open .drawer {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%);
}
.drawer a {
  display: flex;
  gap: 24px;
  padding: 13px;
  border-bottom: 1px solid #ffffff18;
  letter-spacing: 0.06em;
}
.drawer a:last-child {
  border: 0;
}
section {
  position: relative;
  z-index: 2;
}
.dark-section {
  background: #080909;
  isolation: isolate;
  overflow: hidden;
}
.dark-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -18%;
  pointer-events: none;
  opacity: 0.72;
  background:
    radial-gradient(ellipse at 12% 18%, #bc387ccc 0 10%, transparent 34%),
    radial-gradient(ellipse at 82% 16%, #3f1837cc 0 13%, transparent 38%),
    radial-gradient(ellipse at 72% 78%, #45216f99 0 12%, transparent 36%),
    radial-gradient(ellipse at 20% 82%, #18243d99 0 11%, transparent 34%),
    radial-gradient(ellipse at 48% 48%, #6c244b88 0 8%, transparent 32%),
    #080909;
  background-size: 145% 145%, 155% 155%, 160% 160%, 150% 150%, 170% 170%,
    100% 100%;
  filter: blur(46px) saturate(118%);
  transform: translate3d(-2%, -1%, 0) scale(1.04);
  animation: inkspira-mesh 18s cubic-bezier(0.45, 0, 0.55, 1) infinite
    alternate;
}
.dark-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      #080909 0%,
      transparent 12%,
      transparent 88%,
      #080909 100%
    ),
    linear-gradient(105deg, #080909d9 0 22%, #08090966 52%, #080909bf 100%);
}
@keyframes inkspira-mesh {
  0% {
    background-position: 0% 4%, 100% 0%, 92% 100%, 0% 94%, 45% 45%, 0 0;
    transform: translate3d(-3%, -2%, 0) scale(1.03);
  }
  35% {
    background-position: 18% 16%, 82% 24%, 70% 82%, 14% 76%, 58% 34%, 0 0;
    transform: translate3d(2%, 1%, 0) scale(1.08);
  }
  68% {
    background-position: 30% 8%, 70% 36%, 84% 66%, 8% 64%, 42% 62%, 0 0;
    transform: translate3d(-1%, 3%, 0) scale(1.05);
  }
  100% {
    background-position: 10% 28%, 94% 12%, 62% 92%, 24% 86%, 64% 54%, 0 0;
    transform: translate3d(3%, -1%, 0) scale(1.1);
  }
}
.light-section {
  background-color: var(--paper);
  background-image: var(--light-surface);
  background-size: 100% 100%, 138% 132%, 146% 142%, 100% 100%;
  background-position: 0 0, 100% 0%, 0% 100%, 0 0;
  color: #111;
}
.light-section .eyebrow,
.light-section .section-copy,
.light-section .project small,
.light-section .project footer > p,
.light-section .studio-copy > p:not(.eyebrow) {
  color: #5f5f5f;
}
.color-fade {
  position: relative;
  z-index: 2;
  height: clamp(120px, 11vw, 180px);
  margin-top: -1px;
  margin-bottom: -1px;
  pointer-events: none;
}
.color-fade--dark-light {
  background: linear-gradient(
    to bottom,
    #080909 0%,
    #151014 16%,
    #33212a 34%,
    #6f5a65 56%,
    #b8b0b4 78%,
    #f1f0ec 100%
  );
}
.color-fade--light-dark {
  background: linear-gradient(
    to bottom,
    #f1f0ec 0%,
    #b8b0b4 22%,
    #6f5a65 44%,
    #33212a 66%,
    #151014 84%,
    #080909 100%
  );
}
.hero {
  min-height: 100svh;
  padding: clamp(140px, 16vh, 180px) 4vw 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero h1,
.section-head h2,
.manifesto h2,
.studio h2,
.contact h2 {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 400;
  letter-spacing: -0.075em;
  margin: 0;
}
.hero h1 {
  font-size: clamp(100px, 14vw, 250px);
  line-height: 0.72;
  font-weight: 700;
}
.hero h1 span {
  display: block;
  transform: translateY(110%);
  transition: transform 1.15s var(--ease);
}
.ready .hero h1 span {
  transform: none;
}
.no-js .hero h1 span {
  transform: none;
  transition: none;
}
.hero h1 span + span {
  color: var(--wine);
  margin-left: 9vw;
  transition-delay: 0.1s;
}
.hero-copy {
  z-index: 3;
}
.hero-copy > p {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 400;
  font-size: clamp(19px, 1.45vw, 25px);
  max-width: 540px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: #d2d1cd;
}
.hero-object {
  position: absolute;
  width: 50vw;
  height: 70vh;
  right: 6vw;
  top: 16vh;
  display: grid;
  place-items: center;
  perspective: 900px;
}
.orb {
  position: absolute;
  width: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--wine);
  filter: blur(110px);
  opacity: 0.2;
}
.monolith {
  position: relative;
  font: 700 min(46vw, 680px)/0.7 "Oswald", "Arial Narrow", sans-serif;
  color: #0c0d0e;
  text-shadow:
    -1px -1px #282a2d,
    1px 1px #020202;
  filter: drop-shadow(0 40px 30px #000b);
  transition: transform 0.15s;
}
.monolith i {
  position: absolute;
  right: 41%;
  bottom: 13%;
  width: 2px;
  height: 38%;
  background: var(--wine);
  box-shadow: 0 0 15px var(--wine);
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  align-items: center;
  color: #999;
  letter-spacing: 0.08em;
  font-family: "Oswald", "Arial Narrow", sans-serif;
}
.scroll-cue > i {
  width: 45px;
  height: 1px;
  background: #555;
  overflow: hidden;
}
.scroll-cue > i:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: scroll 2.4s infinite;
}
@keyframes scroll {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(110%);
  }
}
.manifesto,
.capabilities,
.projects,
.process,
.studio,
.contact {
  padding: clamp(110px, 14vh, 190px) 7vw;
}
.manifesto {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  margin: 0 0 30px;
  color: #777;
}
.manifesto h2 {
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.94;
  max-width: 1450px;
}
.manifesto em,
.section-head em,
.studio em,
.contact em {
  font-style: normal;
  color: var(--wine);
}
.section-head {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5vw;
  align-items: end;
  margin-bottom: 10vh;
}
.section-head .eyebrow {
  grid-column: 1/-1;
}
.section-head h2 {
  font-size: clamp(48px, 6.2vw, 104px);
  line-height: 0.93;
}
.section-copy {
  font-size: 20px;
  line-height: 1.5;
  max-width: 460px;
  color: #747474;
}
.dark-section .section-copy {
  color: #aaa;
}
.cap-list {
  border-top: 1px solid #ffffff35;
}
.cap-list article {
  position: relative;
  min-height: 170px;
  display: grid;
  grid-template-columns: 80px 1fr 1fr 220px;
  align-items: center;
  border-bottom: 1px solid #ffffff35;
  overflow: hidden;
}
.cap-list article > span {
  color: var(--wine);
}
.cap-list h3 {
  font: 400 clamp(28px, 3vw, 48px)/1 "Oswald", "Arial Narrow", sans-serif;
  margin: 0;
  letter-spacing: -0.04em;
}
.cap-list p {
  font-size: 17px;
  color: #aaa;
}
.material {
  height: 120px;
  width: 180px;
  justify-self: end;
  transition: transform 0.6s var(--ease);
}
.cap-list article:hover .material {
  transform: rotate(8deg) scale(1.08);
}
.material-a {
  background: linear-gradient(135deg, #222, #050505 60%, var(--wine));
  clip-path: polygon(12% 0, 100% 8%, 88% 100%, 0 85%);
}
.material-b {
  background: repeating-linear-gradient(90deg, #222 0 2px, #0a0a0a 2px 6px);
  border-radius: 50% 12% 50% 20%;
}
.material-c {
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 25%,
    #fff,
    #888 8%,
    #171717 40%,
    #030303 70%
  );
  box-shadow: inset -8px -9px 20px #bc387c55;
}
.material-d {
  border: 1px solid var(--wine);
  background:
    linear-gradient(
      115deg,
      transparent 40%,
      #bc387c55 41% 44%,
      transparent 45%
    ),
    #111;
  transform: perspective(300px) rotateY(-25deg);
}
.projects {
  min-height: 100svh;
  padding: clamp(72px, 8vh, 100px) 3vw clamp(38px, 5vh, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.projects-stage {
  position: static;
  height: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
}
.projects .section-head {
  flex: 0 0 auto;
  margin-bottom: clamp(18px, 2vh, 28px);
}
.projects .section-head .eyebrow {
  margin-bottom: 8px;
}
.projects .section-head h2 {
  font-size: clamp(38px, 4vw, 66px);
}
.projects .section-copy {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.35;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 24px);
  align-items: end;
  flex: 1 1 auto;
  min-height: 0;
}
.project {
  width: 100%;
  max-width: none;
  justify-self: stretch;
  position: relative;
  z-index: 1;
}
.project-visual {
  position: relative;
  height: clamp(360px, 58vh, 650px);
  min-height: 0;
  overflow: hidden;
  background: #d9d7d0;
}
.project .project-visual {
  height: clamp(360px, 58vh, 650px);
}
.project-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 0.8s var(--ease),
    filter 0.8s var(--ease);
}
.project:hover .project-visual img {
  transform: scale(1.025);
}
.visual-01 img {
  object-position: center 48%;
}
.visual-senses img {
  object-position: center 48%;
}
.visual-02 img {
  object-position: center 56%;
}
.visual-03 img {
  object-position: center 46%;
}
.project footer {
  display: grid;
  grid-template-rows: 62px auto;
  min-height: 96px;
  padding-top: 10px;
  border-top: 1px solid #aaa;
}
.project footer > div {
  align-self: start;
}
.project small,
.project footer > p {
  letter-spacing: 0.09em;
  color: #777;
}
.project h3 {
  font: 400 clamp(21px, 2vw, 34px)/1 "Oswald", "Arial Narrow", sans-serif;
  margin: 4px 0;
}
.project footer > p {
  margin: 8px 0 0;
  text-align: left;
}
.process {
  padding-bottom: 18vh;
}
.process-sequence {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  isolation: isolate;
}
.process-sequence:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 2.5%;
  right: 2.5%;
  top: 208px;
  height: 1px;
  background: linear-gradient(90deg, #85304f33, #d3358666 50%, #85304f33);
}
.process-step {
  position: relative;
  min-width: 0;
  padding: 0 clamp(10px, 1.25vw, 22px);
}
.process-step:not(:last-child):after {
  content: "→";
  position: absolute;
  z-index: 3;
  top: 89px;
  right: -9px;
  color: #d33586;
  font-size: 23px;
  font-weight: 300;
}
.process-art {
  position: relative;
  height: 190px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 18px #bc387c22);
}
.process-art svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.process-art .particles,
.process-art .core {
  fill: #d33586;
}
.process-art .particles circle {
  transform-box: fill-box;
  transform-origin: center;
  animation: process-pulse 2.8s ease-in-out infinite alternate;
}
.process-art .particles circle:nth-child(3n) { animation-delay: -.7s; }
.process-art .particles circle:nth-child(4n) { animation-delay: -1.4s; }
.energy-line,
.energy-tail,
.orbit-lines *,
.wire-form *,
.facet-form path,
.cube path {
  fill: none;
  stroke: #d33586;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.energy-line,
.energy-tail {
  stroke-width: 1.4;
  filter: drop-shadow(0 0 5px #d33586);
}
.orbit-lines * { stroke: #bc387c88; }
.wire-form * { stroke: #d3358699; }
.facet-form path { stroke: #e071ad88; }
.cube path { stroke: #c8629790; }
.cube-beam {
  stroke: #ff4ca5 !important;
  stroke-width: 2 !important;
  filter: drop-shadow(0 0 7px #ff4ca5);
}
.process-copy {
  position: relative;
  padding-top: 22px;
}
.process-copy:before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f249a3;
  box-shadow: 0 0 12px #f249a3;
  transform: translateY(-50%);
}
.process-copy span {
  display: block;
  color: #d33586;
  font-size: 15px;
  margin-bottom: 7px;
}
.process-copy h3 {
  font: 500 clamp(20px, 1.65vw, 29px)/1 "Montserrat", Arial, sans-serif !important;
  margin: 0 0 12px;
}
.process-copy p {
  margin: 0;
  max-width: 240px;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.45;
  color: #aaa;
}
@keyframes process-pulse {
  from { opacity: .35; transform: scale(.65); }
  to { opacity: 1; transform: scale(1.25); }
}
.studio {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr;
  gap: 8vw;
  align-items: center;
}
.studio-image {
  position: relative;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  background: #d8d3ca;
}
.studio-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 58% center;
  transition: transform 1.1s var(--ease);
}
.studio-image:hover img {
  transform: scale(1.025);
}
.studio h2 {
  font-size: clamp(44px, 5.3vw, 84px);
  line-height: 0.96;
}
.studio-copy > p:not(.eyebrow) {
  font-size: 20px;
  line-height: 1.55;
  max-width: 720px;
  color: #666;
}
.contact {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact h2 {
  font-size: clamp(80px, 12vw, 210px);
  line-height: 0.75;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 8vw;
  align-items: end;
  margin-top: 9vh;
}
.contact-grid > p {
  font-size: 20px;
  line-height: 1.5;
  color: #aaa;
  max-width: 420px;
}
.contact-link {
  display: flex;
  justify-content: space-between;
  padding: 0 0 18px;
  border-bottom: 1px solid #ffffff60;
  font-size: 21px;
  letter-spacing: 0.06em;
}
.contact-link span {
  color: var(--wine);
  font-size: 30px;
}
.site-footer {
  position: relative;
  z-index: 2;
  padding: clamp(70px, 9vw, 150px) 7vw 34px;
  background: #050505;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1.2fr;
  gap: clamp(50px, 8vw, 140px);
  border-top: 1px solid #ffffff20;
  color: #f4f1ed;
}
.site-footer__intro h2 {
  margin: 20px 0 0;
  font-size: clamp(50px, 7vw, 116px);
  line-height: 0.86;
  letter-spacing: -0.065em;
}
.site-footer__intro h2 em {
  color: var(--magenta);
  font-style: normal;
}
.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.site-footer nav a {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 25px 0;
  border-top: 1px solid #ffffff32;
  color: inherit;
  transition: color 180ms ease, padding-left 180ms ease;
}
.site-footer nav a:last-child {
  border-bottom: 1px solid #ffffff32;
}
.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--magenta);
  padding-left: 10px;
}
.site-footer nav span {
  color: #8e8a8d;
  font-size: 13px;
}
.site-footer nav strong {
  font-size: clamp(25px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: -0.025em;
}
.site-footer nav i {
  font-size: 26px;
  font-style: normal;
}
.site-footer__base {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-top: 30px;
}
.site-footer__base img {
  width: min(240px, 55vw);
}
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 30px;
  height: 30px;
  border: 1.5px solid #fff;
  background: transparent;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  mix-blend-mode: difference;
  will-change: transform, width, height, background-color;
  transition:
    opacity 0.15s,
    width 0.2s,
    height 0.2s,
    background-color 0.2s;
}
.cursor i {
  display: none;
}
.cursor.is-visible {
  opacity: 1;
}
.cursor.is-hover {
  width: 58px;
  height: 58px;
  background: #fff;
}

/* Oswald en interfaz y texto; Montserrat únicamente en títulos. */
body * {
  font-family: "Oswald", "Arial Narrow", sans-serif !important;
}
h1,
h1 *,
h2,
h2 * {
  font-family: "Montserrat", Arial, sans-serif !important;
  font-weight: 700 !important;
}
h3,
h3 * {
  font-family: "Montserrat", Arial, sans-serif !important;
  font-weight: 500 !important;
}

@media (max-width: 800px) {
  .color-fade {
    height: clamp(88px, 25vw, 120px);
  }
  body {
    cursor: auto;
  }
  .cursor {
    display: none;
  }
  .nav {
    grid-template-columns: 100px minmax(140px, 1fr) 76px;
    gap: 5px;
    padding: max(10px, env(safe-area-inset-top))
      max(8px, env(safe-area-inset-right)) 10px
      max(8px, env(safe-area-inset-left));
  }
  .brand {
    width: 100px;
    height: 44px;
  }
  .talk {
    height: 42px;
    padding: 0 8px;
    font-size: 10px;
  }
  .nav-center {
    width: 100%;
    height: 44px;
    grid-template-columns: 28px 1fr 25px;
    padding: 0 8px;
    font-size: 10px;
  }
  .drawer {
    top: calc(62px + env(safe-area-inset-top));
    width: calc(100vw - 20px);
  }
  .hero {
    padding: 150px 15px 40px;
    align-items: flex-start;
  }
  .hero h1 {
    font-size: clamp(78px, 24vw, 118px);
    line-height: 0.78;
  }
  .hero-copy {
    margin-top: 8vh;
  }
  .hero-copy > p {
    font-size: 17px;
    max-width: 80%;
  }
  .hero-object {
    width: 94vw;
    height: 50vh;
    right: -36vw;
    top: 42vh;
    opacity: 0.72;
  }
  .monolith {
    font-size: 88vw;
  }
  .scroll-cue {
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    white-space: nowrap;
  }
  .manifesto,
  .capabilities,
  .projects,
  .process,
  .studio,
  .contact {
    padding: 100px 15px;
  }
  .manifesto h2,
  .section-head h2,
  .studio h2 {
    font-size: 12.5vw;
  }
  .section-head {
    grid-template-columns: 1fr;
    margin-bottom: 70px;
  }
  .section-head .eyebrow {
    grid-column: auto;
  }
  .section-copy {
    font-size: 17px;
  }
  .cap-list article {
    min-height: 190px;
    grid-template-columns: 36px 1fr;
    grid-template-rows: auto auto;
  }
  .cap-list h3 {
    font-size: 30px;
  }
  .cap-list p {
    font-size: 15px;
  }
  .material {
    position: absolute;
    right: -25px;
    bottom: 10px;
    width: 115px;
    height: 75px;
    opacity: 0.65;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  .projects {
    min-height: auto;
    display: block;
    padding: 100px 15px;
  }
  .projects-stage {
    position: static;
    height: auto;
    min-height: 0;
    display: block;
    overflow: visible;
    padding: 0;
  }
  .projects .section-head {
    margin-bottom: 70px;
  }
  .projects .section-head h2 {
    font-size: 12.5vw;
  }
  .project-visual,
  .project .project-visual {
    height: 58vh;
    min-height: 390px;
  }
  .project {
    width: 100%;
  }
  .project footer {
    display: block;
    min-height: 0;
  }
  .project footer > p {
    text-align: left;
    font-size: 12px;
  }
  .process-sequence {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 18px;
  }
  .process-sequence:after {
    display: none;
  }
  .process-step {
    min-width: 80vw;
    min-height: 360px;
    padding: 0 20px 30px;
    border: 1px solid #ffffff20;
    scroll-snap-align: start;
  }
  .process-step:not(:last-child):after {
    right: -13px;
    top: 92px;
  }
  .process-art {
    height: 210px;
  }
  .process-copy:before {
    display: none;
  }
  .studio {
    grid-template-columns: 1fr;
  }
  .studio-image {
    width: 100%;
    aspect-ratio: 4/3;
  }
  .studio-image img {
    object-position: 58% center;
  }
  .studio-copy > p:not(.eyebrow) {
    font-size: 17px;
  }
  .contact h2 {
    font-size: 22vw;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }
  .contact-link {
    font-size: 17px;
  }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .site-footer__base {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
  }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .site-footer > p,
  .site-footer small {
    text-align: left;
  }
  .site-footer nav {
    flex-wrap: wrap;
  }
  .eyebrow {
    font-size: 12px;
  }
  .boot small {
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .field {
    display: none;
  }
  .boot {
    animation-delay: 0.35s !important;
  }
  .boot.is-done {
    animation-delay: 0s !important;
  }
  .dark-section::before {
    animation: none;
    transform: scale(1.04);
  }
}
