@font-face {
  font-family: "Nexa";
  src: url("../fonts/Nexa-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nexa";
  src: url("../fonts/Nexa-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nexa";
  src: url("../fonts/Nexa-Heavy.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #050505;
  --bone: #ededed;
  --paper: #ffffff;
  --gold: #696969;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: auto;
  background: var(--bone);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bone);
  color: var(--ink);
  font-family: "Nexa", Arial, sans-serif;
  font-weight: 400;
}

body.menu-open { overflow: hidden; }

.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;
}

.page-transition-layer {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  transform: scaleY(0);
  transform-origin: top;
  animation: page-curtain-enter .72s cubic-bezier(.76, 0, .24, 1) .06s both;
  transition: transform .68s cubic-bezier(.76, 0, .24, 1);
  pointer-events: none;
}

.page-transition-layer span {
  font-size: clamp(1.25rem, 2.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.06em;
  opacity: 1;
  transition: opacity .25s ease;
}

body.page-ready .page-transition-layer { transform: scaleY(0); }
body.page-ready .page-transition-layer span { opacity: 0; }
body.page-exiting .page-transition-layer { animation: none; transform: scaleY(1); transform-origin: bottom; }
body.page-exiting .page-transition-layer span { opacity: 1; transition-delay: .3s; }

@view-transition { navigation: auto; }
::view-transition-old(root) { animation: .42s ease both page-old; }
::view-transition-new(root) { animation: .65s cubic-bezier(.2,.75,.2,1) both page-new; }

::selection { background: var(--ink); color: white; }
button, input, textarea { font: inherit; }

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 20px;
  left: 50%;
  width: min(calc(100% - 40px), 1392px);
  height: 58px;
  padding: 0 10px 0 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid rgba(5, 5, 5, .1);
  border-radius: 100px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 38px rgba(0, 0, 0, .055);
  backdrop-filter: blur(22px) saturate(125%);
  transform: translateX(-50%);
}

.wordmark {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.045em;
}

.wordmark-dot { color: #777; }

.desktop-nav { display: flex; align-items: center; gap: 34px; }
.desktop-nav a { font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; transition: opacity .25s ease; }
.desktop-nav a:hover { opacity: .45; }

.header-cta {
  justify-self: end;
  height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-radius: 100px;
  background: var(--ink);
  color: var(--paper);
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease;
}

.header-cta:hover { background: #3c3c3c; color: #fff; }
.menu-button, .mobile-nav { display: none; }

.hero-scroll {
  --hero-progress: 0;
  position: relative;
  height: 340vh;
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: var(--paper);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(226, 223, 215, .38) 0%, rgba(226, 223, 215, .05) 45%, transparent 65%);
  pointer-events: none;
}

.hero-fade {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 34vh;
  background: linear-gradient(to bottom, transparent, rgba(245,243,237,.52) 48%, var(--paper) 100%);
  opacity: clamp(0, calc((var(--hero-progress) - .68) * 3.2), 1);
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: max(6.4vw, 42px);
  top: 50%;
  width: min(700px, 56vw);
  transform: translateY(-47%);
}

.hero-copy-one {
  opacity: clamp(0, calc(1 - var(--hero-progress) * 3.6), 1);
  transform: translateY(calc(-47% - var(--hero-progress) * 70px));
}

.hero-copy-two {
  opacity: clamp(0, calc((var(--hero-progress) - .54) * 4.2), 1);
  transform: translateY(calc(-38% - (1 - var(--hero-progress)) * -45px));
}

.eyebrow {
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: .64rem;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.eyebrow span { width: 28px; height: 1px; background: var(--gold); }

.hero-copy h1,
.hero-copy h2 {
  margin: 0;
  font-size: clamp(3.8rem, 7.6vw, 8.6rem);
  font-weight: 200;
  line-height: .88;
  letter-spacing: -.07em;
}

.hero-copy h2 { font-size: clamp(3.5rem, 7vw, 8rem); }

.hero-note {
  margin: 44px 0 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(23, 22, 18, .62);
  font-size: .61rem;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.hero-note::before {
  content: "";
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  animation: pulse 1.8s ease-out infinite;
}

.text-link {
  margin-top: 42px;
  padding-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid rgba(23, 22, 18, .4);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.scroll-index {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .55rem;
  letter-spacing: .1em;
}

.scroll-index i {
  position: relative;
  width: 70px;
  height: 1px;
  overflow: hidden;
  background: rgba(23, 22, 18, .22);
}

.scroll-index b {
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleX(var(--hero-progress));
  transform-origin: left;
}

/* Scroll-built particle mark */
.hero-logo-scroll {
  --hero-progress: 0;
  position: relative;
  height: 280vh;
  background: var(--ink);
}

.hero-logo-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  background: var(--paper);
}

.hero-logo-darken {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--ink);
  opacity: clamp(0, calc((var(--hero-progress) - .68) * 3.4), 1);
}

.hero-logo-stage,
.hero-logo-canvas {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-clouds {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  opacity: clamp(0, calc(1 - var(--hero-progress) * 1.45), 1);
  pointer-events: none;
}

.hero-cloud {
  position: absolute;
  width: clamp(210px, 22vw, 390px);
  height: auto;
  display: block;
  object-fit: contain;
  opacity: .18;
  filter: grayscale(1) contrast(.84);
  mix-blend-mode: multiply;
  will-change: transform;
}

.cloud-one { top: 15%; left: -2%; transform: translate3d(var(--cloud-left-x, 0), var(--cloud-y, 0), 0); }
.cloud-two { bottom: 12%; left: 10%; width: clamp(165px, 17vw, 300px); opacity: .11; transform: translate3d(var(--cloud-left-x, 0), calc(var(--cloud-y, 0) * -.65), 0) scaleX(-1); }
.cloud-three { top: 18%; right: -2%; opacity: .14; transform: translate3d(var(--cloud-right-x, 0), calc(var(--cloud-y, 0) * .6), 0) scaleX(-1); }
.cloud-four { right: 9%; bottom: 10%; width: clamp(175px, 18vw, 320px); opacity: .2; transform: translate3d(var(--cloud-right-x, 0), var(--cloud-y, 0), 0); }

.hero-logo-fallback {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(82vw, 1260px);
  height: auto;
  display: block;
  filter: brightness(0);
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: opacity .22s ease;
}

.hero-logo-ready .hero-logo-fallback { opacity: 0; }

.hero-logo-kicker,
.hero-logo-scroll-note {
  position: absolute;
  z-index: 3;
  margin: 0;
  color: var(--ink);
  font-size: .58rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  opacity: clamp(0, calc(1 - var(--hero-progress) * 4), 1);
  transform: translateY(calc(var(--hero-progress) * -18px));
}

.hero-logo-kicker { top: 120px; left: max(5.5vw, 28px); }
.hero-logo-subtitle {
  position: absolute;
  z-index: 3;
  top: calc(50% + clamp(80px, 11vw, 155px));
  left: 50%;
  width: min(90vw, 760px);
  margin: 0;
  color: var(--ink);
  font-size: clamp(.58rem, .78vw, .78rem);
  letter-spacing: .22em;
  text-align: center;
  text-transform: uppercase;
  opacity: clamp(0, calc(1 - var(--hero-progress) * 3.8), 1);
  transform: translate3d(-50%, calc(var(--hero-progress) * -24px), 0);
}
.hero-logo-scroll-note { bottom: 34px; left: max(5.5vw, 28px); display: flex; align-items: center; gap: 10px; }
.hero-logo-scroll-note i { width: 5px; height: 5px; border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 5px rgba(5,5,5,.08); }
.hero-logo-sticky .scroll-index { color: var(--ink); opacity: clamp(0, calc(1 - (var(--hero-progress) - .5) * 3), 1); }

.manifesto {
  min-height: 90vh;
  padding: 110px max(5.5vw, 28px) 130px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 70px;
  align-items: start;
  position: relative;
  margin-top: -1px;
  background: var(--ink);
  color: var(--paper);
}

.section-label {
  margin: 7px 0 0;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.manifesto-copy h2 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(2.9rem, 5.8vw, 6.8rem);
  font-weight: 200;
  line-height: .97;
  letter-spacing: -.055em;
}

.manifesto-copy em { color: #9c9c9c; font-style: normal; }
.manifesto-copy > p {
  width: min(580px, 100%);
  margin: 56px 0 0 auto;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 200;
  line-height: 1.7;
  color: rgba(255, 255, 255, .62);
}
.manifesto .section-label { color: rgba(255,255,255,.48); }
.manifesto .inline-arrow { border-color: rgba(255,255,255,.35); }
.inline-arrow, .light-link {
  display: inline-block;
  margin-top: 42px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(23,22,18,.35);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.light-link { margin: 58px 0 0 25%; color: var(--paper); border-color: rgba(245,243,237,.35); }

.capabilities {
  padding: 110px max(5.5vw, 28px) 120px;
  background: var(--bone);
  color: var(--ink);
}

.section-label.light { color: rgba(245, 243, 237, .48); }

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(3.5rem, 6vw, 7rem);
  font-weight: 200;
  line-height: .9;
  letter-spacing: -.06em;
}

.section-heading > p:last-child {
  margin: 5px 0 0;
  font-size: .95rem;
  font-weight: 200;
  line-height: 1.7;
  color: rgba(5, 5, 5, .58);
}

.capability-list {
  margin-top: 120px;
  border-top: 1px solid rgba(5, 5, 5, .18);
}

.capability-row {
  min-height: 220px;
  padding: 34px 0 38px;
  display: grid;
  grid-template-columns: .35fr 1.25fr 1.15fr 1.25fr;
  gap: 44px;
  align-items: start;
  border-bottom: 1px solid rgba(5, 5, 5, .18);
}

.row-number {
  color: var(--gold);
  font-size: .67rem;
  letter-spacing: .15em;
}

.capability-row h3 {
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 4rem);
  font-weight: 200;
  letter-spacing: -.045em;
}

.capability-row > p {
  margin: 3px 0 0;
  font-size: .95rem;
  font-weight: 200;
  line-height: 1.6;
  color: rgba(5, 5, 5, .58);
}

.capability-row ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(5, 5, 5, .78);
  font-size: .68rem;
  letter-spacing: .08em;
  line-height: 2.15;
  text-transform: uppercase;
}

.capability-row li::before { content: "+"; margin-right: 12px; color: var(--gold); }

.work {
  padding: 120px max(5.5vw, 28px) 140px;
  background: #f5f5f7;
}

.work-shelf { overflow: hidden; }
.work-visuals { padding-top: 20px; }
.work-shelf-heading {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 80px;
  align-items: end;
}
.work-shelf-heading h2 {
  margin: 20px 0 0;
  font-size: clamp(4rem, 7.8vw, 9rem);
  font-weight: 200;
  line-height: .88;
  letter-spacing: -.07em;
}
.work-shelf-heading > div:last-child { padding-bottom: 8px; }
.work-shelf-heading > div:last-child > p {
  margin: 0;
  max-width: 430px;
  color: rgba(5,5,5,.58);
  font-size: .9rem;
  font-weight: 200;
  line-height: 1.75;
}
.shelf-more {
  width: fit-content;
  margin-top: 30px;
  padding: 11px 11px 11px 17px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(5,5,5,.16);
  border-radius: 100px;
  font-size: .63rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.shelf-more span { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: white; }
.shelf-more:hover { background: var(--ink); color: white; transform: translateY(-2px); }
.shelf-more:hover span { background: white; color: var(--ink); }

.work-shelf .portfolio-grid {
  width: calc(100% + max(5.5vw, 28px));
  margin-top: 78px;
  padding: 0 max(5.5vw, 28px) 28px 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, min(43vw, 650px));
  grid-template-columns: none;
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.work-shelf .portfolio-grid::-webkit-scrollbar { display: none; }
.work-shelf .portfolio-card { scroll-snap-align: start; }

.work-heading {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 70px;
}

.work-heading > div {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: end;
}

.work-heading h2 {
  margin: 0;
  font-size: clamp(3.8rem, 7vw, 8rem);
  font-weight: 200;
  line-height: .87;
  letter-spacing: -.065em;
}

.work-heading > div > p {
  margin: 0;
  max-width: 370px;
  color: rgba(23, 22, 18, .62);
  font-size: .88rem;
  font-weight: 200;
  line-height: 1.7;
}
.work-links { margin-top: 24px; display: flex; justify-content: flex-end; gap: 34px; font-size: .65rem; letter-spacing: .13em; text-transform: uppercase; }

.portfolio-grid {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px 24px;
}

.portfolio-card {
  --project-accent: var(--gold);
  min-width: 0;
  display: block;
  padding: 12px 12px 25px;
  border: 1px solid rgba(5,5,5,.06);
  border-radius: 30px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 50px rgba(0,0,0,.055);
  transition: transform .55s cubic-bezier(.2,.75,.2,1), box-shadow .55s ease;
}
.portfolio-card:hover { transform: translateY(-7px); box-shadow: 0 25px 70px rgba(0,0,0,.09); }

.portfolio-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 21px;
  background: #e9e9e9;
}

.portfolio-media > img,
.portfolio-media > video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}

.portfolio-card:hover .portfolio-media > img,
.portfolio-card:hover .portfolio-media > video { transform: scale(1.035); filter: grayscale(.12) contrast(1.02); }

.portfolio-open {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(245,243,237,.86);
  color: var(--ink);
  font-size: .85rem;
  backdrop-filter: blur(9px);
  transform: translateY(-7px);
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
}

.portfolio-card:hover .portfolio-open { opacity: 1; transform: translateY(0); }

.portfolio-tags {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.portfolio-tags span {
  padding: 7px 10px;
  border-radius: 100px;
  background: rgba(18,17,14,.68);
  color: var(--paper);
  font-size: .5rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.portfolio-no-media {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--project-accent);
  font-size: .63rem;
  letter-spacing: .18em;
}

.portfolio-meta {
  padding: 20px 8px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.portfolio-meta > div:last-child { flex: 0 0 auto; text-align: right; }
.portfolio-meta p { margin: 0 0 8px; color: rgba(23,22,18,.47); font-size: .55rem; letter-spacing: .12em; text-transform: uppercase; }
.portfolio-meta h3 { margin: 0; font-size: clamp(1.7rem,2.6vw,3.2rem); font-weight: 200; line-height: 1; letter-spacing: -.045em; }
.portfolio-meta span { color: var(--project-accent); font-size: .54rem; letter-spacing: .12em; }
.portfolio-summary { max-width: 530px; margin: 17px 8px 0; color: rgba(5,5,5,.58); font-size: .82rem; font-weight: 200; line-height: 1.65; }
.portfolio-grid-visual .portfolio-media { background: #090909; }
.portfolio-placeholder { pointer-events: none; }
.portfolio-placeholder .portfolio-media {
  background:
    radial-gradient(circle at 72% 24%, rgba(0,0,0,.085), transparent 24%),
    linear-gradient(145deg, #f5f5f5, #e5e5e5);
}
.portfolio-grid-visual .portfolio-placeholder .portfolio-media { background: radial-gradient(circle at 70% 25%, #333, transparent 25%), #090909; }
.placeholder-number { position: absolute; top: 22px; left: 22px; color: rgba(5,5,5,.35); font-size: .55rem; letter-spacing: .15em; }
.portfolio-grid-visual .placeholder-number { color: rgba(255,255,255,.38); }
.portfolio-placeholder .portfolio-no-media { color: rgba(5,5,5,.45); }
.portfolio-grid-visual .portfolio-no-media { color: rgba(255,255,255,.52); }

.portfolio-empty {
  position: relative;
  height: min(58vw, 680px);
  min-height: 390px;
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 22, 18, .16);
  background: linear-gradient(145deg, #eeeeee, #ffffff);
  overflow: hidden;
}

.portfolio-empty::before {
  content: "";
  position: absolute;
  width: 38vw;
  height: 38vw;
  max-width: 540px;
  max-height: 540px;
  border: 1px solid rgba(5, 5, 5, .13);
  border-radius: 50%;
}

.portfolio-empty > span {
  position: relative;
  font-size: clamp(2.8rem, 6vw, 7rem);
  font-weight: 200;
  letter-spacing: -.06em;
}

.portfolio-empty > p {
  position: relative;
  margin: 12px 0 0;
  color: var(--gold);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.portfolio-empty > b {
  position: absolute;
  right: 24px;
  bottom: 20px;
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .14em;
}

.empty-corner { position: absolute; width: 22px; height: 22px; }
.top-left { top: 18px; left: 18px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.top-right { top: 18px; right: 18px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.bottom-left { bottom: 18px; left: 18px; border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.bottom-right { bottom: 18px; right: 18px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }

.process {
  padding: 125px max(5.5vw, 28px) 130px;
  background: var(--ink);
  color: var(--paper);
}

.process-intro {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 70px;
}

.process-intro h2 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(3.2rem, 5.5vw, 6.4rem);
  font-weight: 200;
  line-height: .98;
  letter-spacing: -.055em;
}

.process-intro em { color: #9c9c9c; font-style: normal; }
.process .section-label { color: rgba(255,255,255,.46); }

.process-steps {
  margin: 110px 0 0 25%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.process-steps article {
  min-height: 285px;
  padding: 28px 30px 20px 0;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.process-steps article:not(:first-child) { padding-left: 30px; }
.process-steps article:last-child { border-right: 0; }

.process-steps span {
  color: var(--gold);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.process-steps h3 {
  margin: 78px 0 16px;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -.025em;
}

.process-steps p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: .83rem;
  font-weight: 200;
  line-height: 1.7;
}

.contact, .contact-band {
  min-height: 100vh;
  padding: 82px max(5.5vw, 28px) 26px;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: var(--paper);
}

.contact-band-top {
  padding-bottom: 34px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.contact-band-top > p:last-child {
  margin: 0;
  color: rgba(255,255,255,.48);
  font-size: .6rem;
  line-height: 1.6;
  letter-spacing: .12em;
  text-align: right;
  text-transform: uppercase;
}

.contact-main {
  margin: auto 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(270px, .9fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: end;
}

.contact-main h2 {
  margin: 95px 0 35px;
  font-size: clamp(4.1rem, 8.7vw, 10rem);
  font-weight: 200;
  line-height: .84;
  letter-spacing: -.07em;
}

.contact-main > div > p {
  width: min(520px, 100%);
  margin: 0 0 10px;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  font-weight: 200;
  line-height: 1.75;
}

.contact-button {
  width: 100%;
  min-height: 190px;
  margin: 0;
  padding: 25px 24px 23px 28px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.42);
  background: transparent;
  color: var(--paper);
  overflow: hidden;
  transition: transform .45s cubic-bezier(.2,.75,.2,1), background .35s ease, color .35s ease;
}

.contact-button:hover { transform: translateY(-6px); background: var(--paper); color: var(--ink); }
.contact-button span { font-size: clamp(1.35rem, 2.4vw, 2.7rem); font-weight: 200; line-height: .95; letter-spacing: -.04em; }
.contact-button b { width: 48px; height: 48px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 1rem; font-weight: 200; transition: transform .4s ease; }
.contact-button:hover b { transform: rotate(45deg); }

.footer-contact-row {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.footer-contact-row a {
  width: fit-content;
  font-size: clamp(1.15rem, 2.1vw, 2.25rem);
  font-weight: 200;
  letter-spacing: -.03em;
}

.footer-contact-row a span { display: inline-block; margin-left: 12px; font-size: .9rem; }
.footer-contact-row p { margin: 0; justify-self: end; color: rgba(255,255,255,.46); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; }

.contact footer, .contact-band footer {
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: rgba(245, 243, 237, .48);
  font-size: .58rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  overflow: hidden;
}

.footer-supermark {
  margin: 0 0 -.08em -.035em;
  color: var(--paper);
  font-size: clamp(5.4rem, 14.4vw, 14rem);
  font-weight: 800;
  line-height: .8;
  letter-spacing: -.085em;
}

.contact-band footer > div { padding-bottom: 4px; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; }

/* Internal pages */
.header-dark { color: var(--paper); background: rgba(5,5,5,.72); border-color: rgba(255,255,255,.15); }
.header-dark .header-cta { background: var(--paper); color: var(--ink); }
.page-hero {
  min-height: 88vh;
  padding: 180px max(5.5vw, 28px) 90px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 70px;
  align-items: end;
  background: var(--paper);
}
.page-hero-dark { background: var(--ink); color: var(--paper); }
.page-index { align-self: start; color: var(--gold); font-size: .62rem; letter-spacing: .16em; }
.page-hero h1 { margin: 0; font-size: clamp(4.2rem, 8.2vw, 9.4rem); font-weight: 200; line-height: .86; letter-spacing: -.07em; }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-intro { width: min(570px, 100%); margin: 52px 0 0 auto; font-size: clamp(1rem,1.35vw,1.2rem); font-weight: 200; line-height: 1.75; color: rgba(23,22,18,.64); }
.page-hero-dark .page-intro { color: rgba(245,243,237,.58); }
.archive-section { padding: 100px max(5.5vw, 28px) 140px; background: var(--paper); }
.archive-head { display: grid; grid-template-columns: 1fr 1fr; margin-left: 25%; }
.archive-head > p:last-child { margin: 0; max-width: 430px; color: rgba(23,22,18,.6); line-height: 1.7; font-weight: 200; }
.archive-section .portfolio-empty { margin-top: 70px; }
.archive-section .portfolio-grid { margin-top: 70px; }
.visual-empty { background: var(--ink); color: var(--paper); }
.visual-empty::before { border-color: rgba(245,243,237,.15); }
.solution-grid, .capability-cards { display: grid; grid-template-columns: repeat(2,1fr); background: var(--ink); color: var(--paper); border-top: 1px solid rgba(245,243,237,.15); }
.solution-grid article, .capability-cards article { min-height: 390px; padding: 48px max(5.5vw,28px); border-right: 1px solid rgba(245,243,237,.15); border-bottom: 1px solid rgba(245,243,237,.15); }
.solution-grid article:nth-child(even), .capability-cards article:nth-child(even) { border-right: 0; }
.solution-grid span, .capability-cards span, .principles span { color: var(--gold); font-size: .64rem; letter-spacing: .16em; }
.solution-grid h2, .capability-cards h2 { margin: 125px 0 20px; font-size: clamp(2.3rem,4vw,4.8rem); font-weight: 200; letter-spacing: -.05em; }
.solution-grid p, .capability-cards p { max-width: 500px; color: rgba(245,243,237,.56); line-height: 1.7; font-weight: 200; }
.capability-cards { background: var(--bone); color: var(--ink); }
.capability-cards article { border-color: rgba(23,22,18,.14); }
.capability-cards p { color: rgba(23,22,18,.62); }
.about-story { padding: 120px max(5.5vw,28px); display: grid; grid-template-columns: 1fr 3fr; gap: 70px; background: var(--bone); }
.about-story h2 { max-width: 1000px; margin: 0; font-size: clamp(2.9rem,5.3vw,6.2rem); font-weight: 200; line-height: .98; letter-spacing: -.055em; }
.about-story div p { max-width: 650px; margin: 48px 0 0 auto; color: rgba(23,22,18,.63); line-height: 1.8; font-weight: 200; }
.principles { padding: 0 max(5.5vw,28px) 120px; display: grid; grid-template-columns: repeat(3,1fr); background: var(--bone); }
.principles article { min-height: 280px; padding: 28px 28px 28px 0; border-top: 1px solid rgba(23,22,18,.18); border-right: 1px solid rgba(23,22,18,.18); }
.principles article:not(:first-child) { padding-left: 28px; }
.principles article:last-child { border-right: 0; }
.principles h3 { margin: 90px 0 14px; font-size: 1.35rem; font-weight: 400; }
.principles p { color: rgba(23,22,18,.6); line-height: 1.65; font-weight: 200; }
.contact-page { padding: 110px max(5.5vw,28px) 140px; display: grid; grid-template-columns: 1fr 2fr; gap: 80px; background: var(--paper); }
.contact-page > div a { display: inline-block; margin-top: 60px; font-size: clamp(1.2rem,2vw,2rem); border-bottom: 1px solid; }
.contact-page form { display: grid; gap: 34px; }
.contact-page label { display: grid; gap: 12px; color: rgba(23,22,18,.55); font-size: .63rem; letter-spacing: .15em; text-transform: uppercase; }
.contact-page input, .contact-page textarea { padding: 10px 0 16px; border: 0; border-bottom: 1px solid rgba(23,22,18,.23); border-radius: 0; outline: 0; background: transparent; color: var(--ink); font-size: 1.25rem; font-weight: 200; letter-spacing: -.02em; text-transform: none; resize: vertical; }
.contact-page input:focus, .contact-page textarea:focus { border-color: var(--gold); }
.contact-page button { width: fit-content; padding: 17px 24px; border: 0; border-radius: 100px; background: var(--ink); color: var(--paper); cursor: pointer; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-page form > p { margin: -18px 0 0; color: rgba(23,22,18,.45); font-size: .72rem; }
.legal { padding: 100px max(24vw,28px) 140px; background: var(--paper); }
.legal h2 { margin: 50px 0 15px; font-weight: 400; }.legal p { color: rgba(23,22,18,.62); line-height: 1.8; font-weight: 200; }

/* Published project */
.project-detail { --project-accent: #696969 !important; background: var(--paper); }
.project-detail-hero {
  min-height: 88vh;
  padding: 170px max(5.5vw,28px) 80px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 70px;
  align-items: end;
}
.project-detail-index { align-self: start; color: var(--project-accent); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; }
.project-detail-hero > div:last-child > p:first-child { margin: 0 0 25px; color: rgba(23,22,18,.52); font-size: .62rem; letter-spacing: .13em; text-transform: uppercase; }
.project-detail-hero h1 { max-width: 1150px; margin: 0; font-size: clamp(4.5rem,9.2vw,11rem); font-weight: 200; line-height: .82; letter-spacing: -.075em; }
.project-lead { width: min(630px,100%); margin: 56px 0 0 auto; color: rgba(23,22,18,.62); font-size: clamp(1rem,1.4vw,1.3rem); font-weight: 200; line-height: 1.75; }
.project-hero-media { width: 100%; max-height: 110vh; overflow: hidden; background: var(--ink); }
.project-hero-media img, .project-hero-media video { width: 100%; max-height: 110vh; display: block; object-fit: cover; }
.project-facts { padding: 95px max(5.5vw,28px) 110px; display: grid; grid-template-columns: 1fr 1fr; gap: 90px; background: var(--bone); }
.project-facts > div:first-child { border-top: 1px solid rgba(23,22,18,.17); }
.project-facts p { margin: 0; padding: 18px 0; display: grid; grid-template-columns: 1fr 2fr; border-bottom: 1px solid rgba(23,22,18,.17); }
.project-facts span { color: rgba(23,22,18,.48); font-size: .58rem; letter-spacing: .13em; text-transform: uppercase; }
.project-facts b { font-size: .85rem; font-weight: 400; }
.project-facts > div:last-child > span { display: block; margin-bottom: 23px; }
.project-facts ul { margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.project-facts li { padding: 9px 12px; border: 1px solid rgba(23,22,18,.16); border-radius: 100px; font-size: .6rem; letter-spacing: .06em; text-transform: uppercase; }
.project-story { padding: 125px max(5.5vw,28px); background: var(--ink); color: var(--paper); }
.project-story article { padding: 55px 0 65px; display: grid; grid-template-columns: 1fr 3fr; gap: 70px; border-top: 1px solid rgba(245,243,237,.16); }
.project-story article > span { color: var(--project-accent); font-size: .61rem; letter-spacing: .14em; }
.project-story h2 { margin: 0; font-size: clamp(2.8rem,5vw,6rem); font-weight: 200; letter-spacing: -.055em; text-transform: capitalize; }
.project-story p { width: min(650px,100%); margin: 35px 0 0 auto; color: rgba(245,243,237,.62); font-size: 1rem; font-weight: 200; line-height: 1.9; white-space: pre-line; }
.project-gallery { padding: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; background: var(--paper); }
.project-gallery figure { margin: 0; min-width: 0; }
.project-gallery figure.gallery-wide { grid-column: 1 / -1; }
.project-gallery img, .project-gallery video { width: 100%; max-height: 100vh; display: block; object-fit: cover; background: #dddddd; }
.project-gallery figcaption { padding: 11px 0 18px; color: rgba(23,22,18,.52); font-size: .64rem; line-height: 1.6; }
.project-next { min-height: 80vh; padding: 110px max(5.5vw,28px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; background: var(--bone); }
.project-next > p { margin: 0 0 50px; color: var(--project-accent); font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; }
.project-next h2 { margin: 0; font-size: clamp(4rem,8vw,9rem); font-weight: 200; line-height: .86; letter-spacing: -.07em; }
.project-next a { margin-top: 45px; padding-bottom: 8px; border-bottom: 1px solid rgba(23,22,18,.3); font-size: .63rem; letter-spacing: .13em; text-transform: uppercase; }
.project-next a + a { margin-top: 18px; }

/* Reversible in-view motion */
.motion-ready .scroll-reveal {
  --reveal-y: 42px;
  opacity: 0;
  clip-path: inset(0 0 24% 0);
  transform: translate3d(0, var(--reveal-y), 0);
  transition:
    opacity .68s ease var(--reveal-delay, 0ms),
    transform .92s cubic-bezier(.2,.72,.2,1) var(--reveal-delay, 0ms),
    clip-path .92s cubic-bezier(.2,.72,.2,1) var(--reveal-delay, 0ms);
  will-change: opacity, transform, clip-path;
}

.motion-ready .scroll-reveal[data-reveal-side="top"] {
  --reveal-y: -34px;
  clip-path: inset(24% 0 0 0);
}

.motion-ready .scroll-reveal.is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, 0, 0);
}

.motion-ready .portfolio-card.scroll-reveal.is-visible:hover { transform: translateY(-7px); }
.portfolio-card:has(video[data-focus-video]) .portfolio-media::after {
  content: "PLAYING";
  position: absolute;
  z-index: 3;
  left: 16px;
  bottom: 16px;
  padding: 7px 9px;
  border-radius: 100px;
  background: rgba(255,255,255,.84);
  color: var(--ink);
  font-size: .47rem;
  letter-spacing: .12em;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .25s ease, transform .25s ease;
  backdrop-filter: blur(8px);
}
.portfolio-card.media-is-playing .portfolio-media::after { opacity: 1; transform: translateY(0); }

@keyframes page-old { to { opacity: 0; filter: blur(5px); } }
@keyframes page-new { from { opacity: 0; filter: blur(5px); transform: translateY(12px); } }
@keyframes page-curtain-enter { from { transform: scaleY(1); } to { transform: scaleY(0); } }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(168, 121, 44, .45); }
  80%, 100% { box-shadow: 0 0 0 8px rgba(168, 121, 44, 0); }
}

@media (max-width: 760px) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    height: 52px;
    padding-left: 17px;
    grid-template-columns: 1fr auto;
  }
  .desktop-nav, .header-cta { display: none; }
  .site-header > .wordmark, .menu-button { position: relative; z-index: 53; }
  .menu-open .site-header { color: var(--paper); border-color: transparent; background: transparent; box-shadow: none; backdrop-filter: none; }
  .menu-button { position: relative; width: 38px; height: 38px; display: grid; place-items: center; justify-self: end; border: 0; border-radius: 50%; background: var(--ink); color: var(--paper); cursor: pointer; }
  .header-dark .menu-button, .menu-open .menu-button { background: var(--paper); color: var(--ink); }
  .menu-button i { position: absolute; width: 16px; height: 1px; display: block; background: currentColor; transition: transform .42s cubic-bezier(.2,.75,.2,1), top .42s ease; }
  .menu-button i:first-child { top: 16px; }
  .menu-button i:nth-child(2) { top: 21px; }
  .menu-button.is-open i:first-child { top: 19px; transform: rotate(45deg); }
  .menu-button.is-open i:nth-child(2) { top: 19px; transform: rotate(-45deg); }
  .mobile-nav {
    position: fixed;
    z-index: 51;
    top: -12px;
    left: -12px;
    width: calc(100% + 24px);
    height: 100vh;
    min-height: 620px;
    padding: 96px 28px 25px;
    display: flex;
    flex-direction: column;
    background: var(--ink);
    color: var(--paper);
    clip-path: circle(0 at calc(100% - 31px) 38px);
    visibility: hidden;
    pointer-events: none;
    transition: clip-path .82s cubic-bezier(.76,0,.24,1), visibility 0s linear .82s;
  }
  .mobile-nav.is-open { clip-path: circle(150% at calc(100% - 31px) 38px); visibility: visible; pointer-events: auto; transition-delay: 0s; }
  .mobile-nav-top { padding-bottom: 20px; display: flex; justify-content: space-between; gap: 30px; border-bottom: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.46); }
  .mobile-nav-top p { margin: 0; font-size: .5rem; line-height: 1.55; letter-spacing: .13em; text-transform: uppercase; }
  .mobile-nav-top p:last-child { text-align: right; }
  .mobile-nav-links { margin-top: auto; }
  .mobile-nav-links a { padding: 12px 0 10px; display: grid; grid-template-columns: 28px 1fr auto; align-items: baseline; gap: 8px; border-top: 1px solid rgba(255,255,255,.13); font-size: clamp(2.8rem, 13vw, 4.6rem); font-weight: 200; line-height: .9; letter-spacing: -.065em; opacity: 0; transform: translateY(24px); transition: opacity .48s ease var(--menu-delay), transform .65s cubic-bezier(.2,.75,.2,1) var(--menu-delay); }
  .mobile-nav.is-open .mobile-nav-links a { opacity: 1; transform: translateY(0); }
  .mobile-nav-links a span { color: rgba(255,255,255,.38); font-size: .48rem; letter-spacing: .1em; }
  .mobile-nav-links a b { font-size: .75rem; font-weight: 200; }
  .mobile-nav-foot { padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid rgba(255,255,255,.18); }
  .mobile-nav-foot a { font-size: .57rem; letter-spacing: .1em; text-transform: uppercase; }
  .mobile-nav-foot a:first-child { padding: 11px 13px; display: flex; align-items: center; gap: 14px; border-radius: 100px; background: var(--paper); color: var(--ink); }
  .hero-logo-scroll { height: 240vh; }
  .hero-logo-sticky { min-height: 560px; }
  .hero-logo-fallback { width: 86vw; }
  .hero-logo-kicker { top: 96px; left: 24px; max-width: 220px; line-height: 1.55; }
  .hero-logo-subtitle { top: calc(50% + 72px); width: 88vw; font-size: .5rem; line-height: 1.55; letter-spacing: .17em; }
  .hero-cloud { width: 175px; }
  .cloud-one { top: 24%; left: -17%; }
  .cloud-two { bottom: 23%; left: -4%; width: 135px; }
  .cloud-three { top: 27%; right: -20%; }
  .cloud-four { right: -2%; bottom: 21%; width: 145px; }
  .hero-logo-scroll-note { left: 24px; bottom: 26px; }
  .hero-logo-sticky .scroll-index { right: 20px; bottom: 25px; }
  .hero-scroll { height: 300vh; }
  .hero-sticky { min-height: 560px; }
  .hero-video { object-position: 64% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(229, 226, 218, .06), rgba(229, 226, 218, .18) 43%, rgba(229, 226, 218, .78) 78%, rgba(229, 226, 218, .9)); }
  .hero-copy {
    left: 24px;
    top: auto;
    bottom: 82px;
    width: calc(100% - 48px);
    transform: none;
  }
  .hero-copy-one { transform: translateY(calc(var(--hero-progress) * -45px)); }
  .hero-copy-two { transform: translateY(calc((1 - var(--hero-progress)) * 35px)); }
  .hero-copy h1, .hero-copy h2 { font-size: clamp(3.25rem, 15vw, 5.4rem); line-height: .91; }
  .eyebrow { margin-bottom: 19px; font-size: .56rem; }
  .hero-note, .text-link { margin-top: 26px; }
  .scroll-index { right: 20px; bottom: 22px; }
  .manifesto { min-height: auto; padding: 88px 24px 96px; grid-template-columns: 1fr; gap: 55px; }
  .manifesto-copy h2 { font-size: 2.8rem; line-height: 1.02; }
  .manifesto-copy > p { margin-top: 38px; }
  .capabilities { padding: 88px 24px 90px; }
  .section-heading { grid-template-columns: 1fr; gap: 42px; }
  .section-heading h2 { font-size: 3.35rem; }
  .capability-list { margin-top: 76px; }
  .capability-row { min-height: auto; padding: 28px 0 34px; grid-template-columns: 42px 1fr; gap: 14px 10px; }
  .capability-row h3 { font-size: 2.55rem; }
  .capability-row > p, .capability-row ul { grid-column: 2; }
  .capability-row ul { margin-top: 8px; }
  .work { padding: 88px 24px 95px; }
  .work-visuals { padding-top: 8px; }
  .work-shelf-heading { grid-template-columns: 1fr; gap: 34px; }
  .work-shelf-heading h2 { margin-top: 15px; font-size: 3.75rem; }
  .work-shelf-heading > div:last-child { padding-bottom: 0; }
  .work-shelf .portfolio-grid {
    width: calc(100% + 24px);
    margin-top: 52px;
    padding-right: 24px;
    grid-auto-columns: minmax(0, 86vw);
    gap: 14px;
  }
  .work-heading { grid-template-columns: 1fr; gap: 48px; }
  .work-heading > div { grid-template-columns: 1fr; gap: 28px; }
  .work-heading h2 { font-size: 3.8rem; }
  .portfolio-grid { margin-top: 58px; grid-template-columns: 1fr; gap: 55px; }
  .portfolio-open { top: 12px; right: 12px; width: 40px; height: 40px; opacity: 1; transform: none; }
  .portfolio-tags { right: 10px; bottom: 10px; left: 10px; }
  .portfolio-meta h3 { font-size: 2.15rem; }
  .portfolio-summary { font-size: .78rem; }
  .portfolio-empty { min-height: 390px; margin-top: 58px; }
  .portfolio-empty::before { width: 70vw; height: 70vw; }
  .portfolio-empty > span { font-size: 2.9rem; }
  .process { padding: 88px 24px 90px; }
  .process-intro { grid-template-columns: 1fr; gap: 46px; }
  .process-intro h2 { font-size: 2.95rem; }
  .process-steps { margin: 72px 0 0; grid-template-columns: 1fr; }
  .process-steps article, .process-steps article:not(:first-child) { min-height: auto; padding: 28px 0 36px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .18); }
  .process-steps h3 { margin-top: 48px; }
  .contact, .contact-band { min-height: 850px; padding: 58px 24px 22px; }
  .contact-band-top { padding-bottom: 22px; }
  .contact-band-top > p:last-child { display: none; }
  .contact-main { margin-bottom: 60px; grid-template-columns: 1fr; gap: 42px; }
  .contact-main h2 { margin: 68px 0 28px; font-size: 3.9rem; }
  .contact-main > div > p { font-size: .78rem; }
  .contact-button { min-height: 142px; padding: 22px; border-radius: 22px; }
  .contact-button span { font-size: 1.75rem; }
  .contact-button b { width: 42px; height: 42px; }
  .footer-contact-row { grid-template-columns: 1fr; gap: 20px; }
  .footer-contact-row p { justify-self: start; }
  .contact-band footer { padding-top: 14px; flex-direction: column; align-items: stretch; gap: 22px; }
  .footer-supermark { font-size: 22vw; }
  .contact-band footer > div { justify-content: flex-start; }
  .contact-band footer > div a:nth-child(-n+2) { display: none; }
  .page-hero { min-height: 760px; padding: 140px 24px 75px; grid-template-columns: 1fr; gap: 40px; align-items: end; }
  .page-index { align-self: start; }.page-hero h1 { font-size: 4.15rem; }.page-intro { margin-top: 38px; }
  .archive-section { padding: 75px 24px 95px; }.archive-head { margin: 0; grid-template-columns: 1fr; gap: 32px; }
  .solution-grid, .capability-cards { grid-template-columns: 1fr; }.solution-grid article, .capability-cards article { min-height: 320px; padding: 34px 24px; border-right: 0; }
  .solution-grid h2, .capability-cards h2 { margin-top: 90px; }
  .about-story { padding: 90px 24px; grid-template-columns: 1fr; gap: 48px; }.about-story h2 { font-size: 2.85rem; }.about-story div p { margin-top: 34px; }
  .principles { padding: 0 24px 90px; grid-template-columns: 1fr; }.principles article, .principles article:not(:first-child) { min-height: auto; padding: 28px 0 36px; border-right: 0; }.principles h3 { margin-top: 55px; }
  .contact-page { padding: 80px 24px 100px; grid-template-columns: 1fr; }.contact-page > div a { margin-top: 30px; }
  .project-detail-hero { min-height: 760px; padding: 140px 24px 70px; grid-template-columns: 1fr; gap: 42px; }
  .project-detail-hero h1 { font-size: 4.4rem; line-height: .87; }
  .project-lead { margin-top: 38px; }
  .project-hero-media img, .project-hero-media video { min-height: 58vh; object-fit: cover; }
  .project-facts { padding: 75px 24px 85px; grid-template-columns: 1fr; gap: 60px; }
  .project-story { padding: 80px 24px; }
  .project-story article { padding: 38px 0 48px; grid-template-columns: 34px 1fr; gap: 10px; }
  .project-story h2 { font-size: 2.75rem; }
  .project-story p { margin-top: 28px; font-size: .9rem; }
  .project-gallery { padding: 12px; grid-template-columns: 1fr; gap: 12px; }
  .project-gallery figure.gallery-wide { grid-column: auto; }
  .project-next { min-height: 680px; padding: 85px 24px; }
  .project-next h2 { font-size: 4.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-note::before { animation: none; }
  .hero-logo-scroll { height: 100vh; }
  .hero-logo-canvas { display: none; }
  .hero-logo-ready .hero-logo-fallback { opacity: 1; }
  .hero-logo-darken { opacity: 0; }
  .hero-logo-scroll-note, .hero-logo-sticky .scroll-index { display: none; }
  .portfolio-card, .portfolio-media > img, .portfolio-media > video { transition: none; }
  .page-transition-layer { display: none; }
  .motion-ready .scroll-reveal { opacity: 1; clip-path: none; transform: none; transition: none; }
  .hero-clouds { display: none; }
}
