:root {
  --black: #0b0b0a;
  --ink: #191816;
  --muted: #66625b;
  --faint: #9a948b;
  --line: #ded9cf;
  --line-strong: #c7c0b5;
  --paper: #f6f4ef;
  --paper-deep: #ebe6db;
  --white: #fff;
  --accent: #b7d8ca;
  --max: 1240px;
  --gutter: clamp(18px, 3vw, 36px);
  --section: clamp(72px, 10vw, 144px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --accent-font: "CoFo Sans Mono VF", "CoFo Sans Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--black);
  background:
    linear-gradient(90deg, rgba(11, 11, 10, .035) 1px, transparent 1px) 50% 0 / calc((min(100vw, var(--max)) - var(--gutter) * 2) / 6) 100%,
    var(--paper);
  font-family: Poppins, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

picture {
  display: block;
  width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--black);
  color: var(--white);
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px var(--gutter);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  border-bottom: 1px solid rgba(222, 217, 207, .72);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 118px;
  height: auto;
  max-width: none;
}

.site-nav {
  min-width: 0;
  color: var(--muted);
  font-family: var(--accent-font);
  font-size: 15px;
  letter-spacing: .02em;
}

.site-nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 52px);
}

.mobile-nav-context,
.mobile-nav-cta {
  display: none;
}

.site-nav a,
.footer-bottom a,
.footer-email,
.inline-link {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size .3s var(--ease), color .25s ease;
}

.site-nav a:hover,
.site-nav a.active,
.footer-bottom a:hover,
.footer-email:hover,
.inline-link:hover {
  color: var(--black);
  background-size: 100% 1px;
}

.button,
.header-cta,
.submit-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--black);
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  transition: transform .24s var(--ease), background .24s ease, color .24s ease;
}

.header-cta {
  font-family: var(--accent-font);
  font-size: 14px;
  letter-spacing: .01em;
}

.button::after,
.header-cta::after,
.submit-button::after {
  content: "\2192";
  margin-left: 12px;
  transition: transform .24s var(--ease);
}

.button:hover,
.header-cta:hover,
.submit-button:hover {
  transform: translateY(-2px);
  background: transparent;
  color: var(--black);
}

.button:hover::after,
.header-cta:hover::after,
.submit-button:hover::after {
  transform: translateX(4px);
}

.button.secondary {
  background: transparent;
  color: var(--black);
}

.button.secondary:hover {
  background: var(--black);
  color: var(--white);
}

.menu-toggle {
  display: none;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section) var(--gutter);
}

.section.tight {
  padding-top: clamp(36px, 5vw, 72px);
}

.kicker,
.eyebrow {
  margin: 0;
  color: var(--muted);
  font-family: var(--accent-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.display,
.page-title,
.section-title,
.footer-cta h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(52px, 10.5vw, 144px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: .9;
}

.section-title {
  font-size: clamp(46px, 8.2vw, 108px);
}

.text-outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--black);
}

.lead {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.5;
}

.body-copy {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.hero {
  min-height: calc(100svh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(360px, 1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: end;
  padding-top: clamp(38px, 6vw, 72px);
  padding-bottom: clamp(60px, 8vw, 118px);
}

.hero-copy {
  display: grid;
  gap: 28px;
  align-content: end;
  min-width: 0;
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(54px, 5.6vw, 88px);
  line-height: .92;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero p {
  max-width: 650px;
}

.hero-copy > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-aside {
  display: grid;
  gap: 18px;
  min-width: 0;
  align-self: end;
}

.hero-card {
  display: grid;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
}

.hero-card picture {
  aspect-ratio: 1.48;
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.94);
}

.hero-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.proof-cell {
  min-height: 112px;
  display: grid;
  align-content: space-between;
  padding: 16px;
  background: var(--paper-deep);
  border: 1px solid var(--line);
}

.proof-cell strong {
  display: block;
  font-size: clamp(30px, 4vw, 48px);
  line-height: .95;
}

.proof-cell span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper-deep) 58%, var(--paper));
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: drift 32s linear infinite;
}

.marquee-track span {
  padding: 18px 26px;
  color: var(--muted);
  white-space: nowrap;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(28px, 7vw, 72px);
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 68px);
}

.section-head .body-copy {
  padding-bottom: 8px;
}

.jump-link {
  width: max-content;
  color: var(--muted);
  font-family: var(--accent-font);
  font-size: 13px;
  letter-spacing: .02em;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.filter-bar button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .42);
  color: var(--muted);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

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

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.logo-tile {
  display: grid;
  gap: 12px;
  min-height: 118px;
  place-items: center;
  align-content: center;
  padding: 18px;
  background: color-mix(in srgb, var(--paper) 80%, var(--white));
  transition: background .25s ease;
}

.logo-tile:hover {
  background: var(--white);
}

.logo-tile img {
  width: min(86%, 150px);
  aspect-ratio: 1.45;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.logo-tile span {
  max-width: 18ch;
  color: var(--muted);
  font-family: var(--accent-font);
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
}

.intro-grid,
.two-col {
  display: grid;
  grid-template-columns: minmax(300px, .76fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 96px);
  align-items: center;
}

.portrait,
.image-frame {
  overflow: hidden;
  background: var(--paper-deep);
  border: 1px solid var(--line);
}

.portrait {
  aspect-ratio: .82;
}

.image-frame {
  aspect-ratio: 1.08;
}

.portrait picture,
.image-frame picture {
  height: 100%;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92);
}

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

.content-stack {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.content-stack h2,
.content-block h2 {
  margin: 0;
  font-size: clamp(34px, 5.6vw, 72px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: .98;
}

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

.rule-list span,
.rule-list a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 56px) clamp(18px, 3vw, 32px);
}

.project-card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.project-card[hidden] {
  display: none;
}

.project-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1.48;
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
  border: 1px solid var(--line);
}

.project-media picture {
  height: 100%;
}

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

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

.project-card:focus-visible {
  outline-offset: 8px;
}

.project-card-content {
  display: grid;
  gap: 12px;
  width: 100%;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-family: var(--accent-font);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.project-card h3 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
  font-size: clamp(30px, 4.4vw, 54px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1;
}

.project-card h3 span {
  color: var(--muted);
  font-size: .48em;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .24s ease, transform .24s var(--ease);
}

.project-card:hover h3 span,
.project-card:focus-visible h3 span {
  opacity: 1;
  transform: translateX(0);
}

.project-card:hover .project-meta {
  color: var(--black);
}

.project-card p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.service-list {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.service-row {
  display: grid;
  grid-template-columns: 76px minmax(260px, .9fr) minmax(280px, 1fr);
  gap: clamp(18px, 4vw, 46px);
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--line);
}

.service-row-number {
  color: var(--faint);
}

.service-row h3 {
  margin: 0;
  font-size: clamp(30px, 4.6vw, 60px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1;
}

.service-row p {
  margin: 0;
  color: var(--muted);
}

.answer-grid,
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.answer-card,
.faq-item {
  display: grid;
  gap: 14px;
  min-height: 210px;
  align-content: start;
  padding: clamp(22px, 3vw, 32px);
  background: var(--paper);
}

.answer-card h3,
.faq-item h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.05;
}

.answer-card p,
.faq-item p {
  margin: 0;
  color: var(--muted);
}

.answer-card > span,
.faq-item > span {
  color: var(--muted);
  font-family: var(--accent-font);
  font-size: 12px;
}

.link-card {
  transition: background .24s ease, transform .24s var(--ease);
}

.link-card:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.signal-list span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 15px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .42);
  color: var(--muted);
}

.capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.capability-list span,
.pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, .42);
  font-size: 13px;
}

.page-hero {
  display: grid;
  gap: 30px;
  padding-top: clamp(60px, 9vw, 120px);
  min-width: 0;
}

.page-hero p {
  max-width: 820px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-family: var(--accent-font);
  font-size: 13px;
  letter-spacing: .02em;
}

.breadcrumb a {
  color: var(--black);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.stat {
  min-height: 180px;
  display: grid;
  align-content: space-between;
  padding: clamp(22px, 3vw, 34px);
  background: var(--paper-deep);
}

.stat strong {
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: .85;
}

.stat span {
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.process-card {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  padding: clamp(22px, 3vw, 30px);
  background: var(--paper);
}

.process-card span {
  color: var(--faint);
}

.process-card h3 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.15;
}

.process-card p {
  margin: 0;
  color: var(--muted);
}

.project-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(34px, 7vw, 80px);
  align-items: end;
}

.project-hero-image {
  margin: 0;
  aspect-ratio: 1.48;
  max-height: 760px;
  overflow: hidden;
  background: var(--paper-deep);
  border: 1px solid var(--line);
}

.project-hero-image picture {
  height: 100%;
}

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

.project-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(42px, 7vw, 82px);
  align-items: start;
}

.article {
  display: grid;
  gap: clamp(34px, 5vw, 54px);
}

.article section {
  display: grid;
  gap: 14px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.article h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(30px, 4.4vw, 56px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1;
}

.article p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.case-quote {
  display: grid;
  gap: 10px;
  max-width: 820px;
  padding: 24px 0 30px;
  border-block: 1px solid var(--line-strong);
}

.case-quote p {
  color: var(--black);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.08;
}

.case-quote a {
  width: max-content;
  color: var(--muted);
}

.case-heading {
  max-width: 820px;
  margin: clamp(12px, 2vw, 24px) 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: clamp(30px, 4.4vw, 56px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1;
}

.case-paragraph {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.case-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-list li {
  padding: 17px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.case-list strong {
  color: var(--black);
  font-weight: 600;
}

.case-snapshot {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.case-snapshot article {
  min-height: 178px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: clamp(18px, 2.4vw, 26px);
  background: color-mix(in srgb, var(--paper) 82%, var(--white));
}

.case-snapshot span {
  color: var(--muted);
  font-family: var(--accent-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.case-snapshot p {
  margin: 0;
  color: var(--ink);
  line-height: 1.45;
}

.case-media,
.case-video {
  width: 100%;
  margin: clamp(8px, 2vw, 20px) 0;
}

.case-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--line);
  background: var(--paper-deep);
}

.case-media figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--accent-font);
  font-size: 13px;
  letter-spacing: .02em;
}

.case-video {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--black);
}

.case-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.meta-panel {
  position: sticky;
  top: 112px;
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.meta-row {
  display: grid;
  gap: 4px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.meta-row span {
  color: var(--muted);
  font-family: var(--accent-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.meta-row strong {
  font-weight: 500;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(40px, 8vw, 86px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
}

input,
textarea {
  width: 100%;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--black);
  background: rgba(255, 255, 255, .62);
  transition: border-color .2s ease, background .2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--black);
  background: var(--white);
  outline: none;
}

textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-card {
  display: grid;
  gap: 24px;
  padding: 28px;
  background: var(--paper-deep);
  border: 1px solid var(--line);
}

.contact-links {
  display: grid;
  gap: 12px;
  font-size: 19px;
}

.notice {
  display: none;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--accent) 62%, var(--line));
  background: color-mix(in srgb, var(--accent) 36%, var(--paper));
  color: var(--ink);
}

.notice.visible {
  display: block;
}

.honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.compact-cta {
  display: grid;
  gap: 24px;
  padding-block: clamp(44px, 7vw, 78px);
  border-block: 1px solid var(--line-strong);
}

.compact-cta h2 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(38px, 6vw, 78px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1;
}

.compact-cta .body-copy {
  max-width: 720px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 2px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(84px, 10vw, 140px) var(--gutter) 34px;
}

.footer-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  padding-top: clamp(44px, 6vw, 70px);
  border-top: 1px solid var(--line-strong);
}

.footer-cta .eyebrow {
  grid-column: 1 / -1;
}

.footer-cta h2 {
  max-width: 900px;
  font-size: clamp(46px, 8vw, 98px);
}

.round-link {
  display: grid;
  place-items: center;
  width: clamp(62px, 8vw, 92px);
  height: clamp(62px, 8vw, 92px);
  border: 1px solid var(--black);
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 34px;
  transition: transform .3s var(--ease), background .25s ease, color .25s ease;
}

.round-link:hover {
  transform: translate(4px, -4px);
  background: transparent;
  color: var(--black);
}

.footer-contact {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 400px);
  gap: 32px;
  align-items: end;
  margin: 36px 0 clamp(54px, 8vw, 86px);
}

.footer-contact p {
  margin: 0;
  color: var(--muted);
  font-family: var(--accent-font);
  font-size: 13px;
  letter-spacing: .02em;
}

.footer-email {
  font-size: clamp(28px, 5vw, 58px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  color: var(--muted);
  font-family: var(--accent-font);
  font-size: 14px;
  letter-spacing: .02em;
}

.footer-mark img {
  width: 78px;
  height: auto;
  max-width: none;
}

.footer-bottom nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footer-bottom p {
  margin: 0;
}

.not-found {
  min-height: 58vh;
  display: grid;
  align-content: center;
  gap: 24px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  body {
    background: var(--paper);
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 18px var(--gutter);
  }

  .brand {
    position: relative;
    z-index: 4;
  }

  body.menu-open .site-header {
    background: transparent;
    border-color: transparent;
    backdrop-filter: none;
  }

  body.menu-open .brand img {
    filter: invert(1);
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 4;
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: border-color .25s ease, background .25s ease;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--black);
    transform-origin: center;
    transition: transform .28s var(--ease), background .25s ease;
  }

  .menu-toggle[aria-expanded="true"] {
    border-color: rgba(246, 244, 239, .36);
    background: rgba(246, 244, 239, .08);
  }

  .menu-toggle[aria-expanded="true"] span {
    background: var(--paper);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 3;
    display: grid;
    grid-template-rows: 1fr auto auto;
    align-items: end;
    gap: clamp(22px, 5vh, 42px);
    padding: clamp(112px, 16vh, 150px) var(--gutter) calc(28px + env(safe-area-inset-bottom));
    overflow: hidden;
    background: var(--black);
    color: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    visibility: hidden;
    transition: opacity .28s ease, transform .36s var(--ease), visibility .28s ease;
  }

  .site-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(246, 244, 239, .08) 1px, transparent 1px) 0 0 / 25% 100%,
      linear-gradient(180deg, rgba(246, 244, 239, .06) 1px, transparent 1px) 0 0 / 100% 25%;
    opacity: .45;
  }

  .site-nav::after {
    content: "";
    position: absolute;
    right: var(--gutter);
    top: clamp(112px, 16vh, 150px);
    bottom: calc(28px + env(safe-area-inset-bottom));
    width: 1px;
    background: rgba(246, 244, 239, .14);
    pointer-events: none;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav-links {
    position: relative;
    z-index: 1;
    display: grid;
    width: 100%;
    gap: 0;
    counter-reset: mobile-nav;
  }

  .site-nav-links a {
    counter-increment: mobile-nav;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: end;
    padding: clamp(16px, 3.3vh, 26px) 0;
    border-bottom: 1px solid rgba(246, 244, 239, .14);
    background-image: none;
    color: rgba(246, 244, 239, .58);
    font-family: Poppins, Arial, sans-serif;
    font-size: clamp(42px, 14vw, 76px);
    font-weight: 600;
    letter-spacing: -.04em;
    line-height: .88;
    transition: color .25s ease, transform .28s var(--ease);
  }

  .site-nav-links a::before {
    content: "0" counter(mobile-nav);
    align-self: start;
    color: rgba(246, 244, 239, .44);
    font-family: var(--accent-font);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    line-height: 1;
  }

  .site-nav-links a::after {
    content: "\2192";
    align-self: center;
    color: var(--paper);
    font-family: var(--accent-font);
    font-size: 18px;
    letter-spacing: 0;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .24s ease, transform .28s var(--ease);
  }

  .site-nav-links a:hover,
  .site-nav-links a.active {
    color: var(--paper);
    transform: translateX(2px);
  }

  .site-nav-links a:hover::after,
  .site-nav-links a.active::after {
    opacity: 1;
    transform: translateX(0);
  }

  .mobile-nav-context {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    max-width: 32ch;
    color: rgba(246, 244, 239, .58);
    font-family: var(--accent-font);
    font-size: 11px;
    letter-spacing: .08em;
    line-height: 1.5;
    text-transform: uppercase;
  }

  .mobile-nav-cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: max-content;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 1px solid var(--paper);
    border-radius: 999px;
    background: var(--paper);
    color: var(--black);
    background-image: none;
    font-family: var(--accent-font);
    font-size: 14px;
    letter-spacing: .02em;
  }

  .mobile-nav-cta::after {
    content: "\2192";
    margin-left: 12px;
  }

  .hero,
  .section-head,
  .intro-grid,
  .two-col,
  .project-hero-layout,
  .project-detail-grid,
  .contact-grid,
  .footer-contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-aside {
    max-width: 560px;
  }

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

  .project-grid,
  .stat-grid,
  .process-grid,
  .case-snapshot,
  .answer-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

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

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

  .meta-panel {
    position: static;
  }

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

  .footer-bottom nav {
    justify-content: start;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .display,
  .page-title,
  .section-title {
    max-width: 100%;
    font-size: clamp(42px, 14vw, 64px);
    letter-spacing: -.045em;
    overflow-wrap: break-word;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 13vw, 54px);
    overflow-wrap: anywhere;
  }

  .hero-proof,
  .form-row {
    grid-template-columns: 1fr;
  }

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

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

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

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