:root {
  --ink: #07151b;
  --ink-soft: #10262e;
  --black: #030607;
  --black-raised: #0a0f11;
  --cream: #efe5d2;
  --cream-deep: #d8c8ac;
  --taupe: #b4a086;
  --yellow: #ffe548;
  --mint: #9dffc1;
  --cyan: #40e7ff;
  --pink: #ff57ae;
  --white: #fbfaf5;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(7, 21, 27, 0.22);
  --font-display: "Space Grotesk", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-height: 80px;
  --gutter: clamp(1.1rem, 3vw, 3.5rem);
  /* Section rhythm answers to viewport HEIGHT as well as width. Keyed to width
     alone, a wide-but-short laptop window got 144px top and bottom on every
     section, so two stacked paddings filled most of the screen with nothing. */
  --section-space: clamp(3.25rem, min(8vw, 8.5vh), 8rem);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: var(--font-display);
  font-size: clamp(1rem, .95rem + .2vw, 1.12rem);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button {
  color: inherit;
}

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

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

::selection {
  color: var(--black);
  background: var(--yellow);
}

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 999;
  padding: .8rem 1rem;
  color: var(--black);
  background: var(--yellow);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.shell {
  width: min(100%, 1600px);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}

.mono,
.eyebrow,
.section-index,
.meta,
.nav-link,
.chip,
.form-label,
.document-meta,
.project-kicker {
  font-family: var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1rem;
  font-size: .72rem;
  color: var(--mint);
}

.eyebrow::before {
  width: .55rem;
  height: .55rem;
  content: "";
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px transparent;
}

.eyebrow.is-dark {
  color: var(--ink);
}

.section-index {
  color: var(--taupe);
  font-size: .7rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: .96;
  letter-spacing: -.045em;
}

.display {
  max-width: 13ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.3rem, 7vw, 8.2rem);
  font-weight: 600;
}

.section-title {
  max-width: 14ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.7rem, 5.2vw, 6rem);
  font-weight: 600;
}

.section-title.is-wide {
  max-width: 20ch;
}

.lede {
  max-width: 42rem;
  color: rgba(251, 250, 245, .76);
  font-size: clamp(1.08rem, 1rem + .45vw, 1.45rem);
}

.cream-text {
  color: var(--ink);
}

.cream-text .lede {
  color: rgba(7, 21, 27, .72);
}

.muted {
  color: rgba(251, 250, 245, .62);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: .9rem 1.2rem;
  border: 1px solid var(--line-dark);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color 250ms var(--ease), background 250ms var(--ease), border-color 250ms var(--ease), transform 250ms var(--ease);
}

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

.btn:active {
  transform: translateY(0) scale(.98);
}

.btn-primary {
  color: var(--black);
  border-color: var(--yellow);
  background: var(--yellow);
}

.btn-primary:hover {
  background: #fff07c;
}

.btn-ghost:hover {
  border-color: var(--mint);
  background: rgba(157, 255, 193, .08);
}

.btn-dark {
  color: var(--cream);
  border-color: var(--ink);
  background: var(--ink);
}

.btn-dark:hover {
  color: var(--yellow);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding-bottom: .3rem;
  border-bottom: 1px solid currentColor;
  font-family: var(--font-mono);
  font-size: .74rem;
  text-transform: uppercase;
}

.text-link::after {
  content: "↗";
  transition: transform 220ms var(--ease);
}

.text-link:hover::after {
  transform: translate(3px, -3px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease, height 250ms var(--ease);
}

.site-header.is-scrolled,
.site-header.is-solid {
  height: 68px;
  border-color: var(--line-dark);
  background: rgba(3, 6, 7, .88);
  backdrop-filter: blur(16px) saturate(135%);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(150px, 18vw, 230px);
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 1.7vw, 1.8rem);
}

.nav-link {
  position: relative;
  padding-block: 1rem;
  color: rgba(251, 250, 245, .72);
  font-size: .68rem;
  transition: color 200ms ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: .62rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms var(--ease);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: .75rem 1rem;
  color: var(--black);
  background: var(--yellow);
  font-size: .68rem;
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line-dark);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 1px;
  content: "";
  background: var(--white);
  transition: transform 250ms var(--ease), opacity 200ms ease;
}

.menu-toggle::before { top: 16px; }
.menu-toggle span { top: 23px; }
.menu-toggle::after { top: 30px; }
.nav-open .menu-toggle::before { transform: translateY(7px) rotate(45deg); }
.nav-open .menu-toggle span { opacity: 0; }
.nav-open .menu-toggle::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.hero::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(3, 6, 7, .98) 0%, rgba(3, 6, 7, .83) 33%, rgba(3, 6, 7, .2) 65%, rgba(3, 6, 7, .08) 100%), linear-gradient(0deg, rgba(3, 6, 7, .7), transparent 32%);
}

.hero-grid {
  position: relative;
  z-index: 5;
  min-height: max(760px, 100svh);
  align-items: center;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 8rem;
}

.hero-copy {
  grid-column: 1 / span 7;
  padding-top: 2rem;
}

.hero-title {
  max-width: 9.5ch;
  margin-bottom: 1.5rem;
  font-size: clamp(4rem, 8.3vw, 9rem);
  font-weight: 600;
  line-height: .84;
}

.hero-title .accent {
  color: var(--yellow);
}

.hero-lede {
  max-width: 37rem;
  margin-bottom: 2rem;
  color: rgba(251, 250, 245, .78);
  font-size: clamp(1.05rem, 1rem + .35vw, 1.35rem);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
  margin-top: 2.4rem;
  color: rgba(251, 250, 245, .55);
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.hero-meta span::before {
  width: .42rem;
  height: .42rem;
  content: "";
  border-radius: 50%;
  background: var(--mint);
}

.hero-visual {
  position: absolute;
  z-index: 1;
  inset: 0;
  margin: 0;
  pointer-events: none;
}

.hero-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
  transform-origin: 70% 52%;
  will-change: transform, opacity;
}

.hero-layer.base {
  z-index: 1;
  animation: hero-assemble-base 900ms var(--ease) both;
}

.hero-layer.spectral-a,
.hero-layer.spectral-b {
  z-index: 2;
  opacity: .22;
  mix-blend-mode: screen;
}

.hero-layer.spectral-a {
  clip-path: polygon(47% 0, 100% 0, 100% 58%, 53% 72%);
  filter: saturate(1.5) hue-rotate(-18deg);
  animation: hero-assemble-a 900ms 70ms var(--ease) both;
}

.hero-layer.spectral-b {
  clip-path: polygon(42% 35%, 100% 10%, 100% 100%, 30% 100%);
  filter: saturate(1.6) hue-rotate(32deg);
  animation: hero-assemble-b 900ms 140ms var(--ease) both;
}

@keyframes hero-assemble-base {
  from { opacity: 0; transform: scale(.88); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-assemble-a {
  from { opacity: 0; transform: translate(-42px, 18px) scale(.88) rotate(-3deg); }
  to { opacity: .22; transform: translate(0) scale(1) rotate(0); }
}

@keyframes hero-assemble-b {
  from { opacity: 0; transform: translate(32px, -22px) scale(.88) rotate(3deg); }
  to { opacity: .18; transform: translate(0) scale(1) rotate(0); }
}

.hero[data-scrolled="true"] .hero-layer.spectral-a {
  transform: translate3d(var(--hero-shift-a, 0), var(--hero-y-a, 0), 0) rotate(-2deg);
}

.hero[data-scrolled="true"] .hero-layer.spectral-b {
  transform: translate3d(var(--hero-shift-b, 0), var(--hero-y-b, 0), 0) rotate(2deg);
}

.hero[data-scrolled="true"] .hero-copy {
  transform: translateY(var(--hero-copy-y, 0));
}

.hero-copy {
  transition: transform 60ms linear;
}

.material-canvas {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .52;
  pointer-events: none;
  mix-blend-mode: screen;
}

.scene-loader {
  position: absolute;
  z-index: 7;
  right: var(--gutter);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  color: rgba(251, 250, 245, .66);
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: opacity 300ms ease;
}

.scene-loader::before {
  width: .55rem;
  height: .55rem;
  content: "";
  border: 1px solid var(--cyan);
  border-radius: 50%;
  animation: loader-pulse 800ms ease-in-out infinite alternate;
}

.scene-loader.is-ready {
  opacity: 0;
  pointer-events: none;
}

@keyframes loader-pulse {
  to { background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
}

.hero-rail {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 0;
  display: grid;
  width: min(44rem, 55vw);
  min-height: 74px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem var(--gutter) 1rem 1.5rem;
  color: var(--black);
  background: var(--yellow);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform 60ms linear;
}

.hero-rail strong {
  font-weight: 500;
}

.hero-rail span:last-child {
  font-size: 1.5rem;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

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

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

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

.manifesto {
  min-height: 78vh;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 900ms var(--ease);
}

.manifesto.is-wiped {
  clip-path: inset(0 0 0 0);
}

.manifesto-copy {
  grid-column: 3 / span 8;
}

.manifesto-title {
  margin-bottom: 2rem;
  font-size: clamp(3rem, 6.2vw, 7rem);
  font-weight: 500;
}

.manifesto-title em {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  font-style: normal;
}

.manifesto-notes {
  grid-column: 7 / span 4;
  padding-top: 3rem;
}

.manifesto-notes p {
  color: rgba(7, 21, 27, .72);
}

.service-intro {
  grid-column: 1 / span 5;
}

.service-grid {
  grid-column: 7 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}

.service-card {
  position: relative;
  min-height: 220px;
  padding: 1.4rem 1.2rem 2.2rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: color 250ms ease, background 250ms ease;
}

.service-card:nth-child(2n) {
  border-right: 0;
}

.service-card:hover {
  color: var(--black);
  background: var(--yellow);
}

.service-card .service-no {
  display: block;
  margin-bottom: 4rem;
  color: var(--mint);
  font-family: var(--font-mono);
  font-size: .68rem;
}

.service-card:hover .service-no {
  color: var(--ink);
}

.service-card h3 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(1.4rem, 2.1vw, 2.2rem);
}

.work-story {
  position: relative;
  height: 240vh;
  color: var(--white);
  background: var(--ink);
}

.work-pin {
  position: sticky;
  top: 0;
  display: grid;
  height: 100vh;
  grid-template-columns: minmax(240px, 24vw) 1fr minmax(130px, 16vw);
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 1rem) var(--gutter) 2rem;
}

.work-meta {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 2rem;
}

.work-meta-title {
  max-width: 8ch;
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 3.8vw, 4.6rem);
}

.work-meta-copy {
  max-width: 24rem;
  color: rgba(251, 250, 245, .62);
}

.work-stage {
  position: relative;
  width: 100%;
  max-width: 760px;
  aspect-ratio: 4 / 5;
  justify-self: center;
}

.work-plate {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  background: var(--black-raised);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(110%) scale(.78);
  transform-origin: center;
  will-change: transform, opacity;
}

.work-plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-plate:nth-child(1) img { object-position: center 40%; }
.work-plate:nth-child(2) img { object-position: center; }
.work-plate:nth-child(3) img { object-position: center; }
.work-plate:nth-child(4) img { object-position: center; }

.work-plate-caption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 4rem 1.2rem 1.2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, .86));
}

.work-plate-caption h3 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(1.4rem, 2.8vw, 2.6rem);
}

.work-locator {
  display: flex;
  height: min(66vh, 610px);
  flex-direction: column;
  align-items: stretch;
  gap: .7rem;
}

.locator-item {
  position: relative;
  flex: 1;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: transparent;
  cursor: default;
  opacity: .38;
  transition: opacity 220ms ease, border-color 220ms ease;
}

.locator-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.locator-item.is-active {
  border-color: var(--yellow);
  opacity: 1;
}

.locator-item.is-active img {
  filter: none;
}

.work-progress {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  bottom: 1.1rem;
  left: var(--gutter);
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, .15);
}

.work-progress-fill {
  width: 100%;
  height: 100%;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
}

.studio {
  min-height: 100vh;
  overflow: hidden;
}

.studio-visual {
  grid-column: 1 / span 7;
  align-self: center;
}

.studio-frame {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(7, 21, 27, .18);
}

.studio-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.studio-frame.secondary {
  width: 54%;
  margin: -12% -3% 0 auto;
  aspect-ratio: 1;
  border: 12px solid var(--cream);
  transform: translate(0, 0);
}

.studio-copy {
  grid-column: 9 / -1;
  align-self: center;
}

.studio-copy ul {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.studio-copy li {
  display: flex;
  gap: .8rem;
  padding-block: .9rem;
  border-top: 1px solid var(--line-light);
}

.studio-copy li::before {
  color: #217242;
  content: "✓";
  font-family: var(--font-mono);
}

.action-section {
  overflow: hidden;
}

.action-intro {
  grid-column: 1 / span 5;
  align-self: start;
}

.action-card {
  position: relative;
  grid-column: 7 / -1;
  padding: clamp(1.3rem, 3vw, 2.5rem);
  border: 1px solid var(--line-dark);
  background: var(--black-raised);
  box-shadow: var(--shadow);
}

.action-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 8px;
  content: "";
  background: var(--yellow);
}

.action-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-dark);
}

.action-card-head h3 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.7rem);
}

.action-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-left: 1px solid var(--line-dark);
}

.action-day {
  min-height: 190px;
  padding: 1rem .75rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.action-day strong {
  display: block;
  margin-bottom: 2rem;
  color: var(--mint);
  font-family: var(--font-mono);
  font-size: .65rem;
  text-transform: uppercase;
}

.action-day span {
  display: block;
  font-size: .86rem;
  line-height: 1.25;
}

.action-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  color: rgba(251, 250, 245, .58);
  font-family: var(--font-mono);
  font-size: .66rem;
}

.closing-macro {
  position: relative;
  min-height: 115vh;
  overflow: hidden;
  background: var(--black);
}

.macro-image {
  position: absolute;
  inset: 8vh auto 0 50%;
  width: 45vw;
  height: 82vh;
  transform: translateX(-50%);
  transition: width 80ms linear, height 80ms linear, inset 80ms linear;
}

.macro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--macro-x, 50%) center;
}

.macro-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 6, 7, .96), transparent 56%);
}

.macro-copy {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 13vh;
  left: var(--gutter);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.macro-copy h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3rem, 6.8vw, 7.6rem);
}

.page-hero {
  position: relative;
  min-height: 74vh;
  overflow: hidden;
  padding-top: calc(var(--header-height) + clamp(4rem, 8vw, 8rem));
  padding-bottom: clamp(4rem, 8vw, 8rem);
  background: var(--ink);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7, 21, 27, .98), rgba(7, 21, 27, .72) 48%, rgba(7, 21, 27, .25));
}

.page-hero-image {
  position: absolute;
  inset: 0 0 0 42%;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-copy {
  grid-column: 1 / span 7;
}

.page-hero .display {
  max-width: 10ch;
}

.page-hero .hero-lede {
  margin-bottom: 0;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.fact {
  min-height: 190px;
  padding: 1.25rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.fact strong {
  display: block;
  margin-bottom: 1rem;
  color: var(--yellow);
  font-size: clamp(2.6rem, 5vw, 5.5rem);
  line-height: 1;
}

.fact span {
  color: rgba(251, 250, 245, .62);
}

.split-copy {
  grid-column: 1 / span 5;
}

.split-content {
  grid-column: 7 / -1;
}

.statement-card {
  padding: clamp(1.4rem, 3vw, 2.8rem);
  border-top: 1px solid var(--line-light);
}

.statement-card h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.statement-card p {
  color: rgba(7, 21, 27, .7);
}

.partners {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.partner-card {
  min-height: 230px;
  padding: 1.5rem;
  border: 1px solid var(--line-dark);
  background: var(--black-raised);
}

.partner-card h3 {
  margin-bottom: 3rem;
  font-size: 1.5rem;
}

.partner-card p {
  color: rgba(251, 250, 245, .62);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, .22);
}

.testimonial blockquote {
  margin: 0;
  font-size: clamp(1.2rem, 1.5vw, 1.55rem);
  line-height: 1.35;
}

.testimonial cite {
  display: block;
  color: rgba(7, 21, 27, .7);
  font-family: var(--font-mono);
  font-size: .68rem;
  font-style: normal;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.service-stack {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-dark);
}

.service-row {
  display: grid;
  min-height: 260px;
  grid-template-columns: 90px minmax(220px, .8fr) 1.2fr;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: start;
  padding-block: 2rem;
  border-bottom: 1px solid var(--line-dark);
}

.service-row-no {
  color: var(--mint);
  font-family: var(--font-mono);
  font-size: .7rem;
}

.service-row h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.8rem);
}

.service-row p {
  max-width: 45rem;
  color: rgba(251, 250, 245, .65);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}

.chip {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: .5rem .7rem;
  border: 1px solid var(--line-dark);
  color: rgba(251, 250, 245, .68);
  font-size: .62rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.process-step {
  min-height: 250px;
  padding: 1.3rem;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.process-step strong {
  display: block;
  margin-bottom: 5rem;
  color: #356a4a;
  font-family: var(--font-mono);
  font-size: .7rem;
}

.project-toolbar {
  position: sticky;
  z-index: 20;
  top: 68px;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(3, 6, 7, .92);
  backdrop-filter: blur(14px);
}

.filter-list {
  display: flex;
  overflow-x: auto;
  gap: .55rem;
  scrollbar-width: none;
}

.filter-list::-webkit-scrollbar {
  display: none;
}

.filter-button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: .65rem .85rem;
  border: 1px solid var(--line-dark);
  color: rgba(251, 250, 245, .65);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.filter-button[aria-pressed="true"] {
  color: var(--black);
  border-color: var(--yellow);
  background: var(--yellow);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(.8rem, 1.5vw, 1.4rem);
}

.project-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--black-raised);
}

.project-card:nth-child(7n + 1),
.project-card:nth-child(7n + 5) {
  grid-column: span 8;
}

.project-card.is-hidden {
  display: none;
}

.project-card-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
}

.project-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
}

.project-card:nth-child(7n + 1) .project-media,
.project-card:nth-child(7n + 5) .project-media {
  aspect-ratio: 16 / 9;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease), filter 350ms ease;
}

.project-card:hover .project-media img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.project-caption {
  min-height: 118px;
  padding: 1rem;
}

.project-kicker {
  display: block;
  margin-bottom: .7rem;
  color: var(--mint);
  font-size: .62rem;
}

.project-caption h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.lightbox {
  width: min(92vw, 1280px);
  max-height: 92vh;
  padding: 0;
  border: 1px solid var(--line-dark);
  color: var(--white);
  background: var(--black);
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(8px);
}

.lightbox-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(220px, 310px);
}

.lightbox-media {
  min-height: min(76vh, 780px);
  background: #000;
}

.lightbox-media img {
  width: 100%;
  height: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.lightbox-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.4rem;
  border-left: 1px solid var(--line-dark);
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: .8rem;
  right: .8rem;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  background: rgba(3, 6, 7, .85);
  cursor: pointer;
  font-size: 1.4rem;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.client-mark {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 1rem;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(255, 255, 255, .16);
}

.client-mark img {
  width: 100%;
  max-width: 145px;
  max-height: 70px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(.85) contrast(1.05);
}

.compliance-feature {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) 1.3fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}

.certificate-card {
  position: relative;
  padding: 2rem;
  color: var(--ink);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.certificate-card::before {
  position: absolute;
  inset: .75rem;
  content: "";
  border: 1px solid var(--line-light);
  pointer-events: none;
}

.certificate-card strong {
  display: block;
  margin-block: 1rem;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: .9;
}

.certificate-card dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .45rem 1rem;
  margin: 2rem 0 0;
  font-family: var(--font-mono);
  font-size: .7rem;
}

.certificate-card dt {
  color: rgba(7, 21, 27, .6);
}

.certificate-card dd {
  margin: 0;
  text-align: right;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.document-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.4rem;
  border: 1px solid var(--line-dark);
  background: var(--black-raised);
  transition: color 250ms ease, background 250ms ease, transform 250ms var(--ease);
}

.document-card:hover {
  color: var(--black);
  background: var(--yellow);
  transform: translateY(-3px);
}

.document-card h3 {
  max-width: 14ch;
  margin: 0;
  font-size: 1.6rem;
}

.document-meta {
  color: var(--mint);
  font-size: .62rem;
}

.document-card:hover .document-meta {
  color: var(--ink);
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.history-card {
  padding: 1.4rem;
  border-top: 1px solid var(--line-light);
}

.history-card strong {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.history-card p {
  color: rgba(7, 21, 27, .68);
}

.contact-layout {
  align-items: start;
}

.contact-details {
  grid-column: 1 / span 5;
}

.contact-details h2 {
  max-width: 10ch;
}

.contact-list {
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.contact-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  padding-block: 1.2rem;
  border-bottom: 1px solid var(--line-dark);
}

.contact-list strong {
  color: var(--mint);
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 400;
  text-transform: uppercase;
}

.contact-list a:hover {
  color: var(--yellow);
}

.contact-list a {
  overflow-wrap: anywhere;
}

.contact-form-wrap {
  grid-column: 7 / -1;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  color: var(--ink);
  background: var(--cream);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: .45rem;
}

.field.full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: .62rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: .8rem .85rem;
  border: 1px solid var(--line-light);
  border-radius: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, .3);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  background: rgba(255, 255, 255, .65);
}

.form-note,
.form-status {
  color: rgba(7, 21, 27, .65);
  font-size: .76rem;
}

.form-status {
  min-height: 1.5em;
}

.site-footer {
  color: var(--white);
  background: var(--black);
  border-top: 1px solid var(--line-dark);
}

.footer-main {
  display: grid;
  min-height: 470px;
  grid-template-columns: 1.4fr .6fr .6fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.footer-brand img {
  width: min(420px, 80%);
  margin-bottom: 2rem;
}

.footer-brand p {
  max-width: 30rem;
  color: rgba(251, 250, 245, .58);
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: .65rem;
}

.footer-nav strong,
.footer-contact strong {
  margin-bottom: .8rem;
  color: var(--mint);
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a {
  color: rgba(251, 250, 245, .72);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line-dark);
  color: rgba(251, 250, 245, .44);
  font-family: var(--font-mono);
  font-size: .62rem;
  text-transform: uppercase;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

.js .stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

.js .stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.js .stagger.is-visible > *:nth-child(2) { transition-delay: 70ms; }
.js .stagger.is-visible > *:nth-child(3) { transition-delay: 140ms; }
.js .stagger.is-visible > *:nth-child(4) { transition-delay: 210ms; }
.js .stagger.is-visible > *:nth-child(5) { transition-delay: 280ms; }
.js .stagger.is-visible > *:nth-child(6) { transition-delay: 350ms; }

@media (max-width: 1100px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: grid;
    grid-auto-rows: min-content;
    align-content: center;
    justify-items: start;
    gap: .15rem;
    padding: 6rem var(--gutter) 3rem;
    background: rgba(3, 6, 7, .98);
    transform: translateX(100%);
    transition: transform 450ms var(--ease);
  }

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

  .site-nav .nav-link {
    font-family: var(--font-display);
    font-size: clamp(2rem, 7vw, 4.5rem);
    font-weight: 500;
    letter-spacing: -.04em;
    text-transform: none;
  }

  .site-nav .nav-cta {
    margin-top: 1.2rem;
    font-family: var(--font-mono);
    font-size: .75rem;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  .hero-copy {
    grid-column: 1 / span 8;
  }

  .studio-visual {
    grid-column: 1 / span 7;
  }

  .studio-copy {
    grid-column: 8 / -1;
  }

  .action-days {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .action-day:nth-child(n + 5) {
    min-height: 150px;
  }

  .client-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

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

  .hero {
    min-height: 860px;
  }

  .hero-grid {
    min-height: 860px;
    align-items: end;
    padding-bottom: 10rem;
  }

  .hero-copy {
    grid-column: 1;
    padding-top: 14rem;
  }

  .hero-title {
    font-size: clamp(3.8rem, 16vw, 6.5rem);
  }

  .hero::before {
    background: linear-gradient(0deg, rgba(3, 6, 7, .98) 4%, rgba(3, 6, 7, .76) 48%, rgba(3, 6, 7, .08) 100%);
  }

  .hero-layer {
    height: 64%;
    object-position: 71% center;
  }

  .hero-layer.spectral-a,
  .hero-layer.spectral-b,
  .material-canvas,
  .scene-loader {
    display: none;
  }

  .hero-rail {
    width: 100%;
    min-height: 80px;
  }

  .manifesto {
    min-height: 0;
  }

  .manifesto-copy,
  .manifesto-notes,
  .service-intro,
  .service-grid,
  .studio-visual,
  .studio-copy,
  .action-intro,
  .action-card,
  .page-hero-copy,
  .split-copy,
  .split-content,
  .contact-details,
  .contact-form-wrap {
    grid-column: 1;
    min-width: 0;
  }

  .manifesto-notes {
    padding-top: 1rem;
  }

  .service-intro {
    margin-bottom: 2.5rem;
  }

  .work-story {
    height: auto;
    padding-block: var(--section-space);
  }

  .work-pin {
    position: relative;
    display: block;
    height: auto;
    padding: 0 var(--gutter);
    overflow: visible;
  }

  .work-meta {
    min-height: 0;
    padding: 0 0 2rem;
  }

  .work-stage {
    display: grid;
    max-width: none;
    aspect-ratio: auto;
    gap: 1rem;
  }

  .work-plate {
    position: relative;
    aspect-ratio: 4 / 5;
    opacity: 1;
    transform: none !important;
  }

  .work-locator,
  .work-progress {
    display: none;
  }

  .studio-visual {
    margin-bottom: 3rem;
  }

  .action-intro {
    margin-bottom: 2.5rem;
  }

  .action-days {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .action-day {
    min-height: 145px;
  }

  .macro-image {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }

  .macro-copy {
    display: block;
  }

  .macro-copy .button-row {
    margin-top: 2rem;
  }

  .page-hero {
    min-height: 78vh;
  }

  .page-hero-image {
    inset: 0;
  }

  .page-hero::after {
    background: linear-gradient(0deg, rgba(7, 21, 27, .98) 8%, rgba(7, 21, 27, .76) 58%, rgba(7, 21, 27, .2));
  }

  .page-hero-content {
    display: flex;
    min-height: 52vh;
    align-items: flex-end;
  }

  .facts-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners,
  .testimonial-grid,
  .document-grid,
  .history-grid {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 50px 1fr;
  }

  .service-row > div:last-child {
    grid-column: 2;
  }

  .project-card,
  .project-card:nth-child(7n + 1),
  .project-card:nth-child(7n + 5) {
    grid-column: span 6;
  }

  .project-card:nth-child(7n + 1) .project-media,
  .project-card:nth-child(7n + 5) .project-media {
    aspect-ratio: 4 / 3;
  }

  .client-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .compliance-feature {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 560px) {
  .display,
  .section-title {
    letter-spacing: -.055em;
  }

  .brand img {
    width: 150px;
  }

  .button-row {
    align-items: stretch;
  }

  .button-row .btn {
    width: 100%;
  }

  .hero-meta {
    display: grid;
  }

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

  .service-card,
  .service-card:nth-child(2n) {
    border-right: 0;
  }

  .studio-frame.secondary {
    width: 68%;
  }

  .action-card {
    padding-inline: 1rem;
  }

  .action-card-head,
  .action-card-foot {
    display: block;
  }

  .action-card-head .meta,
  .action-card-foot .btn {
    margin-top: 1rem;
  }

  .action-days {
    grid-template-columns: 1fr;
  }

  .action-day {
    min-height: 110px;
  }

  .action-day strong {
    margin-bottom: 1rem;
  }

  .facts-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 38px 1fr;
    gap: .8rem;
  }

  .project-card,
  .project-card:nth-child(7n + 1),
  .project-card:nth-child(7n + 5) {
    grid-column: 1 / -1;
  }

  .lightbox-inner {
    grid-template-columns: 1fr;
  }

  .lightbox-media {
    min-height: 50vh;
  }

  .lightbox-copy {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

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

  .client-mark {
    min-height: 120px;
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: .35rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: 1;
  }

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

  .footer-brand {
    grid-column: 1;
  }

  .footer-bottom {
    display: grid;
    padding-block: 1rem;
  }
}

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

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

  .hero-layer.spectral-a,
  .hero-layer.spectral-b,
  .material-canvas,
  .scene-loader {
    display: none;
  }

  .manifesto {
    clip-path: none;
  }

  .work-story {
    height: auto;
    padding-block: var(--section-space);
  }

  .work-pin {
    position: relative;
    display: block;
    height: auto;
  }

  .work-stage {
    display: grid;
    max-width: none;
    aspect-ratio: auto;
    gap: 1rem;
  }

  .work-plate {
    position: relative;
    aspect-ratio: 4 / 5;
    opacity: 1;
    transform: none !important;
  }

  .work-locator,
  .work-progress {
    display: none;
  }

  .macro-image {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }
}

@media print {
  @page {
    size: A4 landscape;
    margin: 12mm;
  }

  body {
    margin: 0;
    color: #000;
    background: #fff;
  }

  body > .skip-link,
  body > .site-header,
  main > :not(.action-section),
  body > .site-footer,
  .action-section .action-intro {
    display: none !important;
  }

  main,
  .action-section,
  .action-section > .shell {
    display: block !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
    color: #000;
    background: #fff !important;
  }

  body * {
    visibility: hidden !important;
  }

  #print-card,
  #print-card * {
    visibility: visible !important;
  }

  #print-card {
    position: static;
    display: block !important;
    width: 100%;
    margin: 0;
    color: #000;
    background: #fff;
  }

  #print-card.action-card {
    display: block;
    color: #000;
    border: 2px solid #000;
    background: #fff;
    box-shadow: none;
  }

  #print-card .action-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-color: #000;
  }

  #print-card .action-day,
  #print-card .action-card-head,
  #print-card .action-card-foot {
    border-color: #000;
  }

  #print-card .action-day strong,
  #print-card .action-card-foot,
  #print-card .meta {
    color: #000;
  }

  #print-card .btn {
    display: none;
  }
}
