@font-face {
  font-family: Manrope;
  src: url("manrope.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #111111;
  --paper: #f7f7f4;
  --white: #ffffff;
  --green: #8dff5b;
  --green-soft: #dfffd2;
  --line: #c9c9c4;
  --muted: #666661;
  --blue: #315cff;
  --coral: #ff655f;
  --yellow: #ffda45;
  --max: 1440px;
  --gutter: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

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

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

canvas {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
  color: var(--ink);
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.on-light {
  border-color: rgba(17, 17, 17, 0.14);
  background: rgba(247, 247, 244, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  min-height: 76px;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 9px;
  font-size: 20px;
  font-weight: 650;
}

.brand img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

.nav-list {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 42px;
  list-style: none;
}

.nav-link {
  position: relative;
  padding-block: 8px;
  font-size: 15px;
  font-weight: 550;
}

.nav-contact-mobile {
  display: none;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.header-actions {
  display: flex;
  justify-content: flex-end;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 15px;
  font-weight: 650;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--green);
  color: var(--ink);
  transform: translateY(-2px);
}

.button--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button--light:hover {
  border-color: var(--green);
  background: var(--green);
}

.button--outline {
  background: transparent;
  color: var(--ink);
}

.button--outline:hover {
  background: var(--ink);
  color: var(--white);
}

.button__arrow {
  display: inline-grid;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  place-items: center;
  background: var(--green);
  color: var(--ink);
  line-height: 1;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: 90svh;
  overflow: hidden;
  align-items: center;
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
  background: var(--green-soft);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero::after {
  position: absolute;
  inset: 0;
  background: rgba(223, 255, 210, 0.12);
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 104px;
  padding-bottom: 38px;
  text-align: center;
}

.availability {
  display: inline-flex;
  margin-bottom: 16px;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}

.availability-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(141, 255, 91, 0.22);
}

.hero-brand {
  display: flex;
  margin-bottom: 6px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
}

.hero-brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.hero h1 {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 80px;
  font-weight: 480;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-line {
  display: flex;
  margin-top: 12px;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.hero-pill {
  display: inline-flex;
  min-height: 54px;
  padding: 10px 26px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  align-items: center;
  background: var(--white);
  box-shadow: 0 10px 25px rgba(17, 17, 17, 0.08);
  font-size: 26px;
  font-weight: 600;
}

.hero-pill--dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.hero-pill b {
  margin-right: 10px;
  color: var(--green);
  font-size: 32px;
}

.hero-copy {
  max-width: 670px;
  margin: 20px auto 18px;
  color: #30302e;
  font-size: 17px;
  font-weight: 550;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.proof-inner {
  display: grid;
  min-height: 126px;
  grid-template-columns: 1fr 3fr;
  align-items: center;
  gap: 40px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.proof-item {
  padding: 18px 22px;
  border-left: 1px solid var(--line);
  font-size: 18px;
  font-weight: 650;
  text-align: center;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 116px 0;
}

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

.section--green {
  background: var(--green);
}

.section-kicker {
  margin: 0 0 22px;
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-title {
  max-width: 1080px;
  margin: 0;
  font-size: 76px;
  font-weight: 480;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-title em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.section-intro {
  max-width: 620px;
  margin: 28px 0 0 auto;
  color: var(--muted);
  font-size: 19px;
}

.section--dark .section-intro,
.section--dark .eyebrow {
  color: #a8a8a2;
}

.capabilities-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(500px, 1.22fr);
  gap: 110px;
}

.capabilities-intro {
  position: sticky;
  top: 120px;
  height: max-content;
}

.capabilities-intro .section-title {
  font-size: 60px;
}

.capabilities-intro p {
  max-width: 440px;
  margin: 24px 0 32px;
  color: #a8a8a2;
  font-size: 17px;
}

.service-row {
  padding: 42px 0 46px;
  border-top: 1px solid #3e3e3b;
}

.service-row:last-child {
  border-bottom: 1px solid #3e3e3b;
}

.service-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.service-head h3 {
  margin: 0;
  font-size: 48px;
  font-weight: 500;
}

.service-no {
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.service-tags {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 9px;
}

.tag {
  display: inline-flex;
  min-height: 34px;
  padding: 6px 13px;
  border: 1px solid #494944;
  border-radius: 999px;
  align-items: center;
  color: #d1d1cc;
  font-size: 13px;
  font-weight: 600;
}

.tag::before {
  margin-right: 7px;
  color: var(--green);
  content: "*";
}

.projects-head {
  display: flex;
  margin-bottom: 64px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 24px;
}

.project-card {
  display: block;
}

.project-card:nth-child(even) {
  margin-top: 92px;
}

.project-visual {
  position: relative;
  display: grid;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 6px;
  place-items: center;
  transition: transform 240ms ease;
}

.project-card:hover .project-visual {
  transform: translateY(-6px);
}

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

.project-label {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.project-meta h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 560;
}

.project-meta p {
  max-width: 240px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.art-ops {
  background: #1a1a1a;
  color: var(--white);
}

.mock-window {
  width: 78%;
  min-height: 66%;
  overflow: hidden;
  border: 1px solid #44443f;
  border-radius: 5px;
  background: #f8f8f3;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  color: var(--ink);
  transform: rotate(-2deg);
}

.mock-bar {
  display: flex;
  height: 38px;
  padding: 0 14px;
  border-bottom: 1px solid #d7d7d2;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.mock-dots {
  display: flex;
  gap: 5px;
}

.mock-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b6b6b1;
}

.ops-body {
  display: grid;
  min-height: 295px;
  grid-template-columns: 94px 1fr;
}

.ops-side {
  padding: 22px 13px;
  border-right: 1px solid #d7d7d2;
  background: #ededE8;
}

.ops-side span {
  display: block;
  width: 100%;
  height: 7px;
  margin-bottom: 17px;
  background: #c8c8c2;
}

.ops-side span:first-child {
  background: var(--blue);
}

.ops-main {
  padding: 24px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.metric {
  min-height: 80px;
  padding: 13px;
  border: 1px solid #d1d1ca;
  border-radius: 4px;
}

.metric b {
  display: block;
  margin-top: 12px;
  font-size: 23px;
}

.chart {
  display: flex;
  height: 115px;
  margin-top: 20px;
  padding: 12px 12px 0;
  border: 1px solid #d1d1ca;
  border-radius: 4px;
  align-items: flex-end;
  gap: 7px;
}

.chart i {
  flex: 1;
  height: var(--h);
  background: var(--green);
}

.chart i:nth-child(3n) {
  background: var(--blue);
}

.art-mobile {
  background: var(--coral);
}

.phone {
  position: relative;
  width: 242px;
  height: 408px;
  padding: 12px;
  border: 4px solid var(--ink);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: 16px 18px 0 rgba(17, 17, 17, 0.22);
  transform: rotate(5deg);
}

.phone::before {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 50%;
  width: 64px;
  height: 15px;
  border-radius: 99px;
  background: var(--ink);
  content: "";
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  padding: 42px 16px 16px;
  border-radius: 22px;
  background: var(--green-soft);
}

.phone-date {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.phone-title {
  max-width: 170px;
  margin: 8px 0 35px;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.05;
}

.phone-task {
  display: flex;
  min-height: 54px;
  margin-bottom: 8px;
  padding: 10px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 5px;
  align-items: center;
  gap: 9px;
  background: var(--white);
  font-size: 11px;
  font-weight: 650;
}

.phone-task i {
  width: 19px;
  height: 19px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.art-route {
  background: var(--blue);
}

.map-board {
  position: relative;
  width: 84%;
  height: 68%;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 5px;
  background: var(--yellow);
  box-shadow: 14px 14px 0 rgba(17, 17, 17, 0.25);
}

.map-line {
  position: absolute;
  width: 140%;
  height: 2px;
  background: var(--ink);
  transform-origin: left center;
}

.map-line--1 {
  top: 28%;
  left: -10%;
  transform: rotate(18deg);
}

.map-line--2 {
  top: 64%;
  left: -6%;
  transform: rotate(-12deg);
}

.map-line--3 {
  top: 7%;
  left: 48%;
  transform: rotate(86deg);
}

.map-stop {
  position: absolute;
  display: grid;
  width: 36px;
  height: 36px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  place-items: center;
  background: var(--paper);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.map-stop--a { top: 20%; left: 19%; }
.map-stop--b { top: 58%; left: 50%; background: var(--green); }
.map-stop--c { right: 14%; bottom: 15%; }

.route-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 210px;
  padding: 16px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--paper);
}

.route-panel b {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.route-panel span {
  font-size: 11px;
}

.art-library {
  background: var(--paper);
}

.library-stack {
  position: relative;
  width: 76%;
  height: 68%;
}

.poster {
  position: absolute;
  display: flex;
  width: 46%;
  height: 74%;
  padding: 18px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 8px 10px 0 rgba(17, 17, 17, 0.12);
}

.poster small {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.poster b {
  font-size: 29px;
  font-weight: 600;
  line-height: 0.98;
}

.poster--one {
  top: 4%;
  left: 5%;
  background: var(--green);
  transform: rotate(-8deg);
}

.poster--two {
  top: 17%;
  left: 31%;
  background: var(--blue);
  color: var(--white);
  transform: rotate(3deg);
}

.poster--three {
  top: 4%;
  right: 0;
  background: var(--coral);
  transform: rotate(9deg);
}

.process-grid {
  display: grid;
  margin-top: 72px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(17, 17, 17, 0.45);
  border-bottom: 1px solid rgba(17, 17, 17, 0.45);
}

.process-step {
  min-height: 310px;
  padding: 28px 24px 34px;
  border-right: 1px solid rgba(17, 17, 17, 0.45);
}

.process-step:last-child {
  border-right: 0;
}

.process-no {
  display: flex;
  margin-bottom: 96px;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 750;
}

.process-step h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 650;
}

.process-step p {
  margin: 0;
  font-size: 15px;
}

.story-band {
  padding: 36px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.ticker {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  animation: ticker 28s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-size: 42px;
  font-weight: 530;
  white-space: nowrap;
}

.ticker span::after {
  color: var(--green);
  content: "*";
}

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

.site-footer {
  position: relative;
  padding: 92px 0 28px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
}

.footer-title {
  max-width: 950px;
  margin: 0;
  font-size: 76px;
  font-weight: 480;
  line-height: 1;
}

.footer-title em {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.footer-bottom {
  display: grid;
  margin-top: 120px;
  padding-top: 26px;
  border-top: 1px solid #3d3d39;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: #aaa9a3;
  font-size: 13px;
}

.footer-bottom .brand {
  color: var(--white);
}

.footer-bottom a:last-child {
  justify-self: end;
}

.page-hero {
  padding: 176px 0 96px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.page-hero--green {
  background: var(--green-soft);
}

.page-hero h1 {
  max-width: 1120px;
  margin: 0;
  font-size: 92px;
  font-weight: 480;
  line-height: 0.98;
}

.page-hero h1 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.page-hero-bottom {
  display: grid;
  margin-top: 72px;
  grid-template-columns: 1fr minmax(320px, 0.6fr);
  align-items: end;
  gap: 50px;
}

.page-hero-bottom p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-chip {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 13px;
  font-weight: 650;
}

.work-page .projects-grid {
  row-gap: 70px;
}

.work-page .project-card:nth-child(even) {
  margin-top: 0;
}

.work-page .project-card:nth-child(3n + 1) {
  grid-column: span 2;
}

.work-page .project-card:nth-child(3n + 1) .project-visual {
  min-height: 650px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.story-card {
  position: relative;
  min-height: 520px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 6px;
}

.story-card:nth-child(1),
.story-card:nth-child(4) {
  grid-column: span 7;
}

.story-card:nth-child(2),
.story-card:nth-child(3) {
  grid-column: span 5;
}

.story-card--green { background: var(--green); }
.story-card--blue { background: var(--blue); color: var(--white); }
.story-card--paper { background: var(--white); }
.story-card--coral { background: var(--coral); }

.story-card .project-label {
  color: inherit;
  opacity: 0.72;
}

.story-card h2 {
  position: relative;
  z-index: 2;
  max-width: 490px;
  margin: 0;
  font-size: 50px;
  font-weight: 530;
  line-height: 1.02;
}

.story-card p {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  max-width: 270px;
  margin: 0;
  font-size: 15px;
}

.story-visual {
  position: absolute;
  right: -40px;
  bottom: -58px;
  width: 68%;
  aspect-ratio: 1.5;
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: rotate(-12deg);
}

.story-visual::before,
.story-visual::after {
  position: absolute;
  inset: 16%;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.story-visual::after {
  inset: 33%;
}

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

.job-row {
  display: grid;
  min-height: 155px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 90px minmax(280px, 1fr) 1fr auto;
  align-items: center;
  gap: 24px;
}

.job-number {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.job-row h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 560;
}

.job-meta {
  color: var(--muted);
  font-size: 14px;
}

.job-apply {
  display: inline-grid;
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  place-items: center;
  font-size: 21px;
  transition: background-color 160ms ease, transform 160ms ease;
}

.job-row:hover .job-apply {
  background: var(--green);
  transform: rotate(45deg);
}

.values-grid {
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #3e3e3b;
}

.value {
  min-height: 260px;
  padding: 28px 24px;
  border-right: 1px solid #3e3e3b;
}

.value:last-child { border-right: 0; }
.value b { color: var(--green); font-size: 14px; }
.value h3 { margin: 78px 0 12px; font-size: 27px; font-weight: 600; }
.value p { margin: 0; color: #aaa9a3; font-size: 15px; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(540px, 1.3fr);
  gap: 110px;
}

.contact-aside {
  position: sticky;
  top: 116px;
  height: max-content;
}

.contact-aside h2 {
  max-width: 440px;
  margin: 0 0 30px;
  font-size: 48px;
  font-weight: 520;
  line-height: 1.04;
}

.contact-email {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid;
  font-size: 18px;
  font-weight: 650;
}

.contact-note {
  max-width: 400px;
  margin: 22px 0 0;
  color: var(--muted);
}

.brief-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

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

.field label {
  font-size: 13px;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid #bdbdb7;
  border-radius: 4px;
  outline: none;
  background: var(--white);
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(141, 255, 91, 0.55);
}

.form-actions {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.form-note {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.form-status {
  min-height: 22px;
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1024px) {
  :root { --gutter: 24px; }

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

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    padding: 28px var(--gutter) 36px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .site-nav.is-open { display: block; }

  .nav-list {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .nav-link { font-size: 28px; }
  .nav-contact-mobile { display: list-item; }
  .header-actions { display: none; }
  .menu-button { display: block; }

  .hero h1 { font-size: 68px; }
  .hero-brand { font-size: 54px; }
  .hero-brand img { width: 54px; height: 54px; }
  .hero-pill { min-height: 54px; font-size: 24px; }

  .section-title,
  .footer-title { font-size: 60px; }

  .capabilities-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .capabilities-intro,
  .contact-aside { position: static; }

  .project-visual { min-height: 420px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n + 2) { border-bottom: 1px solid rgba(17, 17, 17, 0.45); }
  .page-hero h1 { font-size: 72px; }
  .work-page .project-card:nth-child(3n + 1) .project-visual { min-height: 520px; }
}

@media (max-width: 720px) {
  :root { --gutter: 18px; }

  .header-inner { min-height: 68px; }
  .site-nav { top: 68px; }
  .brand { font-size: 18px; }

  .hero {
    min-height: 91svh;
    align-items: flex-start;
  }

  .hero-inner {
    padding-top: 125px;
    padding-bottom: 54px;
  }

  .availability { margin-bottom: 28px; font-size: 13px; }
  .hero-brand { gap: 9px; font-size: 38px; }
  .hero-brand img { width: 38px; height: 38px; }
  .hero h1 { font-size: 44px; line-height: 1.02; }
  .hero-line { margin-top: 14px; flex-wrap: wrap; gap: 10px; }
  .hero-pill { min-height: 44px; padding: 8px 16px; font-size: 18px; }
  .hero-pill b { font-size: 21px; }
  .hero-copy { margin-top: 24px; font-size: 15px; }
  .button { min-height: 46px; }

  .proof-inner {
    min-height: auto;
    padding-block: 28px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .proof-inner .eyebrow { margin: 0; }
  .proof-list { grid-template-columns: repeat(2, 1fr); }
  .proof-item { padding: 14px 8px; border-bottom: 1px solid var(--line); font-size: 15px; }

  .section { padding: 82px 0; }
  .section-title,
  .footer-title { font-size: 43px; line-height: 1.04; }
  .section-intro { margin: 22px 0 0; font-size: 16px; }
  .capabilities-layout { gap: 34px; }
  .capabilities-intro .section-title { font-size: 43px; }
  .service-row { padding: 28px 0; }
  .service-head h3 { font-size: 34px; }

  .projects-head {
    margin-bottom: 38px;
    align-items: flex-start;
    flex-direction: column;
  }

  .projects-grid { grid-template-columns: 1fr; gap: 44px; }
  .project-card:nth-child(even) { margin-top: 0; }
  .project-visual { min-height: 380px; }
  .project-meta h3 { font-size: 25px; }
  .project-meta { flex-direction: column; }
  .project-meta p { max-width: none; margin-top: 0; text-align: left; }
  .mock-window { width: 88%; }
  .ops-body { grid-template-columns: 70px 1fr; }
  .ops-main { padding: 14px; }
  .metric { padding: 8px; }
  .metric b { font-size: 17px; }
  .map-board { width: 89%; }

  .process-grid { grid-template-columns: 1fr; }
  .process-step,
  .process-step:nth-child(2) { min-height: 220px; border-right: 0; border-bottom: 1px solid rgba(17, 17, 17, 0.45); }
  .process-step:last-child { border-bottom: 0; }
  .process-no { margin-bottom: 44px; }

  .ticker span { font-size: 29px; }

  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .footer-contact { justify-content: flex-start; }
  .footer-bottom { margin-top: 80px; grid-template-columns: 1fr auto; }
  .footer-bottom > span { display: none; }

  .page-hero { padding: 136px 0 70px; }
  .page-hero h1 { font-size: 47px; line-height: 1.03; }
  .page-hero-bottom { margin-top: 42px; grid-template-columns: 1fr; gap: 28px; }
  .page-hero-bottom p { font-size: 16px; }
  .filter-list { justify-content: flex-start; }

  .work-page .project-card:nth-child(3n + 1) { grid-column: auto; }
  .work-page .project-card:nth-child(3n + 1) .project-visual { min-height: 380px; }

  .story-grid { grid-template-columns: 1fr; }
  .story-card:nth-child(n) { min-height: 430px; grid-column: auto; }
  .story-card h2 { font-size: 38px; }
  .story-card p { left: 28px; right: auto; max-width: 250px; }

  .job-row {
    min-height: 180px;
    grid-template-columns: 42px 1fr auto;
    gap: 14px;
  }
  .job-row h2 { font-size: 25px; }
  .job-meta { grid-column: 2 / -1; grid-row: 2; }
  .values-grid { grid-template-columns: 1fr; }
  .value { min-height: 220px; border-right: 0; border-bottom: 1px solid #3e3e3b; }
  .value:last-child { border-bottom: 0; }
  .value h3 { margin-top: 58px; }

  .contact-layout { gap: 54px; }
  .contact-aside h2 { font-size: 38px; }
  .brief-form { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .form-actions { grid-column: auto; align-items: flex-start; flex-direction: column; }
  .form-status { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
