:root {
  --paper: #f2efe7;
  --paper-bright: #fbf8f0;
  --ink: #111111;
  --muted: #6e6b64;
  --line: rgba(17, 17, 17, 0.2);
  --orange: #f04a23;
  --blue: #3158e6;
  --teal: #16786f;
  --acid: #d7f75b;
  --white: #fffdf7;
  --mono: ui-monospace, "SFMono-Regular", "Roboto Mono", Menlo, Consolas, monospace;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open {
  overflow-x: clip;
}

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

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
  background: rgba(242, 239, 231, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding-left: clamp(20px, 4vw, 64px);
  width: fit-content;
}

.brand-sign {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.brand-name {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-self: stretch;
}

.site-nav a,
.header-contact {
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  border-left: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--orange);
}

.header-contact {
  height: 76px;
  color: var(--white);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  height: 62px;
  padding: 0 18px;
  border: 0;
  border-left: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  font: 11px var(--mono);
  text-transform: uppercase;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
  background:
    linear-gradient(90deg, var(--paper-bright) 0%, var(--paper-bright) 48%, rgba(242, 239, 231, 0.48) 70%, rgba(17, 17, 17, 0.16) 100%),
    var(--paper-bright);
}

.hero::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  z-index: 2;
  content: "";
  background: linear-gradient(0deg, rgba(17, 17, 17, 0.4), transparent);
  pointer-events: none;
}

.hero-portrait {
  position: absolute;
  inset: 0 0 0 auto;
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  filter: saturate(0.96) contrast(1.03);
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.22;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(17, 17, 17, 0.45) 0.7px, transparent 0.8px);
  background-size: 10px 10px;
  mask-image: linear-gradient(90deg, #000, transparent 68%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(790px, 63vw);
  padding: clamp(56px, 8vw, 120px) clamp(20px, 6vw, 96px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 9px;
  height: 9px;
  background: var(--orange);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 28px;
  font-size: clamp(56px, 7vw, 108px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.92;
}

.hero-intro {
  max-width: 58ch;
  margin-bottom: 0;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.cv-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.cv-link svg {
  width: 17px;
  height: 17px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
}

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

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

.button-ghost {
  background: rgba(255, 253, 247, 0.62);
}

.hero-proof {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 50%;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(17, 17, 17, 0.7);
  backdrop-filter: blur(12px);
}

.hero-proof a {
  display: block;
  min-height: 118px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-proof a:last-child {
  border-right: 0;
}

.hero-proof a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.narrative-v2 .hero-content {
  width: min(860px, 67vw);
}

.narrative-v2 .hero h1 {
  max-width: 13ch;
  font-size: clamp(50px, 5.6vw, 86px);
}

.hero-title-static,
.hero-title-rotation {
  display: block;
}

.hero-title-rotation {
  display: grid;
  min-width: 0;
  margin-top: 0.08em;
}

.hero-title-phrase {
  grid-area: 1 / 1;
  min-width: 0;
  opacity: 0;
  transform: translateY(0.2em);
  transition: opacity 520ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-title-phrase.is-active {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1051px) {
  .narrative-v2 .hero-content {
    padding-bottom: clamp(136px, 10vw, 156px);
  }

  .narrative-v2 .hero-intro {
    width: min(58ch, calc(50vw - clamp(20px, 6vw, 96px) - 24px));
    max-width: none;
  }
}

@media (min-width: 761px) and (max-width: 1400px) {
  .hero-proof a {
    padding: 20px 14px;
  }

  .hero-proof strong {
    font-size: clamp(8px, 0.72vw, 10px);
    overflow-wrap: anywhere;
  }

  .hero-proof span {
    font-size: 11px;
  }
}

@media (min-width: 761px) and (max-width: 1050px) {
  .narrative-v2 .hero .eyebrow,
  .narrative-v2 .hero h1,
  .narrative-v2 .hero-intro {
    width: calc(46vw - clamp(20px, 6vw, 96px) - 24px);
    max-width: none;
  }

  .narrative-v2 .hero h1 {
    font-size: clamp(44px, 5.6vw, 59px);
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .narrative-v2 .hero-actions {
    display: grid;
    width: calc(46vw - clamp(20px, 6vw, 96px) - 24px);
  }

  .narrative-v2 .hero-actions .button {
    width: 100%;
  }
}

.section-index {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.section-index span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
}

.section-index p {
  margin: 0;
}

.profile-section {
  display: grid;
  grid-template-columns: 0.55fr 1.35fr 0.8fr;
  border-bottom: 1px solid var(--line);
}

.profile-section > * {
  padding: clamp(40px, 6vw, 88px) clamp(24px, 4vw, 64px);
}

.profile-section > * + * {
  border-left: 1px solid var(--line);
}

.profile-statement {
  background: var(--paper-bright);
}

.profile-statement p {
  max-width: 63ch;
  font-size: 17px;
}

.profile-statement .statement-lead {
  max-width: 20ch;
  margin-bottom: 38px;
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: 600;
  line-height: 1.08;
}

.profile-aside {
  display: flex;
  flex-direction: column;
  background: #dedbd2;
}

.phd-note {
  padding-top: 18px;
  border-top: 5px solid var(--orange);
}

.phd-note > span {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.phd-note > p {
  margin: 32px 0 0;
  font-size: clamp(20px, 1.7vw, 27px);
  font-weight: 500;
  line-height: 1.3;
}

.phd-methods {
  margin: 34px 0 44px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.profile-aside > a {
  align-self: flex-start;
  margin-top: auto;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.personal-line {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-weight: 600;
}

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

.context-heading {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.context-heading > * {
  padding: clamp(42px, 6vw, 90px) clamp(24px, 5vw, 76px);
}

.context-heading > div:last-child {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.context-heading h2 {
  max-width: 18ch;
  margin-bottom: 24px;
  font-size: clamp(38px, 5vw, 74px);
  font-weight: 500;
  line-height: 1;
}

.context-heading > div:last-child > p {
  max-width: 64ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.context-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.context-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 670px;
  padding: clamp(34px, 4vw, 60px);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

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

.context-corporate {
  color: var(--ink);
  background: var(--paper-bright);
}

.context-analysis {
  color: var(--ink);
  background: var(--orange);
}

.context-build {
  color: var(--white);
  background: var(--teal);
}

.context-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.context-label span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid currentColor;
}

.context-card h3 {
  max-width: 14ch;
  margin: 72px 0 42px;
  font-size: clamp(30px, 2.8vw, 40px);
  font-weight: 600;
  line-height: 1.05;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.narrative-v2 .context-card h3 {
  max-width: none;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.1;
  hyphens: none;
  overflow-wrap: normal;
}

.context-card dl {
  margin: 0;
}

.context-card dl > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid currentColor;
}

.context-card dt {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.context-card dd {
  margin: 0;
  font-size: 13px;
}

.context-card > a {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 32px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.process-section {
  border-bottom: 1px solid var(--line);
  background: var(--paper-bright);
}

.process-intro {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  border-bottom: 1px solid var(--line);
}

.process-intro > * {
  padding: clamp(42px, 6vw, 90px) clamp(24px, 5vw, 76px);
}

.process-intro > div:last-child {
  border-left: 1px solid var(--line);
}

.process-intro h2 {
  max-width: 16ch;
  margin-bottom: 24px;
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 500;
  line-height: 1;
}

.process-intro > div:last-child > p {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid li {
  min-width: 0;
  min-height: 310px;
  padding: clamp(32px, 4vw, 58px);
  border-right: 1px solid var(--line);
}

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

.process-grid li > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  font: 10px var(--mono);
}

.process-grid h3 {
  margin: 64px 0 18px;
  font-size: clamp(28px, 2.7vw, 40px);
  font-weight: 600;
  line-height: 1;
}

.process-grid p {
  max-width: 30ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.profile-tags span,
.project-tags span {
  padding: 7px 9px;
  border: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

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

.section-heading {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.section-heading > * {
  padding: clamp(42px, 6vw, 90px) clamp(24px, 5vw, 76px);
}

.section-heading h2 {
  max-width: 17ch;
  margin-bottom: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 500;
  line-height: 1;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.capability {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  min-height: 330px;
  padding: clamp(34px, 4vw, 64px);
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.capability:nth-child(even) {
  border-right: 0;
}

.capability-number {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 12px;
}

.capability h3 {
  max-width: 18ch;
  margin-bottom: 18px;
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.05;
}

.capability p {
  max-width: 57ch;
  color: rgba(255, 255, 255, 0.7);
}

.capability ul {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  align-self: end;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.capability li {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.work-section {
  padding-top: clamp(50px, 7vw, 100px);
}

.work-section > .section-index,
.work-intro {
  margin-right: clamp(24px, 5vw, 76px);
  margin-left: clamp(24px, 5vw, 76px);
}

.work-intro {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 60px;
  padding: 48px 0 70px;
}

.work-intro h2 {
  max-width: 17ch;
  margin-bottom: 0;
  font-size: clamp(42px, 5.5vw, 82px);
  font-weight: 600;
  line-height: 0.98;
}

.work-intro p {
  max-width: 42ch;
  margin-bottom: 0;
  font-size: 18px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.proof-grid .project {
  position: relative;
  padding: clamp(32px, 3.5vw, 52px);
  border-right: 1px solid var(--line);
  cursor: pointer;
  transition: opacity 320ms ease, filter 320ms ease;
}

.proof-grid .project::after {
  position: absolute;
  inset: 8px;
  z-index: 2;
  border: 2px solid currentColor;
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scale(0.985);
  transition: opacity 280ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.proof-grid .project h3 {
  overflow-wrap: anywhere;
  hyphens: auto;
}

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

.proof-grid.has-active .project:not(.is-active) {
  opacity: 0.82;
  filter: saturate(0.82);
}

.proof-grid .project.is-active {
  filter: brightness(1.035) saturate(1.04);
}

.proof-grid .project.is-active::after {
  opacity: 0.7;
  transform: scale(1);
}

.proof-grid .project:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: -5px;
}

.project {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 450px;
  padding: clamp(32px, 5vw, 72px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.project-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.project h3 {
  max-width: 15ch;
  margin: auto 0 24px;
  padding-top: 70px;
  font-size: clamp(32px, 4.2vw, 60px);
  font-weight: 600;
  line-height: 1;
}

.narrative-v2 .proof-grid .project h3 {
  max-width: none;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.08;
  hyphens: none;
  overflow-wrap: normal;
}

.project p {
  max-width: 64ch;
}

.project-result {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid currentColor;
  font-size: 14px;
}

.project-result strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.project-more {
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project.is-active .project-more {
  opacity: 1;
  transform: translateY(0);
}

.project-more-inner {
  min-height: 0;
}

.project-more-inner > span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.project-more-inner > p {
  margin-bottom: 0;
  font-size: 14px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 0;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-interaction {
  display: grid;
  grid-template-areas: "interaction";
  align-items: end;
  min-height: 124px;
  margin-top: 24px;
}

.project-interaction > * {
  grid-area: interaction;
}

.project.is-active .project-tags {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
}

.project-featured {
  background: var(--paper-bright);
}

.project-blue {
  color: var(--white);
  background: var(--blue);
}

.project-orange {
  background: var(--orange);
}

.project-dark {
  color: var(--white);
  background: var(--teal);
}

.earlier-work {
  display: grid;
  grid-template-columns: 0.7fr repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.earlier-work > * {
  min-height: 260px;
  padding: 34px;
  border-right: 1px solid var(--line);
}

.earlier-work > *:last-child {
  border-right: 0;
}

.earlier-head {
  background: var(--acid);
}

.earlier-head span,
.earlier-work article > span {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.earlier-head p {
  max-width: 24ch;
  margin: 70px 0 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.15;
}

.earlier-work article h3 {
  max-width: 22ch;
  margin: 54px 0 14px;
  font-size: 23px;
  line-height: 1.12;
}

.earlier-work article p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.vita-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  min-width: 0;
  border-bottom: 1px solid var(--ink);
}

.vita-heading {
  min-width: 0;
  padding: clamp(50px, 7vw, 100px) clamp(24px, 5vw, 76px);
  border-right: 1px solid var(--line);
}

.vita-heading h2 {
  position: sticky;
  top: 130px;
  max-width: 12ch;
  margin: 80px 0 0;
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 600;
  line-height: 1;
}

.vita-heading > p {
  max-width: 43ch;
  margin-top: 28px;
  color: var(--muted);
}

.timeline-item {
  display: grid;
  grid-template-columns: 130px 1fr 0.75fr;
  min-width: 0;
  gap: 28px;
  min-height: 155px;
  padding: 38px clamp(24px, 4vw, 60px);
  border-bottom: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: 0;
}

.timeline-item time,
.timeline-item > span {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.15;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.timeline-item > span {
  color: var(--muted);
}

.narrative-v2 .vita-heading h2 {
  max-width: 14ch;
  font-size: clamp(36px, 4.3vw, 62px);
}

.narrative-v2 .vita-heading {
  padding: 0;
}

.narrative-v2 .vita-heading-inner {
  padding: clamp(50px, 7vw, 100px) clamp(24px, 5vw, 76px);
}

.narrative-v2 .timeline-item {
  grid-template-columns: 118px minmax(0, 1.25fr) minmax(160px, 0.65fr);
  grid-template-areas:
    "time role tags"
    "time summary summary";
  row-gap: 16px;
  min-height: 210px;
}

.narrative-v2 .timeline-item time {
  grid-area: time;
}

.narrative-v2 .timeline-role {
  grid-area: role;
}

.narrative-v2 .timeline-item > span {
  grid-area: tags;
}

.timeline-item .timeline-org {
  color: var(--muted);
}

.timeline-item .timeline-summary {
  grid-area: summary;
  max-width: none;
  margin-top: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

.timeline-arc {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(250px, 0.5fr) minmax(0, 1.5fr);
  min-height: 440px;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  background: var(--paper-bright);
}

.timeline-arc-rail {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 30px 20px;
  border-right: 1px solid var(--line);
}

.timeline-arc-rail span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.timeline-arc-rail i {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 15px;
  height: 15px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: translateX(-50%);
}

.timeline-arc-module {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  margin: 12px 0 12px 12px;
  padding: clamp(34px, 4vw, 56px);
  background: color-mix(in srgb, var(--acid) 38%, var(--paper-bright));
}

.timeline-arc-module h2 {
  margin: 0;
  scroll-margin-top: 30px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.timeline-arc-line {
  position: relative;
  height: 1px;
  margin-top: 18px;
  background: var(--line);
}

.timeline-arc-line span {
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
  transform: translateY(-50%);
}

.timeline-arc-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(48px, 6vw, 88px) clamp(44px, 7vw, 112px);
}

.timeline-arc-kicker {
  display: grid;
  grid-template-columns: 12px auto 34px;
  align-items: center;
  align-self: flex-end;
  margin-bottom: clamp(42px, 5vw, 72px);
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.timeline-arc-kicker > * {
  padding: 8px 10px;
}

.timeline-arc-kicker i {
  width: 9px;
  height: 9px;
  margin-left: 10px;
  padding: 0;
  border: 1px solid #a8c80e;
  border-radius: 50%;
}

.timeline-arc-kicker b {
  border-left: 1px solid var(--line);
  font-weight: 500;
}

.timeline-arc-content > p {
  max-width: 62ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 400;
  line-height: 1.48;
}

.timeline-arc-target {
  position: absolute;
  right: -125px;
  bottom: -140px;
  width: 330px;
  height: 330px;
  border: 1px dashed rgba(17, 17, 17, 0.18);
  border-radius: 50%;
}

.timeline-arc-target::before,
.timeline-arc-target::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: rgba(17, 17, 17, 0.18);
  transform: translate(-50%, -50%);
}

.timeline-arc-target::before {
  width: 150px;
  height: 1px;
}

.timeline-arc-target::after {
  width: 1px;
  height: 150px;
}

.timeline-arc-target span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b8d51f;
  transform: translate(-50%, -50%);
}

@media (min-width: 1051px) {
  .narrative-v2 .vita-heading-inner {
    position: sticky;
    top: 76px;
    min-height: calc(100vh - 76px);
  }

  .narrative-v2 .vita-heading h2 {
    position: static;
  }
}

@media (max-width: 1050px) {
  .narrative-v2 .vita-section {
    grid-template-columns: 1fr;
  }

  .narrative-v2 .vita-heading {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .narrative-v2 .vita-heading h2 {
    position: static;
    max-width: 18ch;
    margin-top: 50px;
  }
}

@media (max-width: 1050px) {
  .timeline-arc {
    grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1.48fr);
  }

  .timeline-arc-rail {
    display: none;
  }
}

.contact-section {
  position: relative;
  min-height: 620px;
  padding: clamp(70px, 10vw, 150px) clamp(24px, 8vw, 120px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.contact-section h2 {
  position: relative;
  z-index: 2;
  max-width: 13ch;
  margin-bottom: 28px;
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 600;
  line-height: 0.94;
}

.contact-section > p:not(.eyebrow) {
  position: relative;
  z-index: 2;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.contact-actions {
  position: relative;
  z-index: 2;
}

.button-ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.contact-orbit {
  position: absolute;
  right: -4vw;
  top: 50%;
  display: grid;
  place-items: center;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  transform: translateY(-50%);
}

.contact-orbit::before,
.contact-orbit::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.contact-orbit::before {
  width: 67%;
  height: 67%;
}

.contact-orbit::after {
  width: 34%;
  height: 34%;
  background: var(--orange);
  border-color: var(--orange);
}

.contact-orbit span {
  z-index: 1;
  color: var(--white);
  font: 700 14px var(--mono);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto auto;
  align-items: center;
  min-height: 78px;
  padding: 0 clamp(20px, 4vw, 64px);
  font: 10px var(--mono);
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 18px;
}

.footer-legal a,
.site-footer > a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.footer-legal a:hover,
.site-footer > a:hover {
  border-bottom-color: currentColor;
}

.legal-page {
  background: var(--paper-bright);
}

.legal-page .site-header {
  position: static;
}

.legal-main {
  display: grid;
  grid-template-columns: minmax(360px, 0.65fr) minmax(0, 1.35fr);
  min-height: calc(100vh - 154px);
  border-bottom: 1px solid var(--ink);
}

.legal-intro,
.legal-content {
  padding: clamp(48px, 7vw, 110px) clamp(24px, 4vw, 64px);
}

.legal-intro {
  border-right: 1px solid var(--line);
}

.legal-intro .eyebrow {
  margin-bottom: 48px;
}

.legal-intro h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(44px, 4vw, 62px);
  font-weight: 600;
  line-height: 0.98;
}

.legal-content {
  max-width: 980px;
}

.legal-content section {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.legal-content section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-content h2 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.15;
}

.legal-content h3 {
  margin: 24px 0 10px;
  font-size: 17px;
}

.legal-content p,
.legal-content li {
  max-width: 72ch;
  color: #3f3d38;
}

.legal-content a {
  border-bottom: 1px solid currentColor;
}

.legal-content address {
  font-style: normal;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-draft-note {
  padding: 20px;
  border-left: 5px solid var(--orange);
  background: color-mix(in srgb, var(--acid) 32%, var(--paper-bright));
  font-size: 14px;
}

.legal-placeholder {
  color: #b52f10;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

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

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

@media (max-width: 900px) {
  .legal-main {
    grid-template-columns: 1fr;
  }

  .legal-intro {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .legal-intro .eyebrow {
    margin-bottom: 28px;
  }
}

@media (max-width: 1050px) {
  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

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

  .site-nav.is-open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    background: var(--paper-bright);
    border-bottom: 1px solid var(--ink);
  }

  .site-nav.is-open a {
    min-height: 58px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-content {
    width: 70vw;
    padding-bottom: 190px;
  }

  .hero-portrait,
  .hero-proof {
    width: 54%;
  }

  .profile-section {
    grid-template-columns: 0.42fr 1.2fr;
  }

  .profile-aside {
    grid-column: 1 / -1;
    min-height: 320px;
    border-top: 1px solid var(--line);
    border-left: 0 !important;
  }

  .context-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

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

  .process-grid li {
    border-bottom: 1px solid var(--line);
  }

  .process-grid li:nth-child(even) {
    border-right: 0;
  }

  .proof-grid[data-active="0"],
  .proof-grid[data-active="1"],
  .proof-grid[data-active="2"] {
    grid-template-columns: 1fr;
  }

  .context-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .context-card:last-child {
    border-bottom: 0;
  }

  .context-card > a {
    margin-top: 44px;
  }

  .proof-grid .project {
    border-right: 0;
  }

  .proof-grid.has-active .project:not(.is-active) {
    opacity: 1;
    filter: none;
  }

  .earlier-work {
    grid-template-columns: 1fr 1fr;
  }

  .earlier-head {
    grid-column: 1 / -1;
  }

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

  .vita-heading {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .vita-heading h2 {
    position: static;
    max-width: 16ch;
    margin-top: 50px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 62px;
  }

  .site-header {
    min-height: 62px;
  }

  .brand {
    padding-left: 14px;
  }

  .brand-sign {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 11px;
  }

  .header-contact {
    display: none;
  }

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

  .site-nav.is-open {
    top: 100%;
    max-height: calc(100vh - 62px);
  }

  .hero {
    display: block;
    min-height: 830px;
    padding-top: 0;
    background: var(--paper-bright);
  }

  .hero-portrait {
    inset: auto 0 0 0;
    width: 100%;
    height: 52%;
    object-position: 50% 24%;
  }

  .hero::after {
    position: absolute;
    inset: 38% 0 auto;
    z-index: 1;
    height: 28%;
    content: "";
    background: linear-gradient(180deg, var(--paper-bright), transparent);
  }

  .hero-content {
    width: 100%;
    padding: 50px 20px 300px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-intro {
    max-width: 42ch;
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-proof {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-proof a {
    min-height: 92px;
    padding: 16px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .hero-proof a:nth-child(even) {
    border-right: 0;
  }

  .hero-proof a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .hero-proof strong {
    font-size: 10px;
  }

  .hero-proof span {
    font-size: 9px;
  }

  .profile-section,
  .context-heading,
  .process-intro,
  .section-heading,
  .capability-list,
  .work-intro,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .profile-section > * + * {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .profile-section > .section-index {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .profile-statement .statement-lead {
    font-size: 34px;
  }

  .context-heading > div:last-child {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }

  .process-intro > div:last-child {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-intro h2 {
    font-size: 42px;
  }

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

  .process-grid li,
  .process-grid li:nth-child(even) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid h3 {
    margin-top: 44px;
  }

  .context-heading h2 {
    font-size: 42px;
  }

  .context-card h3 {
    margin-top: 48px;
    font-size: 34px;
  }

  .context-card dl > div {
    grid-template-columns: 78px 1fr;
  }

  .section-heading h2 {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
    font-size: 42px;
  }

  .capability {
    grid-template-columns: 40px 1fr;
    min-height: 0;
    border-right: 0;
  }

  .capability h3 {
    font-size: 29px;
  }

  .work-intro {
    gap: 28px;
    padding-bottom: 48px;
  }

  .work-intro h2 {
    font-size: 45px;
  }

  .project {
    width: 100%;
    min-height: 420px;
    border-right: 0;
  }

  .project-meta,
  .project h3,
  .project p,
  .vita-heading h2,
  .timeline-item h3,
  .timeline-item p,
  .timeline-item > span {
    overflow-wrap: anywhere;
  }

  .project h3 {
    font-size: 37px;
  }

  .earlier-work {
    grid-template-columns: 1fr;
  }

  .earlier-head {
    grid-column: auto;
  }

  .earlier-work > * {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .narrative-v2 .timeline-item {
    grid-template-columns: 1fr;
    grid-template-areas:
      "time"
      "role"
      "summary"
      "tags";
    min-height: 0;
  }

  .timeline-arc-content > p {
    font-size: 16px;
    line-height: 1.5;
  }

  .timeline-arc {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0;
  }

  .timeline-arc-module {
    min-height: 170px;
    margin: 0;
    padding: 28px 24px;
  }

  .timeline-arc-content {
    padding: 32px 24px 48px;
  }

  .timeline-arc-kicker {
    align-self: flex-start;
    margin-bottom: 32px;
  }

  .timeline-arc-target {
    right: -115px;
    bottom: -90px;
    width: 230px;
    height: 230px;
  }

  .contact-section {
    min-height: 690px;
    padding-bottom: 290px;
  }

  .contact-section h2 {
    font-size: 51px;
  }

  .contact-orbit {
    top: auto;
    right: -20vw;
    bottom: -26vw;
    width: 85vw;
    transform: none;
  }

  .contact-actions {
    display: grid;
  }

  .narrative-v2 .hero {
    min-height: 940px;
  }

  .narrative-v2 .hero-content {
    width: 100%;
  }

  .narrative-v2 .hero-portrait {
    height: 40%;
  }

  .narrative-v2 .hero h1 {
    max-width: 13ch;
    font-size: clamp(46px, 13vw, 60px);
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding-block: 20px;
  }

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

  .site-footer > a {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-legal {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .legal-main {
    grid-template-columns: 1fr;
  }

  .legal-intro {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .legal-intro h1 {
    font-size: clamp(44px, 14vw, 66px);
  }
}

@media (max-width: 390px) {
  .brand-name {
    display: none;
  }

  .hero {
    min-height: 880px;
  }

  .narrative-v2 .hero {
    min-height: 1040px;
  }

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

  .hero-proof a {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    align-items: center;
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .hero-proof a:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .hero-proof a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 900px) {
  .hero,
  .narrative-v2 .hero {
    display: grid;
    grid-template-areas:
      "content"
      "portrait"
      "proof";
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    overflow: hidden;
    background: var(--paper-bright);
  }

  .hero::before,
  .hero::after,
  .hero-noise {
    display: none;
  }

  .hero-content,
  .narrative-v2 .hero-content {
    grid-area: content;
    width: 100%;
    padding: clamp(40px, 7vw, 62px) clamp(20px, 6vw, 48px) clamp(42px, 7vw, 62px);
  }

  .narrative-v2 .hero .eyebrow,
  .narrative-v2 .hero h1,
  .narrative-v2 .hero-intro,
  .narrative-v2 .hero-actions {
    width: auto;
  }

  .narrative-v2 .hero h1 {
    max-width: 15ch;
    font-size: clamp(44px, 8vw, 64px);
  }

  .hero-title-phrase {
    overflow-wrap: normal;
  }

  .hero-intro,
  .narrative-v2 .hero-intro {
    max-width: 60ch;
    font-size: clamp(15px, 2.1vw, 17px);
  }

  .hero-actions,
  .narrative-v2 .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 620px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-portrait,
  .narrative-v2 .hero-portrait {
    position: relative;
    inset: auto;
    grid-area: portrait;
    width: 100%;
    max-width: none;
    height: clamp(360px, 56vw, 500px);
    object-position: 50% 28%;
  }

  .hero-proof {
    position: relative;
    right: auto;
    bottom: auto;
    grid-area: proof;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    min-height: 0;
  }

  .hero-proof a {
    min-height: clamp(88px, 14vw, 108px);
    padding: 16px;
  }

  .hero-proof a:nth-child(even) {
    border-right: 0;
  }

  .hero-proof a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .hero-proof strong {
    font-size: 10px;
    overflow-wrap: normal;
  }

  .hero-proof span {
    font-size: 10px;
    line-height: 1.4;
  }

  .context-heading,
  .process-intro,
  .work-intro,
  .profile-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .context-heading > div:last-child,
  .process-intro > div:last-child,
  .profile-section > * + * {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .context-heading > div:last-child {
    border-top-color: rgba(255, 255, 255, 0.25);
  }

  .context-heading h2,
  .process-intro h2 {
    max-width: 17ch;
    font-size: clamp(38px, 6.8vw, 52px);
  }

  .context-card {
    padding: clamp(34px, 6vw, 52px);
  }

  .context-card h3,
  .narrative-v2 .context-card h3 {
    margin-top: 44px;
    font-size: clamp(25px, 4.4vw, 34px);
  }

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

  .process-grid li,
  .process-grid li:nth-child(even) {
    min-height: 260px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .process-grid li:nth-child(even) {
    border-right: 0;
  }

  .process-grid li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .process-grid h3 {
    margin-top: 48px;
  }

  .work-intro {
    align-items: start;
    gap: 24px;
  }

  .work-intro h2 {
    max-width: 18ch;
    font-size: clamp(40px, 7vw, 56px);
  }

  .profile-section > .section-index {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .profile-statement .statement-lead {
    font-size: clamp(28px, 5vw, 38px);
  }

  .profile-aside {
    grid-column: auto;
    min-height: 0;
  }

  .narrative-v2 .timeline-item {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "time"
      "role"
      "summary"
      "tags";
    gap: 14px;
    min-height: 0;
  }

  .timeline-arc {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .timeline-arc-module {
    min-height: 150px;
    margin: 0;
    padding: 28px clamp(24px, 6vw, 48px);
  }

  .timeline-arc-content {
    padding: 36px clamp(24px, 6vw, 48px) 56px;
  }

  .contact-section {
    min-height: 0;
    padding: clamp(64px, 10vw, 90px) clamp(24px, 7vw, 56px) 250px;
  }

  .contact-section h2 {
    max-width: 15ch;
    font-size: clamp(42px, 8vw, 60px);
    overflow-wrap: normal;
  }

  .contact-orbit {
    right: -12vw;
    bottom: -32vw;
    width: min(70vw, 440px);
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 14px 24px;
    min-height: 0;
    padding-block: 20px;
  }

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

  .site-footer > a {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-legal {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (min-width: 901px) and (max-width: 1050px) {
  .narrative-v2 .hero h1 {
    font-size: clamp(42px, 4.8vw, 50px);
  }

  .narrative-v2 .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: calc(46vw - clamp(20px, 6vw, 96px) - 24px);
    max-width: none;
  }

  .narrative-v2 .hero-actions .button {
    width: 100%;
  }

  .contact-section h2 {
    max-width: 15ch;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 62px;
  }

  .narrative-v2 .hero h1 {
    font-size: clamp(42px, 11vw, 50px);
  }

  .hero-actions,
  .narrative-v2 .hero-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-proof a {
    display: block;
    grid-template-columns: none;
    align-items: initial;
    min-height: 92px;
    padding: 14px 12px;
  }

  .hero-proof strong,
  .hero-proof span {
    font-size: 9px;
  }

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

  .process-grid li,
  .process-grid li:nth-child(even),
  .process-grid li:nth-last-child(-n + 2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .context-heading h2,
  .process-intro h2,
  .work-intro h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .contact-section h2 {
    font-size: clamp(40px, 11vw, 48px);
  }
}

@media (max-width: 360px) {
  .narrative-v2 .hero h1 {
    font-size: clamp(36px, 10.5vw, 38px);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

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

  .hero-title-phrase {
    transition: none;
  }
}
