@font-face {
  font-family: "Prata";
  src: url("../fonts/prata-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

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

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

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #c8c7c1;
  --surface: #d3d1cb;
  --surface-dark: #b8b7b1;
  --ink: #11120f;
  --graphite: #454640;
  --rule: rgba(17, 18, 15, 0.28);
  --rule-soft: rgba(17, 18, 15, 0.14);
  --signal: #8c3523;
  --white: #ecebe6;
  --black: #090a08;

  --font-display: "Prata", Georgia, serif;
  --font-body: "Manrope", "Arial Narrow", sans-serif;
  --font-utility: "IBM Plex Mono", monospace;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-18: 4.5rem;
  --space-24: 6rem;

  --frame-gap: 1rem;
  --section-space: clamp(5rem, 7.5vw, 8rem);
  --content-pad: clamp(1.25rem, 2vw, 2rem);
  --max-width: 100rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
  background: #979791;
}

body {
  margin: 0;
  min-width: 20rem;
  color: var(--ink);
  background: #979791;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

img {
  height: auto;
}

button,
a {
  color: inherit;
}

a {
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.22em;
}

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

h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

ul {
  padding: 0;
}

:focus-visible {
  outline: 0.125rem solid var(--signal);
  outline-offset: 0.2rem;
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  font-family: var(--font-utility);
  font-size: 0.75rem;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.site-frame {
  width: calc(100% - (var(--frame-gap) * 2));
  max-width: var(--max-width);
  margin: var(--frame-gap) auto;
  overflow: clip;
  background: var(--paper);
  border: 0.0625rem solid var(--ink);
}

.site-header {
  position: sticky;
  top: var(--frame-gap);
  z-index: 50;
  background: var(--paper);
  border-bottom: 0.0625rem solid var(--ink);
}

.utility-bar,
.navigation-bar {
  display: flex;
  min-height: 3.65rem;
}

.utility-bar {
  align-items: stretch;
  border-bottom: 0.0625rem solid var(--rule);
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 20rem;
  padding: 0.45rem var(--content-pad);
  border-right: 0.0625rem solid var(--rule);
  text-decoration: none;
}

.brand__mark {
  position: relative;
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.brand__mark span {
  position: absolute;
  top: 0.1rem;
  right: -0.65rem;
  color: var(--signal);
  font-family: var(--font-utility);
  font-size: 0.65rem;
  letter-spacing: 0;
}

.brand__caption,
.utility-bar__meta,
.navigation-bar__role,
.primary-navigation,
.menu-toggle,
.eyebrow,
.section-index,
.stack-line,
.case-study__number,
.case-study__label,
.case-study__year,
.case-study__stack,
.metric-card > p,
.skill-card > p,
.site-footer,
.clock {
  font-family: var(--font-utility);
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
}

.brand__caption {
  color: var(--graphite);
  font-size: 0.61rem;
  line-height: 1.4;
  letter-spacing: 0.035em;
}

.utility-bar__meta {
  display: flex;
  align-items: stretch;
  margin-left: auto;
  font-size: 0.63rem;
  letter-spacing: 0.035em;
}

.utility-bar__meta > * {
  display: flex;
  align-items: center;
  padding: 0 var(--space-5);
  border-left: 0.0625rem solid var(--rule);
  white-space: nowrap;
}

.availability i,
.status-dot {
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.65rem;
  background: var(--signal);
  border-radius: 50%;
  animation: status-pulse 2.8s ease-in-out infinite;
}

.language-switch {
  gap: 0.5rem;
}

.language-switch a {
  text-decoration: none;
}

.language-switch a:hover {
  text-decoration: underline;
}

.navigation-bar {
  align-items: stretch;
}

.navigation-bar__role {
  display: flex;
  align-items: center;
  min-width: 20rem;
  padding: 0 var(--content-pad);
  border-right: 0.0625rem solid var(--rule);
  font-size: 0.64rem;
  line-height: 1.45;
  letter-spacing: 0.035em;
}

.primary-navigation {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  flex: 1;
}

.primary-navigation a {
  display: flex;
  align-items: center;
  min-height: 3.65rem;
  padding: 0 clamp(0.55rem, 1vw, 1.05rem);
  border-left: 0.0625rem solid transparent;
  font-size: clamp(0.56rem, 0.65vw, 0.68rem);
  letter-spacing: 0.035em;
  text-decoration: none;
}

.primary-navigation a:hover,
.primary-navigation a[aria-current="true"] {
  background: var(--surface);
  border-left-color: var(--rule);
}

.primary-navigation__language {
  display: none !important;
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 4rem minmax(17.5rem, 3fr) minmax(27rem, 5fr) minmax(17rem, 3fr);
  min-height: clamp(44rem, 72vh, 48rem);
  border-bottom: 0.0625rem solid var(--ink);
}

.hero > *:not(:last-child) {
  border-right: 0.0625rem solid var(--rule);
}

.hero__rail {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 1.2rem 0;
  font-family: var(--font-utility);
  font-size: 0.6rem;
  font-variant-numeric: tabular-nums;
}

.hero__rail > span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero__rail i {
  position: relative;
  width: 0.0625rem;
  min-height: 8rem;
  margin: auto 0;
  background: var(--ink);
}

.hero__rail i::after {
  position: absolute;
  bottom: -0.2rem;
  left: -0.18rem;
  width: 0.42rem;
  height: 0.42rem;
  content: "";
  background: var(--signal);
  border-radius: 50%;
}

.hero__rail b {
  margin-top: auto;
  font-weight: 500;
}

.hero__rail small {
  margin-top: 0.35rem;
  font-size: inherit;
}

.hero__identity {
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 2vw, 2rem);
}

.eyebrow {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--graphite);
  font-size: 0.64rem;
  line-height: 1.35;
  letter-spacing: 0.055em;
}

.hero-title {
  margin: clamp(2.4rem, 5vh, 4.8rem) 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 5vw, 6.35rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.055em;
}

.hero-title span {
  display: block;
}

.hero__specialization,
.hero__sublead {
  color: var(--graphite);
  font-family: var(--font-utility);
  font-size: 0.65rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.hero__lead {
  max-width: 30rem;
  margin-top: auto;
  padding-top: 3rem;
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  line-height: 1.55;
}

.hero__sublead {
  margin-top: 1rem;
}

.hero__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.25rem;
  padding: 0.75rem 1rem;
  border: 0.0625rem solid var(--ink);
  background: transparent;
  font-family: var(--font-utility);
  font-size: 0.66rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.025em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 200ms ease, background 200ms ease;
}

.button span {
  font-size: 0.9rem;
  transition: transform 200ms var(--ease-out);
}

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

.button:hover span {
  transform: translate(0.2rem, -0.2rem);
}

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

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

.button--dark {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.button--dark:hover {
  color: var(--paper);
  background: transparent;
}

.hero__visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero__visual picture,
.hero__visual img {
  width: 100%;
  height: 100%;
}

.hero__visual img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.002);
}

.hero__visual::before,
.hero__visual::after {
  position: absolute;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.hero__visual::before {
  inset: 1rem;
  border: 0.0625rem solid rgba(236, 235, 230, 0.3);
}

.hero__visual::after {
  top: 50%;
  left: 50%;
  width: 1.1rem;
  height: 1.1rem;
  border-top: 0.0625rem solid var(--white);
  border-left: 0.0625rem solid var(--white);
  transform: translate(-50%, -50%);
}

.hero__visual figcaption {
  position: absolute;
  right: 1.8rem;
  bottom: 1.6rem;
  left: 1.8rem;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-utility);
  font-size: 0.58rem;
  letter-spacing: 0.04em;
}

.execution-trace {
  position: absolute;
  inset: 20% 0 15%;
  z-index: 3;
  width: 100%;
  height: 55%;
  pointer-events: none;
}

.execution-trace__line {
  fill: none;
  stroke: rgba(236, 235, 230, 0.72);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.execution-trace__packet {
  fill: var(--signal);
  stroke: var(--white);
  stroke-width: 0.6;
}

.execution-trace circle {
  fill: var(--white);
}

.trace-labels {
  position: absolute;
  inset: 20% 0 15%;
  z-index: 4;
  font-family: var(--font-utility);
  font-size: clamp(0.45rem, 0.42vw, 0.58rem);
  line-height: 1.35;
  pointer-events: none;
}

.trace-labels span {
  position: absolute;
  top: var(--y);
  left: var(--x);
  padding: 0.2rem 0.3rem;
  background: rgba(9, 10, 8, 0.72);
}

.hero__profile {
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 2vw, 2rem);
}

.profile-statement {
  margin-top: 2rem;
  font-size: clamp(1.1rem, 1.35vw, 1.45rem);
  line-height: 1.45;
}

.profile-facts {
  margin-top: auto;
  border-top: 0.0625rem solid var(--rule);
}

.profile-facts div {
  display: grid;
  grid-template-columns: minmax(6rem, 0.9fr) 1.1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 0.0625rem solid var(--rule);
}

.profile-facts dt,
.about-facts dt {
  color: var(--graphite);
  font-family: var(--font-utility);
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.profile-facts dd {
  font-size: 0.82rem;
}

.text-link {
  display: inline-flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 0.0625rem solid var(--ink);
  font-family: var(--font-utility);
  font-size: 0.65rem;
  text-decoration: none;
  text-transform: uppercase;
}

.section {
  padding-top: var(--section-space);
  border-bottom: 0.0625rem solid var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  margin-bottom: clamp(2.5rem, 4.5vw, 4.5rem);
  padding: 0 var(--content-pad);
}

.section-index {
  grid-column: span 3;
  align-self: start;
  color: var(--graphite);
  font-size: 0.66rem;
  letter-spacing: 0.045em;
}

.section-index span {
  color: var(--signal);
}

.section-heading h2 {
  grid-column: span 5;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.section-heading > p:last-child {
  grid-column: span 4;
  max-width: 31rem;
  padding-left: 1.5rem;
  font-size: clamp(0.9rem, 1vw, 1.04rem);
}

.section-heading--compact h2 {
  grid-column: span 9;
}

.project-grid,
.metric-grid,
.skill-grid {
  display: grid;
}

.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 0.0625rem solid var(--ink);
}

.project-card {
  min-width: 0;
  border-right: 0.0625rem solid var(--ink);
}

.project-card--link {
  display: block;
  text-decoration: none;
}

.project-card--link:focus-visible {
  position: relative;
  z-index: 1;
  outline-offset: -0.25rem;
}

.project-card:last-child {
  border-right: 0;
}

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

.project-card__visual picture,
.project-card__visual img {
  width: 100%;
  height: 100%;
}

.project-card__visual img {
  object-fit: cover;
  transition: transform 420ms var(--ease-out), filter 250ms ease;
}

.project-card__visual > span {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.5rem;
  color: var(--white);
  background: rgba(9, 10, 8, 0.76);
  font-family: var(--font-utility);
  font-size: 0.6rem;
}

.project-card__body {
  min-height: 15rem;
  padding: 1.25rem var(--content-pad) 1.5rem;
}

.project-card__meta {
  display: flex;
  justify-content: space-between;
  color: var(--graphite);
  font-family: var(--font-utility);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.project-card h3 {
  margin-top: 1.5rem;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.project-card__body > p:not([class]) {
  max-width: 30rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.stack-line {
  margin-top: 2rem;
  color: var(--graphite);
  font-size: 0.62rem;
  letter-spacing: 0.035em;
}

.case-list {
  border-top: 0.0625rem solid var(--ink);
}

.case-study {
  border-bottom: 0.0625rem solid var(--ink);
}

.case-study:last-child {
  border-bottom: 0;
}

.case-study__header {
  display: grid;
  grid-template-columns: 2fr 7fr 3fr;
  min-height: 8.5rem;
  border-bottom: 0.0625rem solid var(--rule);
}

.case-study__header > * {
  padding: 1.5rem var(--content-pad);
}

.case-study__header > *:not(:last-child) {
  border-right: 0.0625rem solid var(--rule);
}

.case-study__number,
.case-study__label,
.case-study__year,
.case-study__stack {
  color: var(--graphite);
  font-size: 0.62rem;
  letter-spacing: 0.045em;
}

.case-study__header h3 {
  max-width: 52rem;
  margin-top: 0.65rem;
  font-size: clamp(1.5rem, 2.3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.case-study__year {
  text-align: right;
}

.case-study__content {
  display: grid;
  grid-template-columns: 3fr 6fr 3fr;
}

.case-study__content > div {
  min-height: 13rem;
  padding: 1.5rem var(--content-pad);
}

.case-study__content > div:not(:last-child) {
  border-right: 0.0625rem solid var(--rule);
}

.case-study__content h4 {
  margin-bottom: 1.25rem;
  color: var(--graphite);
  font-family: var(--font-utility);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.case-study__content p {
  max-width: 45rem;
  font-size: 0.92rem;
}

.case-study__stack {
  padding: 1rem var(--content-pad);
  border-top: 0.0625rem solid var(--rule);
  overflow-wrap: anywhere;
}

.section--impact {
  padding-bottom: 0;
}

.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 0.0625rem solid var(--ink);
}

.metric-card {
  display: flex;
  min-height: clamp(18rem, 24vw, 24rem);
  flex-direction: column;
  padding: 1.5rem var(--content-pad);
  border-right: 0.0625rem solid var(--ink);
}

.metric-card:last-child {
  border-right: 0;
}

.metric-card > p {
  color: var(--graphite);
  font-size: 0.62rem;
  letter-spacing: 0.045em;
}

.metric-card strong {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.45vw, 4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
}

.metric-card strong i {
  color: var(--signal);
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.7em;
}

.metric-card > span {
  max-width: 22rem;
  margin-top: 1.5rem;
  font-size: 0.82rem;
}

.experience-card {
  display: grid;
  grid-template-columns: 3fr 6fr 3fr;
  border-top: 0.0625rem solid var(--ink);
}

.experience-card > * {
  min-height: 30rem;
  padding: 1.75rem var(--content-pad);
}

.experience-card > *:not(:last-child) {
  border-right: 0.0625rem solid var(--ink);
}

.experience-card__timeline {
  display: grid;
  grid-template-rows: auto 1fr auto;
  font-family: var(--font-utility);
  font-size: 0.7rem;
}

.experience-card__timeline span {
  position: relative;
  width: 0.0625rem;
  margin: 1.2rem 0 1.2rem 0.2rem;
  background: var(--ink);
}

.experience-card__timeline span::before,
.experience-card__timeline span::after {
  position: absolute;
  left: -0.2rem;
  width: 0.45rem;
  height: 0.45rem;
  content: "";
  background: var(--paper);
  border: 0.0625rem solid var(--ink);
  border-radius: 50%;
}

.experience-card__timeline span::before {
  top: 0;
}

.experience-card__timeline span::after {
  bottom: 0;
  background: var(--signal);
}

.experience-card__main h3 {
  max-width: 44rem;
  margin-top: 2rem;
  font-size: clamp(2rem, 3.2vw, 3.65rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.experience-card__main > p:not(.eyebrow) {
  max-width: 46rem;
  margin-top: 2rem;
}

.experience-card__main ul {
  display: grid;
  gap: 0.65rem;
  margin-top: 2rem;
  list-style: none;
}

.experience-card__main li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.9rem;
}

.experience-card__main li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.4rem;
  height: 0.0625rem;
  content: "";
  background: var(--signal);
}

.experience-card__evidence {
  display: flex;
  flex-direction: column;
}

.experience-card__evidence span {
  padding: 1rem 0;
  border-bottom: 0.0625rem solid var(--rule);
  font-size: 0.85rem;
}

.experience-card__evidence span:first-of-type {
  margin-top: auto;
}

.skill-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 0.0625rem solid var(--ink);
}

.skill-card {
  min-height: 22rem;
  padding: 1.5rem var(--content-pad);
  border-right: 0.0625rem solid var(--ink);
}

.skill-card:last-child {
  border-right: 0;
}

.skill-card > p {
  color: var(--graphite);
  font-size: 0.62rem;
  letter-spacing: 0.045em;
}

.skill-card h3 {
  margin-top: 2.5rem;
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.skill-card ul {
  margin-top: 4rem;
  border-top: 0.0625rem solid var(--rule);
  list-style: none;
}

.skill-card li {
  padding: 0.7rem 0;
  border-bottom: 0.0625rem solid var(--rule);
  font-family: var(--font-utility);
  font-size: 0.67rem;
  overflow-wrap: anywhere;
}

.about-grid {
  display: grid;
  grid-template-columns: 5fr 4fr 3fr;
  border-top: 0.0625rem solid var(--ink);
}

.about-grid > * {
  min-height: 27rem;
  padding: 1.75rem var(--content-pad);
}

.about-grid > *:not(:last-child) {
  border-right: 0.0625rem solid var(--ink);
}

.about-grid__statement p {
  max-width: 45rem;
  font-size: clamp(1.15rem, 1.7vw, 1.75rem);
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.about-grid__statement p + p {
  margin-top: 2rem;
}

.about-facts {
  border-top: 0.0625rem solid var(--rule);
}

.about-facts div {
  display: grid;
  grid-template-columns: minmax(6rem, 0.8fr) 1.2fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 0.0625rem solid var(--rule);
}

.about-facts dd {
  font-size: 0.84rem;
}

.about-grid blockquote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--paper);
  background: var(--ink);
}

.about-grid blockquote > span {
  color: var(--signal);
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.7;
}

.about-grid blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  line-height: 1.25;
}

.section--contact {
  display: grid;
  grid-template-columns: 8fr 4fr;
  padding-top: 0;
}

.contact-panel {
  min-height: 37rem;
  padding: var(--section-space) var(--content-pad) 2rem;
  color: var(--paper);
  background: var(--ink);
  border-right: 0.0625rem solid var(--ink);
}

.contact-panel .section-index {
  color: var(--paper);
}

.contact-panel h2 {
  max-width: 62rem;
  margin-top: clamp(3rem, 8vw, 8rem);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.3vw, 7.4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.contact-panel > p:not(.section-index) {
  max-width: 42rem;
  margin-top: 2.5rem;
}

.contact-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.contact-panel__actions .button {
  min-width: 12rem;
}

.contact-panel__actions .button:not(.button--dark) {
  color: var(--paper);
  border-color: var(--paper);
}

.contact-panel__actions .button:not(.button--dark):hover {
  color: var(--ink);
  background: var(--paper);
}

.contact-list {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: var(--section-space) var(--content-pad) 2rem;
  font-style: normal;
}

.contact-list > * {
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 4.3rem;
  border-bottom: 0.0625rem solid var(--rule);
  text-decoration: none;
}

.contact-list > *:first-child {
  border-top: 0.0625rem solid var(--rule);
}

.contact-list span,
.contact-list > * > i {
  color: var(--graphite);
  font-family: var(--font-utility);
  font-size: 0.62rem;
  font-style: normal;
  text-transform: uppercase;
}

.contact-list b {
  min-width: 0;
  font-size: 0.78rem;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.contact-list a:hover b {
  text-decoration: underline;
}

.contact-list .status-dot {
  display: inline-block;
  vertical-align: 0.05rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  min-height: 4rem;
  padding: 0 var(--content-pad);
  font-size: 0.6rem;
  letter-spacing: 0.035em;
}

.site-footer p:nth-child(2) {
  text-align: center;
}

.site-footer a {
  justify-self: end;
  text-decoration: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: 0.22rem;
  height: 100vh;
  background: transparent;
  pointer-events: none;
}

.scroll-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--signal);
  transform: scaleY(0);
  transform-origin: top;
}

.js .reveal {
  opacity: 0;
  transform: translateY(0.75rem);
  transition: opacity 460ms var(--ease-out), transform 460ms var(--ease-out);
}

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

.js .hero-title span,
.js .hero__specialization,
.js .hero__lead,
.js .hero__sublead,
.js .hero__actions {
  opacity: 0;
  transform: translateY(0.75rem);
  animation: intro-copy 700ms var(--ease-out) forwards;
}

.js .hero-title span:nth-child(1) {
  animation-delay: 90ms;
}

.js .hero-title span:nth-child(2) {
  animation-delay: 150ms;
}

.js .hero-title span:nth-child(3) {
  animation-delay: 210ms;
}

.js .hero__specialization {
  animation-delay: 270ms;
}

.js .hero__lead {
  animation-delay: 330ms;
}

.js .hero__sublead {
  animation-delay: 390ms;
}

.js .hero__actions {
  animation-delay: 450ms;
}

.js .execution-trace__line {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: trace-draw 900ms var(--ease-out) 280ms forwards;
}

.js .execution-trace__packet {
  opacity: 0;
  animation: packet-arrive 250ms ease 980ms forwards, packet-pulse 2.8s ease-in-out 1.3s infinite;
}

@keyframes intro-copy {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes trace-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes packet-arrive {
  to {
    opacity: 1;
  }
}

@keyframes packet-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

@keyframes status-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.38;
  }
}

@media (hover: hover) and (pointer: fine) {
  .project-card--link:hover .project-card__visual img {
    transform: scale(1.02);
  }

  .project-card--link:hover .project-card__meta span:last-child {
    transform: translate(0.2rem, -0.2rem);
  }
}

@media (max-width: 74.99rem) {
  :root {
    --frame-gap: 0.75rem;
  }

  .utility-bar__meta .location {
    display: none;
  }

  .brand,
  .navigation-bar__role {
    min-width: 16.5rem;
  }

  .hero {
    grid-template-columns: minmax(18rem, 1fr) minmax(24rem, 1.2fr);
  }

  .hero__rail {
    display: none;
  }

  .hero__identity {
    border-right: 0.0625rem solid var(--rule);
  }

  .hero__visual {
    border-right: 0 !important;
  }

  .hero__profile {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    min-height: 19rem;
    border-top: 0.0625rem solid var(--rule);
  }

  .profile-facts {
    margin-top: 0;
  }

  .hero__profile .text-link {
    grid-column: 1 / -1;
  }

  .hero-title {
    font-size: clamp(4rem, 7vw, 5.7rem);
  }

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

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

  .project-card:nth-child(3) {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 0.0625rem solid var(--ink);
  }

  .project-card:nth-child(3) .project-card__visual {
    aspect-ratio: auto;
  }

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

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

  .metric-card:nth-child(n + 3),
  .skill-card:nth-child(n + 3) {
    border-top: 0.0625rem solid var(--ink);
  }

  .metric-card:last-child,
  .skill-card:last-child {
    border-right: 0;
  }

  .section--contact {
    grid-template-columns: 7fr 5fr;
  }
}

@media (max-width: 68.74rem) {
  html {
    scroll-padding-top: 7.4rem;
  }

  .utility-bar__meta .clock {
    display: none;
  }

  .navigation-bar {
    position: relative;
    justify-content: space-between;
  }

  .navigation-bar__role {
    min-width: 0;
    border-right: 0;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 7rem;
    min-height: 3.65rem;
    padding: 0 1rem;
    border: 0;
    border-left: 0.0625rem solid var(--rule);
    background: transparent;
    font-size: 0.64rem;
    cursor: pointer;
  }

  .menu-toggle__icon {
    position: relative;
    display: block;
    width: 1rem;
    height: 0.8rem;
  }

  .menu-toggle__icon i {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.0625rem;
    background: var(--ink);
    transition: top 200ms ease, transform 200ms ease;
  }

  .menu-toggle__icon i:first-child {
    top: 0.2rem;
  }

  .menu-toggle__icon i:last-child {
    top: 0.6rem;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    top: 0.4rem;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    top: 0.4rem;
    transform: rotate(-45deg);
  }

  .primary-navigation {
    position: fixed;
    inset: calc(var(--frame-gap) + 7.3rem) var(--frame-gap) var(--frame-gap);
    z-index: 60;
    display: grid;
    align-content: start;
    background: var(--paper);
    border: 0.0625rem solid var(--ink);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-0.5rem);
    transition: opacity 200ms ease, transform 200ms ease, visibility 0s linear 200ms;
  }

  .primary-navigation[data-open="true"] {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .primary-navigation a {
    justify-content: space-between;
    min-height: 3.6rem;
    padding: 0 1.25rem;
    border-bottom: 0.0625rem solid var(--rule);
    font-size: 0.75rem;
  }

  .primary-navigation a::after {
    content: "↘";
  }

  .primary-navigation__language {
    display: flex !important;
    margin-top: 1rem;
    border-top: 0.0625rem solid var(--rule);
  }

  .no-js .menu-toggle {
    display: none;
  }

  .no-js .primary-navigation {
    position: static;
    display: flex;
    visibility: visible;
    opacity: 1;
    transform: none;
    border: 0;
  }

  .section-heading {
    row-gap: 1.5rem;
  }

  .section-index {
    grid-column: span 4;
  }

  .section-heading h2 {
    grid-column: 5 / -1;
  }

  .section-heading > p:last-child {
    grid-column: 5 / -1;
    padding-left: 0;
  }

  .section-heading--compact h2 {
    grid-column: 5 / -1;
  }

  .case-study__header {
    grid-template-columns: 2fr 7fr 3fr;
  }

  .case-study__content {
    grid-template-columns: 1fr 2fr;
  }

  .case-study__content > div:last-child {
    grid-column: 1 / -1;
    min-height: auto;
    border-top: 0.0625rem solid var(--rule);
  }

  .experience-card {
    grid-template-columns: 2fr 7fr 3fr;
  }

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

  .about-grid blockquote {
    grid-column: 1 / -1;
    min-height: 18rem;
    border-top: 0.0625rem solid var(--ink);
  }

  .about-grid > *:nth-child(2) {
    border-right: 0;
  }

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

  .contact-panel {
    border-right: 0;
  }

  .contact-list {
    min-height: 29rem;
  }
}

@media (max-width: 44.99rem) {
  :root {
    --frame-gap: 0.5rem;
    --content-pad: 1rem;
    --section-space: 4.5rem;
  }

  html {
    scroll-padding-top: 6.5rem;
  }

  body {
    font-size: 0.9375rem;
  }

  .site-header {
    top: var(--frame-gap);
  }

  .utility-bar {
    min-height: 3rem;
  }

  .brand {
    min-width: 0;
    padding: 0.35rem 0.85rem;
    border-right: 0;
  }

  .brand__mark {
    font-size: 1.8rem;
  }

  .brand__caption,
  .utility-bar__meta .availability {
    display: none;
  }

  .utility-bar__meta > * {
    padding: 0 0.85rem;
  }

  .navigation-bar,
  .navigation-bar__role,
  .menu-toggle {
    min-height: 3.25rem;
  }

  .navigation-bar__role {
    padding: 0 0.85rem;
    font-size: 0.58rem;
  }

  .menu-toggle {
    min-width: 6.2rem;
    min-height: 3.25rem;
  }

  .primary-navigation {
    inset: calc(var(--frame-gap) + 6.3rem) var(--frame-gap) var(--frame-gap);
  }

  .hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .hero > * {
    border-right: 0 !important;
  }

  .hero__identity {
    min-height: 39rem;
    padding: 1.25rem var(--content-pad) 1.5rem;
    border-bottom: 0.0625rem solid var(--rule);
  }

  .eyebrow {
    font-size: 0.58rem;
  }

  .hero-title {
    margin-top: 3.25rem;
    font-size: clamp(3.15rem, 15.5vw, 4.35rem);
    line-height: 0.9;
    letter-spacing: -0.055em;
  }

  .hero__specialization,
  .hero__sublead {
    font-size: 0.58rem;
  }

  .hero__lead {
    padding-top: 2.5rem;
    font-size: 1rem;
  }

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

  .button {
    min-height: 3rem;
  }

  .hero__visual {
    order: 2;
    aspect-ratio: 4 / 5;
    border-bottom: 0.0625rem solid var(--rule);
  }

  .hero__profile {
    order: 3;
    display: flex;
    min-height: 31rem;
    gap: 0;
    padding: 1.5rem var(--content-pad);
    border-top: 0;
  }

  .profile-facts {
    margin-top: auto;
  }

  .trace-labels span:nth-child(2),
  .trace-labels span:nth-child(4) {
    display: none;
  }

  .hero__visual figcaption {
    right: 1.25rem;
    left: 1.25rem;
    font-size: 0.5rem;
  }

  .section-heading {
    display: block;
    margin-bottom: 2.5rem;
  }

  .section-heading .section-index {
    margin-bottom: 1.75rem;
  }

  .section-heading h2 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  .section-heading > p:last-child {
    margin-top: 1.5rem;
    padding: 0;
  }

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

  .project-card,
  .project-card:nth-child(3) {
    display: block;
    grid-column: auto;
    border-right: 0;
    border-top: 0.0625rem solid var(--ink);
  }

  .project-card:first-child {
    border-top: 0;
  }

  .project-card:nth-child(3) .project-card__visual {
    aspect-ratio: 4 / 3;
  }

  .project-card__body {
    min-height: 14rem;
  }

  .case-study__header {
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 0;
  }

  .case-study__header > * {
    padding: 1.25rem var(--content-pad);
  }

  .case-study__number {
    grid-column: 1;
    border-right: 0 !important;
    border-bottom: 0.0625rem solid var(--rule);
  }

  .case-study__year {
    grid-row: 1;
    grid-column: 2;
    border-bottom: 0.0625rem solid var(--rule);
  }

  .case-study__header > div {
    grid-column: 1 / -1;
    border-right: 0 !important;
  }

  .case-study__header h3 {
    font-size: 1.55rem;
  }

  .case-study__content {
    grid-template-columns: 1fr;
  }

  .case-study__content > div,
  .case-study__content > div:last-child {
    grid-column: auto;
    min-height: 0;
    border-top: 0;
    border-right: 0 !important;
    border-bottom: 0.0625rem solid var(--rule);
  }

  .metric-grid,
  .skill-grid {
    grid-template-columns: 1fr;
  }

  .metric-card,
  .metric-card:nth-child(n + 3),
  .skill-card,
  .skill-card:nth-child(n + 3) {
    min-height: 18rem;
    border-top: 0.0625rem solid var(--ink);
    border-right: 0;
  }

  .metric-card:first-child,
  .skill-card:first-child {
    border-top: 0;
  }

  .metric-card strong {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .experience-card {
    grid-template-columns: 1fr;
  }

  .experience-card > * {
    min-height: 0;
    border-right: 0 !important;
    border-bottom: 0.0625rem solid var(--ink);
  }

  .experience-card > *:last-child {
    border-bottom: 0;
  }

  .experience-card__timeline {
    grid-template-rows: auto;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .experience-card__timeline span {
    width: auto;
    height: 0.0625rem;
    margin: 0 1rem;
  }

  .experience-card__timeline span::before,
  .experience-card__timeline span::after {
    top: -0.2rem;
  }

  .experience-card__timeline span::after {
    right: 0;
    left: auto;
  }

  .experience-card__main {
    min-height: 30rem;
  }

  .experience-card__main h3 {
    font-size: 2.15rem;
  }

  .experience-card__evidence {
    min-height: 22rem;
  }

  .skill-card {
    min-height: 21rem;
  }

  .skill-card ul {
    margin-top: 3rem;
  }

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

  .about-grid > * {
    min-height: 0;
    border-right: 0 !important;
    border-bottom: 0.0625rem solid var(--ink);
  }

  .about-grid__statement {
    min-height: 29rem;
  }

  .about-grid__statement p {
    font-size: 1.18rem;
  }

  .about-facts {
    min-height: 22rem;
  }

  .about-grid blockquote {
    grid-column: auto;
    min-height: 20rem;
    border-top: 0;
    border-bottom: 0;
  }

  .contact-panel {
    min-height: 40rem;
  }

  .contact-panel h2 {
    margin-top: 5rem;
    font-size: clamp(3rem, 13.5vw, 4.8rem);
  }

  .contact-panel__actions {
    display: grid;
  }

  .contact-list {
    min-height: 29rem;
    padding-top: 4.5rem;
  }

  .contact-list > * {
    grid-template-columns: 4rem minmax(0, 1fr) auto;
    gap: 0.5rem;
  }

  .contact-list b {
    font-size: 0.68rem;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    min-height: 4.5rem;
    font-size: 0.54rem;
  }

  .site-footer p:nth-child(2) {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal,
  .js .hero-title span,
  .js .hero__specialization,
  .js .hero__lead,
  .js .hero__sublead,
  .js .hero__actions,
  .js .execution-trace__packet {
    opacity: 1;
    transform: none;
  }

  .js .execution-trace__line {
    stroke-dashoffset: 0;
  }
}
