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

@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("fonts/atkinson-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("fonts/barlow-condensed-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --deep-ink: #08090a;
  --ink: #0a0a0b;
  --graphite: #1a1d20;
  --bone: #f4f1ea;
  --paper: #f7f4ed;
  --white: #ffffff;
  --signal: #e31b23;
  --signal-dark: #b51219;
  --signal-bright: #ff4248;
  --rule-dark: rgba(8, 9, 10, 0.24);
  --rule-light: rgba(244, 241, 234, 0.24);
  --font-body: "Atkinson Hyperlegible Next", sans-serif;
  --font-label: "Barlow Condensed", sans-serif;
  --header-height: 78px;
  --section-space: clamp(88px, 9vw, 144px);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

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

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

button {
  color: inherit;
}

::selection {
  background: var(--signal);
  color: var(--white);
}

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

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

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

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--signal);
  transform-origin: left center;
}

.shell {
  width: min(100% - 64px, 1320px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid rgba(8, 9, 10, 0.14);
  background: rgba(244, 241, 234, 0.94);
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(244, 241, 234, 0.98);
  box-shadow: 0 12px 36px rgba(8, 9, 10, 0.08);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  height: 100%;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-lockup img {
  width: 50px;
  height: 50px;
}

.brand-lockup span {
  font-size: 17px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(22px, 2.8vw, 42px);
}

.desktop-nav a,
.button,
.menu-toggle,
.signal-label,
.panel-label,
.section-code,
.project-card__meta,
.process-step__label,
.intake-form__heading,
.intake-form label > span,
.form-note,
.form-status,
.article-meta {
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 14px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--signal);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid currentColor;
  padding: 12px 18px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

.button--signal:hover {
  border-color: var(--signal-dark);
  background: var(--signal-dark);
}

.button--outline {
  border-color: var(--ink);
  background: rgba(247, 244, 237, 0.82);
  color: var(--ink);
}

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

.button--ink {
  width: 100%;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button--ink:hover {
  border-color: var(--signal);
  background: var(--signal);
}

.header-cta__short,
.menu-toggle,
.mobile-navigation {
  display: none;
}

.header-cta {
  justify-self: end;
}

.hero {
  position: relative;
  min-height: 900px;
  padding-top: var(--header-height);
  overflow: hidden;
  background: var(--deep-ink);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: var(--header-height) 0 0;
  background: linear-gradient(90deg, rgba(247, 244, 237, 0.16), transparent 40%, rgba(8, 9, 10, 0.06));
  pointer-events: none;
}

.hero__media {
  position: absolute;
  z-index: -2;
  inset: var(--header-height) 0 0;
}

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

.hero__stage {
  position: relative;
  display: grid;
  align-items: start;
  min-height: 630px;
  padding-block: 56px 28px;
}

.hero__message {
  position: relative;
  z-index: 2;
  width: min(100%, 870px);
  border: 1px solid rgba(8, 9, 10, 0.22);
  background: var(--paper);
  box-shadow: 0 28px 72px rgba(8, 9, 10, 0.18);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.hero__message-bar {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  min-height: 43px;
  padding: 14px 24px 12px 38px;
  border-bottom: 1px solid var(--rule-dark);
  color: var(--signal-dark);
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.hero__message-bar::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 14px;
  width: 6px;
  height: 13px;
  background: var(--signal);
}

.hero__message-bar span:last-child {
  color: #56514a;
}

.hero__message-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(290px, 0.82fr);
}

.hero__headline {
  padding: 34px 34px 38px;
}

.hero h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(48px, 4.25vw, 68px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero__intro {
  align-self: stretch;
  padding: 34px 26px 28px;
  border-left: 1px solid var(--rule-dark);
}

.hero__lede {
  max-width: 38ch;
  margin: 0;
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.42;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero__actions .button {
  min-height: 42px;
  padding-inline: 12px;
  font-size: 12px;
}

.hero__scope {
  max-width: 42ch;
  margin: 20px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--rule-dark);
  color: #44413d;
  font-size: 12.5px;
  line-height: 1.4;
}

.hero__wall-note {
  position: absolute;
  z-index: 1;
  top: 62px;
  right: 10px;
  width: 128px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(8, 9, 10, 0.18);
  background: rgba(247, 244, 237, 0.88);
  color: #44413d;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero__wall-note span,
.hero__wall-note strong {
  display: block;
}

.hero__wall-note strong {
  margin-top: 9px;
  color: var(--ink);
  font-weight: 600;
}

.hire-panel {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 28px;
  width: min(440px, 42vw);
  margin: 0;
  background: rgba(8, 9, 10, 0.92);
  color: var(--bone);
  box-shadow: 0 26px 68px rgba(8, 9, 10, 0.34);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}

.hire-panel::before {
  content: "";
  display: block;
  height: 6px;
  background: var(--signal);
}

.hire-panel__heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 13px 16px 12px;
  border-bottom: 1px solid var(--rule-light);
}

.panel-label {
  margin: 0;
  color: var(--signal-bright);
  font-size: 12px;
}

.hire-panel__heading > span {
  color: rgba(244, 241, 234, 0.66);
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hire-panel ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.hire-panel li {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 3px 9px;
  padding: 13px 14px 14px;
  border-bottom: 1px solid var(--rule-light);
}

.hire-panel li:nth-child(odd) {
  border-right: 1px solid var(--rule-light);
}

.hire-panel li:nth-child(n + 3) {
  border-bottom: 0;
}

.hire-panel li > span {
  grid-row: 1 / 3;
  color: var(--signal-bright);
  font-family: var(--font-label);
  font-size: 14px;
}

.hire-panel strong {
  font-size: 15px;
  line-height: 1.16;
}

.hire-panel small {
  color: rgba(244, 241, 234, 0.72);
  font-size: 11.5px;
  line-height: 1.28;
}

.hero-sequence {
  position: relative;
  z-index: 4;
  min-height: 192px;
  padding-block: 16px 13px;
  border-top: 1px solid rgba(244, 241, 234, 0.38);
  border-bottom: 1px solid var(--deep-ink);
  background: rgba(8, 9, 10, 0.78);
  color: var(--bone);
  backdrop-filter: blur(6px);
}

.hero-sequence__heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 10px;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.hero-sequence__heading p {
  margin: 0;
  color: var(--signal-bright);
}

.hero-sequence__heading span {
  color: rgba(244, 241, 234, 0.66);
}

.hero-sequence__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  list-style: none;
}

.hero-sequence li {
  min-height: 98px;
  padding: 17px 18px 15px;
  border-right: 1px solid var(--rule-light);
}

.hero-sequence li:last-child {
  border-right: 0;
}

.hero-sequence li > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.hero-sequence b {
  color: var(--signal-bright);
  font-size: 15px;
}

.hero-sequence strong {
  font-size: 16px;
}

.hero-sequence small {
  display: block;
  margin: 9px 0 0 32px;
  color: rgba(244, 241, 234, 0.76);
  font-size: 13px;
  line-height: 1.3;
}

.hero-sequence__rail {
  position: relative;
  height: 2px;
  margin-top: 15px;
  background: rgba(244, 241, 234, 0.28);
}

.hero-sequence__rail i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 74%;
  background: var(--signal);
}

.section {
  position: relative;
  padding-block: var(--section-space);
  overflow: hidden;
  scroll-margin-top: var(--header-height);
}

.section-heading {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(36px, 7vw, 100px);
  margin-bottom: clamp(56px, 7vw, 96px);
}

.section-code {
  align-self: start;
  margin: 10px 0 0;
  padding-top: 12px;
  border-top: 1px solid currentColor;
  color: var(--signal-dark);
  font-size: 13px;
}

.section-heading > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.55fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.section-heading h2,
.about h2,
.start h2 {
  margin: 0;
  font-size: clamp(48px, 5.8vw, 84px);
  line-height: 0.93;
  letter-spacing: -0.047em;
  text-wrap: balance;
}

.section-heading > div > p {
  margin: 0;
  color: #4a4742;
  font-size: 18px;
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.work {
  background: var(--bone);
}

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

.project-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.project-card--featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  grid-template-rows: 1fr;
}

.project-card__image {
  position: relative;
  display: block;
  min-height: 300px;
  overflow: hidden;
  background: var(--graphite);
}

.project-card__image::after {
  content: "Open project ↗";
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 9px 11px;
  background: var(--signal);
  color: var(--white);
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.project-card__image:hover::after,
.project-card__image:focus-visible::after {
  opacity: 1;
  transform: none;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card__image:hover img {
  transform: scale(1.018);
}

.project-card__body {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3.5vw, 46px);
}

.project-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule-dark);
  color: #4b4843;
  font-size: 12px;
}

.project-card__meta span:first-child {
  color: var(--signal-dark);
}

.project-card h3 {
  margin: 28px 0 22px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 0.98;
  letter-spacing: -0.036em;
}

.project-card:not(.project-card--featured) h3 {
  font-size: clamp(28px, 2.5vw, 38px);
}

.project-card p {
  margin: 0 0 14px;
  color: #47443f;
  font-size: 16px;
  line-height: 1.5;
}

.project-card p strong {
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: auto;
  padding-top: 20px;
  border-bottom: 2px solid var(--signal);
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--signal-dark);
  font-size: 18px;
}

.approach {
  background: var(--deep-ink);
  color: var(--bone);
}

.section-heading--light .section-code {
  color: var(--signal-bright);
}

.section-heading--light > div > p {
  color: rgba(244, 241, 234, 0.72);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  list-style: none;
}

.process-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  min-height: 430px;
  padding: 40px 32px;
  border-right: 1px solid var(--rule-light);
}

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

.process-step__number {
  color: var(--signal-bright);
  font-family: var(--font-label);
  font-size: 30px;
  line-height: 1;
}

.process-step__label {
  min-height: 42px;
  margin: 0;
  color: rgba(244, 241, 234, 0.7);
  font-size: 12px;
  line-height: 1.2;
}

.process-step h3 {
  margin: 28px 0 18px;
  font-size: clamp(27px, 2.5vw, 38px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.process-step p:not(.process-step__label) {
  margin: 0;
  color: rgba(244, 241, 234, 0.72);
  line-height: 1.5;
}

.process-step ul {
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--rule-light);
  list-style: none;
}

.process-step li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(244, 241, 234, 0.12);
  color: var(--bone);
  font-size: 14px;
}

.process-step li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--signal-bright);
}

.fit-note {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: center;
  width: min(100%, 880px);
  margin: 72px auto 0;
  padding: 28px 0;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
}

.fit-note img {
  width: 72px;
}

.fit-note p {
  margin: 0;
  color: rgba(244, 241, 234, 0.72);
  font-size: 17px;
  line-height: 1.5;
}

.fit-note strong {
  color: var(--bone);
}

.about {
  background: var(--graphite);
  color: var(--bone);
}

.about::before {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -40%;
  width: 55%;
  height: 80%;
  background: linear-gradient(135deg, transparent 0 44%, rgba(227, 27, 35, 0.76) 44% 64%, transparent 64%);
  pointer-events: none;
}

.about__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.55fr);
  gap: clamp(56px, 9vw, 132px);
  align-items: center;
}

.about .section-code {
  width: min(240px, 100%);
  margin-bottom: 44px;
  color: var(--signal-bright);
}

.about h2 {
  max-width: 11ch;
}

.about__lead {
  max-width: 54ch;
  margin: 36px 0 18px;
  color: var(--bone);
  font-size: 21px;
  line-height: 1.48;
}

.about__copy > p:not(.section-code):not(.about__lead) {
  max-width: 60ch;
  margin: 0 0 18px;
  color: rgba(244, 241, 234, 0.72);
  font-size: 17px;
  line-height: 1.55;
}

.about__facts {
  margin: 40px 0 0;
  border-top: 1px solid var(--rule-light);
}

.about__facts > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--rule-light);
}

.about__facts dt {
  color: var(--signal-bright);
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about__facts dd {
  margin: 0;
  color: rgba(244, 241, 234, 0.78);
}

.about__portrait {
  margin: 0;
  border: 1px solid rgba(244, 241, 234, 0.5);
  background: var(--bone);
  color: var(--ink);
  transform: rotate(1.2deg);
}

.about__portrait img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.82) contrast(1.04);
}

.about__portrait figcaption {
  padding: 18px 20px 22px;
  font-size: 14px;
  line-height: 1.4;
}

.chronicle {
  background: var(--bone);
}

.chronicle-list {
  border-top: 1px solid var(--ink);
}

.chronicle-entry {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--rule-dark);
}

.chronicle-entry time {
  color: #5a5650;
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.chronicle-entry h3 {
  margin: 0 0 8px;
  font-size: clamp(25px, 2.6vw, 38px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.chronicle-entry p {
  max-width: 66ch;
  margin: 0;
  color: #4b4843;
  line-height: 1.5;
}

.chronicle-entry .text-link {
  min-width: 112px;
  margin: 0;
  padding-top: 0;
}

.start {
  background: var(--deep-ink);
  color: var(--bone);
}

.start::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -8%;
  bottom: -38%;
  width: 58%;
  height: 100%;
  background: linear-gradient(132deg, transparent 0 42%, rgba(227, 27, 35, 0.92) 42% 69%, transparent 69%);
  pointer-events: none;
}

.start__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.7fr);
  gap: clamp(56px, 9vw, 132px);
  align-items: start;
}

.start .section-code {
  width: min(240px, 100%);
  margin-bottom: 44px;
  color: var(--signal-bright);
}

.start h2 {
  max-width: 10ch;
}

.start__lead {
  max-width: 40ch;
  margin: 28px 0 36px;
  color: rgba(244, 241, 234, 0.78);
  font-size: 20px;
  line-height: 1.45;
}

.response-expectations {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule-light);
  list-style: none;
}

.response-expectations li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-light);
}

.response-expectations li > span {
  color: var(--signal-bright);
  font-family: var(--font-label);
  font-size: 16px;
}

.response-expectations strong {
  display: block;
  margin-bottom: 4px;
}

.response-expectations p {
  margin: 0;
  color: rgba(244, 241, 234, 0.68);
  font-size: 14px;
  line-height: 1.45;
}

.start__email {
  margin: 28px 0 0;
  color: rgba(244, 241, 234, 0.68);
}

.start__email a {
  border-bottom: 1px solid var(--signal-bright);
  color: var(--bone);
}

.intake-form {
  padding: clamp(30px, 4vw, 52px);
  border-top: 8px solid var(--signal);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.intake-form__heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule-dark);
  color: #514e49;
  font-size: 12px;
}

.intake-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.intake-form label > span {
  font-size: 13px;
}

.intake-form label em {
  color: #67635d;
  font-style: normal;
}

.intake-form input,
.intake-form textarea,
.intake-form select {
  width: 100%;
  border: 1px solid rgba(8, 9, 10, 0.34);
  border-radius: 0;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

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

.intake-form input:focus,
.intake-form textarea:focus,
.intake-form select:focus {
  border-color: var(--signal-dark);
  box-shadow: 0 0 0 2px rgba(181, 18, 25, 0.15);
}

.intake-form [aria-invalid="true"] {
  border-color: var(--signal-dark);
}

.intake-form button[disabled] {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-note,
.form-status {
  margin: 14px 0 0;
  color: #56524d;
  font-size: 12px;
  line-height: 1.4;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="success"] {
  padding: 14px;
  border-left: 4px solid var(--signal);
  background: rgba(227, 27, 35, 0.08);
  color: var(--ink);
}

.form-status[data-state="error"] {
  color: var(--signal-dark);
}

.site-footer {
  background: var(--ink);
  color: var(--bone);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: center;
  min-height: 190px;
  border-top: 1px solid var(--rule-light);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__brand img {
  width: 46px;
}

.site-footer p {
  margin: 0;
  color: rgba(244, 241, 234, 0.68);
}

.site-footer__inner > div {
  display: grid;
  gap: 8px;
  justify-items: end;
  color: rgba(244, 241, 234, 0.68);
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer__inner > div a {
  color: var(--bone);
}

/* Chronicle article pages */
.article-page {
  background: var(--paper);
}

.article-header {
  position: relative;
  height: var(--header-height);
  border-bottom: 1px solid var(--rule-dark);
  background: var(--bone);
}

.article-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.article-back {
  border-bottom: 2px solid var(--signal);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-main {
  padding: clamp(72px, 9vw, 132px) 0;
}

.article-shell {
  width: min(100% - 40px, 820px);
  margin-inline: auto;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  padding-top: 14px;
  border-top: 1px solid var(--ink);
  color: #55514c;
  font-size: 13px;
}

.article-main h1 {
  margin: 0;
  font-size: clamp(52px, 8vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.052em;
}

.article-deck {
  margin: 34px 0 54px;
  padding-left: 22px;
  border-left: 4px solid var(--signal);
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.42;
}

.article-body {
  font-size: 18px;
  line-height: 1.7;
}

.article-body h2 {
  margin: 58px 0 18px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.article-body p {
  margin: 0 0 24px;
}

.article-body blockquote {
  margin: 44px 0;
  padding: 26px 0 26px 28px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  border-left: 4px solid var(--signal);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
}

.article-next {
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid var(--rule-dark);
}

@media (max-width: 1040px) {
  .site-header__inner {
    gap: 24px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero__stage {
    gap: 24px;
    min-height: 690px;
  }

  .hero__message {
    width: min(100%, 720px);
  }

  .hero__message-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  }

  .hero h1 {
    font-size: 52px;
  }

  .hire-panel {
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: end;
    width: min(420px, 46vw);
  }

  .section-heading {
    grid-template-columns: 180px 1fr;
  }

  .project-card--featured {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  }

  .process-step {
    grid-template-columns: 1fr;
    min-height: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
    --section-space: 76px;
  }

  .shell {
    width: min(100% - 36px, 700px);
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
  }

  .brand-lockup {
    gap: 10px;
  }

  .brand-lockup img {
    width: 40px;
    height: 40px;
  }

  .brand-lockup span {
    font-size: 13px;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    padding: 10px 14px;
  }

  .header-cta__full {
    display: none;
  }

  .header-cta__short {
    display: inline;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 62px;
    min-height: 44px;
    border: 1px solid var(--ink);
    padding: 9px;
    background: transparent;
    font-size: 13px;
    cursor: pointer;
  }

  .menu-toggle i,
  .menu-toggle i::before {
    display: block;
    width: 13px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle i {
    position: relative;
  }

  .menu-toggle i::before {
    content: "";
    position: absolute;
    top: 5px;
  }

  .menu-toggle[aria-expanded="true"] i {
    transform: rotate(45deg) translateY(2px);
  }

  .menu-toggle[aria-expanded="true"] i::before {
    top: 0;
    transform: rotate(90deg);
  }

  .mobile-navigation {
    position: fixed;
    z-index: 99;
    inset: var(--header-height) 0 0;
    display: block;
    overflow: auto;
    background: var(--deep-ink);
    color: var(--bone);
  }

  .mobile-navigation nav {
    display: grid;
    padding-block: 24px 48px;
  }

  .mobile-navigation nav > a:not(.button) {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    min-height: 70px;
    border-bottom: 1px solid var(--rule-light);
    font-size: 28px;
    font-weight: 700;
  }

  .mobile-navigation nav > a:not(.button) span {
    color: var(--signal-bright);
    font-family: var(--font-label);
    font-size: 14px;
  }

  .mobile-navigation .button {
    margin-top: 28px;
  }

  .hero {
    min-height: 0;
  }

  .hero::before {
    inset: var(--header-height) 0 0;
    background: linear-gradient(180deg, rgba(244, 241, 234, 0.05), rgba(8, 9, 10, 0.26));
  }

  .hero__media {
    inset: var(--header-height) 0 0;
  }

  .hero__media img {
    object-position: 58% center;
  }

  .hero__stage {
    display: grid;
    gap: 24px;
    min-height: 0;
    padding-block: 38px 30px;
  }

  .hero__message {
    position: relative;
    width: 100%;
    background: var(--paper);
  }

  .hero__message-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  }

  .hero h1 {
    max-width: 14ch;
    font-size: clamp(44px, 7.6vw, 58px);
  }

  .hero__wall-note {
    display: none;
  }

  .hire-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 520px);
    margin: 0 0 0 auto;
  }

  .hero-sequence {
    background: rgba(8, 9, 10, 0.92);
  }

  .hero-sequence__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-sequence li {
    min-height: 90px;
    border-bottom: 1px solid var(--rule-light);
  }

  .hero-sequence li:nth-child(2) {
    border-right: 0;
  }

  .hero-sequence li:nth-child(n + 3) {
    border-bottom: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-code {
    width: 180px;
  }

  .section-heading > div {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading h2,
  .about h2,
  .start h2 {
    font-size: clamp(42px, 9vw, 62px);
  }

  .project-list {
    grid-template-columns: 1fr;
  }

  .project-card--featured {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .project-card__image {
    min-height: 0;
  }

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

  .process-step {
    grid-template-columns: 50px 1fr;
    padding: 36px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--rule-light);
  }

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

  .about__grid,
  .start__grid {
    grid-template-columns: 1fr;
  }

  .about__portrait {
    width: min(100%, 430px);
    margin-inline: auto;
    transform: rotate(0.6deg);
  }

  .about__portrait img {
    max-height: 520px;
  }

  .chronicle-entry {
    grid-template-columns: 132px 1fr;
    gap: 20px;
  }

  .chronicle-entry .text-link {
    grid-column: 2;
  }

  .start::before {
    left: -30%;
    bottom: auto;
    top: 16%;
    width: 100%;
    height: 44%;
  }

  .intake-form {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 48px;
  }

  .site-footer__inner > div {
    justify-items: start;
  }
}

@media (max-width: 560px) {
  :root {
    --section-space: 64px;
  }

  .shell {
    width: min(100% - 28px, 700px);
  }

  .site-header__inner {
    gap: 7px;
  }

  .brand-lockup span {
    letter-spacing: 0.13em;
  }

  .header-cta {
    min-width: 52px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .menu-toggle {
    min-width: 52px;
    font-size: 12px;
  }

  .menu-toggle span {
    display: none;
  }

  .hero__stage {
    padding-block: 28px;
  }

  .hero__message {
    clip-path: none;
  }

  .hero__message-bar {
    padding-inline: 34px 18px;
  }

  .hero__message-bar::before {
    left: 20px;
  }

  .hero__message-bar span:last-child {
    display: none;
  }

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

  .hero__headline {
    padding: 26px 20px 28px;
  }

  .hero h1 {
    font-size: clamp(39px, 11.8vw, 54px);
    line-height: 0.96;
  }

  .hero__intro {
    padding: 24px 20px;
    border-top: 1px solid var(--rule-dark);
    border-left: 0;
  }

  .hero__lede {
    margin: 0;
    font-size: 17px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero__scope {
    font-size: 13px;
  }

  .hire-panel {
    clip-path: none;
  }

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

  .hire-panel li {
    min-height: 78px;
    padding: 14px 12px;
    border-bottom: 1px solid var(--rule-light) !important;
  }

  .hire-panel li:nth-child(odd) {
    border-right: 1px solid var(--rule-light) !important;
  }

  .hire-panel li:nth-child(n + 3) {
    border-bottom: 0 !important;
  }

  .hire-panel small {
    display: none;
  }

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

  .hero-sequence__heading {
    align-items: end;
  }

  .hero-sequence__heading span {
    max-width: 18ch;
    text-align: right;
  }

  .hero-sequence li {
    min-height: 96px;
    padding: 14px 10px;
    border-bottom: 1px solid var(--rule-light) !important;
    font-size: 13px;
  }

  .hero-sequence li:nth-child(odd) {
    border-right: 1px solid var(--rule-light);
  }

  .hero-sequence li:nth-child(even) {
    border-right: 0;
  }

  .hero-sequence li:nth-child(n + 3) {
    border-bottom: 0 !important;
  }

  .hero-sequence small {
    margin: 6px 0 0;
    font-size: 12px;
  }

  .section-heading {
    gap: 24px;
    margin-bottom: 44px;
  }

  .section-heading h2,
  .about h2,
  .start h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .section-heading > div > p {
    font-size: 16px;
  }

  .project-card__body {
    padding: 24px 20px 28px;
  }

  .project-card__meta {
    display: grid;
    gap: 5px;
    font-size: 13px;
  }

  .project-card h3,
  .project-card:not(.project-card--featured) h3 {
    margin-top: 22px;
    font-size: 31px;
  }

  .process-step {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding-block: 30px;
  }

  .process-step__label {
    min-height: 0;
    font-size: 13px;
  }

  .process-step h3 {
    margin-top: 18px;
    font-size: 30px;
  }

  .fit-note {
    grid-template-columns: 52px 1fr;
    gap: 16px;
    margin-top: 48px;
  }

  .fit-note img {
    width: 50px;
  }

  .about .section-code,
  .start .section-code {
    margin-bottom: 30px;
  }

  .about__lead,
  .start__lead {
    font-size: 18px;
  }

  .about__facts > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .chronicle-entry {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .chronicle-entry .text-link {
    grid-column: 1;
    margin-top: 8px;
  }

  .intake-form {
    padding: 28px 20px;
  }

  .intake-form__heading {
    display: grid;
    gap: 6px;
    font-size: 13px;
  }

  .form-note,
  .form-status {
    font-size: 13px;
  }

  .article-header .brand-lockup span {
    display: none;
  }

  .article-main h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .article-deck {
    margin-bottom: 40px;
    font-size: 20px;
  }

  .article-body {
    font-size: 17px;
  }
}

@media (max-width: 340px) {
  .brand-lockup img {
    width: 36px;
    height: 36px;
  }

  .brand-lockup span {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 37px;
  }
}

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

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
