:root {
  --ink: #2b2c33;
  --paper: #ffffff;
  --blue: #2196f3;
  --red: #e65045;
  --green: #21a77b;
  --yellow: #e3b437;
  --muted: #73757e;
  --line-soft: #d9dadd;
  --sans: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  --serif: Georgia, "Songti SC", "STSong", serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

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

::selection {
  color: #fff;
  background: var(--red);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 75px;
  pointer-events: none;
}

.brand,
.menu-toggle {
  position: absolute;
  top: 24px;
  z-index: 52;
  pointer-events: auto;
}

.brand {
  left: 28px;
  display: inline-flex;
  height: 38px;
  align-items: center;
  gap: 10px;
  transition: opacity 180ms ease;
}

.brand-avatar {
  display: block;
  width: 38px;
  height: 38px;
  border: 3px solid var(--ink);
  background: #fff;
  border-radius: 50%;
  object-fit: cover;
}

.brand-name {
  display: inline-flex;
  height: 36px;
  align-items: center;
  border-left: 7px solid var(--blue);
  padding: 0 10px;
  color: #fff;
  background: var(--ink);
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.menu-toggle {
  right: 27px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
}

.menu-toggle img {
  width: 25px;
  height: 25px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 51;
  display: grid;
  visibility: hidden;
  place-items: center;
  overflow-y: auto;
  padding: 75px 20px 45px;
  opacity: 0;
  background: rgba(43, 44, 51, 0.985);
  pointer-events: auto;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 180px);
  gap: 30px;
}

.menu-tile {
  position: relative;
  display: grid;
  width: 180px;
  height: 170px;
  align-content: center;
  justify-items: center;
  border: 3px solid #fff;
  color: #fff;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.menu-tile:hover,
.menu-tile:focus-visible,
.menu-tile.is-active {
  border-color: var(--blue);
  color: var(--ink);
  background: var(--blue);
}

.menu-tile:hover {
  transform: translateY(-4px);
}

.menu-tile b {
  font-size: 55px;
  line-height: 0.95;
}

.menu-tile span {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 800;
}

.menu-tile img {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 21px;
  height: 21px;
  filter: invert(1);
}

.menu-tile:hover img,
.menu-tile:focus-visible img,
.menu-tile.is-active img {
  filter: none;
}

.menu-tile.is-active b,
.menu-tile.is-active span {
  display: none;
}

.menu-tile.is-active img {
  position: static;
  width: 52px;
  height: 52px;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .brand {
  opacity: 0;
  pointer-events: none;
}

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

body.menu-open .menu-overlay {
  visibility: visible;
  opacity: 1;
}

#routeView {
  min-height: 100vh;
  outline: none;
}

.page {
  display: grid;
  min-height: 100vh;
  align-items: start;
  padding: 100px 20px 50px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.page-shell {
  width: 100%;
  margin: 0 auto;
}

.hello-shell {
  width: 810px;
}

.wide-shell {
  width: 980px;
}

.article-shell {
  width: 980px;
}

.page--hello {
  align-items: center;
  padding-top: 105px;
  padding-bottom: 30px;
}

.hello-title,
.section-title {
  position: relative;
  margin: 0;
  border-left: 14px solid var(--blue);
  color: #fff;
  background: var(--ink);
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: 0;
}

.hello-title {
  width: max-content;
  max-width: 100%;
  min-width: 580px;
  min-height: 120px;
  padding: 23px 34px 25px;
  font-size: 64px;
  line-height: 1.1;
  text-shadow: 5px 2px 0 rgba(230, 80, 69, 0.28), -4px -1px 0 rgba(33, 150, 243, 0.28);
}

.hello-copy {
  margin-top: 37px;
  font: 400 19px/1.62 var(--serif);
}

.hello-copy p {
  margin: 0 0 20px;
}

.inline-label {
  display: inline-block;
  margin: 0 0.08em;
  padding: 2px 8px 3px;
  vertical-align: middle;
  color: #fff;
  background: var(--ink);
  font-weight: 700;
  line-height: 1.3;
  transition: background 130ms ease;
}

.inline-label:hover {
  background: var(--blue);
}

.element-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 38px;
  padding-top: 40px;
  border-top: 3px solid var(--ink);
}

.element-nav a {
  display: grid;
  aspect-ratio: 1;
  place-content: center;
  border: 3px solid var(--ink);
  text-align: center;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.element-nav a:hover,
.element-nav a:focus-visible {
  border-color: var(--blue);
  color: #fff;
  background: var(--ink);
  transform: translateY(-5px);
}

.element-nav b {
  font-size: 52px;
  line-height: 0.95;
}

.element-nav span {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 800;
}

.quick-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  margin-top: 27px;
}

.quick-links a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  transition: transform 150ms ease;
}

.quick-links a:hover {
  transform: translateY(-4px);
}

.quick-links .icon {
  width: 29px;
  height: 29px;
}

.section-title {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  font-size: 32px;
  line-height: 1;
}

.section-title .icon {
  width: 26px;
  height: 26px;
  filter: invert(1);
}

.about-grid {
  display: grid;
  grid-template-columns: 470px 470px;
  gap: 40px;
  margin-top: 40px;
}

.prose {
  font: 400 20px/1.62 var(--serif);
}

.prose p {
  margin: 0 0 20px;
}

.prose strong {
  font-weight: 700;
}

.skills h2,
.note-list h2,
.honors-block > h2 {
  margin: 0 0 15px;
  font-size: 27px;
  line-height: 1.2;
}

.skills {
  padding-top: 1px;
}

.skill-row {
  height: 45px;
}

.skill-bar {
  position: relative;
  display: flex;
  width: var(--skill);
  min-width: 250px;
  height: 31px;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 0 10px;
  color: #fff;
  background: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.skill-bar::after {
  position: absolute;
  right: -4px;
  bottom: -6px;
  left: 0;
  height: 5px;
  content: "";
  background: repeating-linear-gradient(135deg, var(--ink) 0 1px, transparent 1px 4px);
}

.skill-bar b {
  font-size: 20px;
  font-style: italic;
}

.stack-strip {
  margin-top: 42px;
  padding-top: 37px;
  border-top: 3px solid var(--ink);
  text-align: center;
}

.stack-strip p {
  margin: 0 0 27px;
  font: 400 20px/1.5 var(--serif);
}

.stack-strip ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stack-strip li {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
}

.achievement-lead {
  display: grid;
  grid-template-columns: 470px 470px;
  gap: 40px;
  margin-top: 40px;
}

.proof-visual {
  position: relative;
  display: block;
  height: 305px;
  overflow: hidden;
  border: 5px solid var(--ink);
  background: #f2f2ef;
}

.proof-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f5f5f2;
  transition: transform 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.proof-visual > span:last-child {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 13px 16px;
  color: #fff;
  background: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.proof-visual:hover .proof-visual__image,
.proof-visual:focus-visible .proof-visual__image {
  transform: scale(1.015);
}

.note-list {
  min-width: 0;
}

.note-list a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 2px solid var(--ink);
  font: 700 16px/1.35 var(--sans);
}

.note-list a:last-child {
  border-bottom: 2px solid var(--ink);
}

.note-list .icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.note-list a:hover {
  color: var(--blue);
}

.honors-block {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 3px solid var(--ink);
}

.honors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.honors-grid article {
  display: grid;
  min-height: 90px;
  align-content: center;
  gap: 7px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 15px 18px;
}

.honors-grid strong {
  font-size: 17px;
}

.honors-grid span {
  color: var(--muted);
  font: 400 15px/1.5 var(--serif);
}

.badge-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-top: 42px;
}

.badge-strip span {
  display: grid;
  min-height: 95px;
  place-items: center;
  border: 3px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.badge-strip .icon {
  width: 33px;
  height: 33px;
}

.project-wall {
  display: grid;
  grid-template-columns: 470px 470px;
  gap: 40px;
  margin-top: 40px;
}

.project-wall__side {
  display: grid;
  gap: 30px;
}

.project-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 5px solid var(--ink);
  background-color: var(--card-bg, #eef0ed);
  background-image: var(--card-image);
  background-position: center;
  background-size: cover;
}

.project-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(33, 150, 243, 0.12);
  opacity: 0;
  transition: opacity 180ms ease;
}

.project-card:hover::after {
  opacity: 1;
}

.project-card--feature {
  height: 470px;
  background-repeat: no-repeat;
  background-size: contain;
}

.project-card--compact {
  height: 220px;
}

.project-card__title,
.project-card__action {
  position: absolute;
  z-index: 2;
  left: 20px;
  font-weight: 800;
}

.project-card__title {
  bottom: 73px;
  max-width: calc(100% - 40px);
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.94);
  font-size: 28px;
  line-height: 1.2;
}

.project-card__action {
  bottom: 20px;
  display: inline-flex;
  height: 52px;
  align-items: center;
  gap: 26px;
  padding: 0 20px;
  color: #fff;
  background: var(--ink);
  font-size: 16px;
  transition: background 150ms ease;
}

.project-card__action .icon {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

.project-card:hover .project-card__action {
  background: var(--blue);
}

.contact-shell {
  align-self: center;
}

.page--contact {
  align-items: center;
}

.contact-copy {
  padding: 11px 25px 0;
  text-align: center;
}

.contact-copy p {
  margin: 0 0 12px;
}

.contact-shell .quick-links {
  margin-top: 19px;
}

.page--case-study,
.page--article,
.page--achievements {
  padding-bottom: 80px;
}

.case-hero {
  position: relative;
  height: 520px;
  margin-top: 40px;
  overflow: hidden;
  border: 5px solid var(--ink);
  background: #f1f2ef;
}

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

.case-hero__label {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  padding: 16px 20px;
  color: #fff;
  background: var(--ink);
  font-size: 32px;
  font-weight: 800;
}

.case-section {
  margin-top: 50px;
}

.case-section > h2,
.case-summary h2,
.case-summary h3 {
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
}

.case-section > h2,
.case-summary h2 {
  font-size: 30px;
}

.case-section > p,
.case-summary p,
.case-summary li {
  font: 400 19px/1.72 var(--serif);
}

.case-summary {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr;
  gap: 55px;
}

.case-summary aside h3 {
  margin-top: 24px;
  font-size: 17px;
}

.case-summary aside h3:first-child {
  margin-top: 0;
}

.case-summary ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-summary li,
.case-status {
  border: 1px solid var(--ink);
  padding: 4px 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
}

.case-status {
  display: inline-block;
  margin-top: 8px;
  color: #fff;
  background: var(--green);
}

.article-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 60px;
  padding-top: 28px;
  border-top: 3px solid var(--ink);
}

.article-nav a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 18px;
  padding: 0 16px;
  color: #fff;
  background: var(--ink);
  font-weight: 800;
}

.article-nav a:hover {
  background: var(--blue);
}

.article-nav .icon {
  width: 20px;
  filter: invert(1);
}

.article-kicker {
  margin: 50px 0 14px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.article-title {
  max-width: 820px;
  margin: 0;
  font-size: 56px;
  line-height: 1.08;
}

.article-lead {
  max-width: 780px;
  margin: 28px 0 38px;
  padding-left: 20px;
  border-left: 8px solid var(--blue);
  font: 700 24px/1.5 var(--serif);
}

.article-body {
  max-width: 760px;
}

@media (max-width: 1100px) {
  .hello-shell,
  .wide-shell,
  .article-shell {
    width: min(100%, 900px);
  }

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

@media (max-width: 760px) {
  .brand,
  .menu-toggle {
    top: 20px;
  }

  .brand {
    left: 20px;
    gap: 7px;
  }

  .brand-avatar {
    width: 34px;
    height: 34px;
  }

  .brand-name {
    height: 34px;
    border-left-width: 6px;
    padding: 0 8px;
    font-size: 20px;
  }

  .menu-toggle {
    right: 20px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 335px;
    gap: 30px;
  }

  .menu-overlay {
    place-items: start;
    padding-top: 90px;
  }

  .menu-tile {
    width: 100%;
    height: 156px;
  }

  .menu-tile b {
    font-size: 48px;
  }

  .page {
    min-height: 100vh;
    padding: 90px 20px 44px;
  }

  .page--hello {
    align-items: start;
    padding-top: 168px;
  }

  .hello-shell,
  .wide-shell,
  .article-shell {
    width: 100%;
  }

  .hello-title {
    width: 100%;
    min-width: 0;
    min-height: 82px;
    border-left-width: 10px;
    padding: 18px 18px 20px;
    font-size: 38px;
  }

  .hello-copy {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hello-copy p {
    margin-bottom: 16px;
  }

  .element-nav {
    display: none;
  }

  .quick-links {
    justify-content: flex-start;
    gap: 26px;
    margin-top: 24px;
  }

  .page--hello .quick-links,
  .page--contact .quick-links {
    justify-content: center;
  }

  .section-title {
    min-height: 62px;
    border-left-width: 10px;
    font-size: 26px;
  }

  .about-grid,
  .achievement-lead,
  .project-wall,
  .case-summary {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-grid,
  .achievement-lead,
  .project-wall {
    margin-top: 30px;
  }

  .prose {
    font-size: 17px;
    line-height: 1.7;
  }

  .skill-bar {
    min-width: 220px;
    max-width: 100%;
    font-size: 12px;
  }

  .skill-bar b {
    font-size: 16px;
  }

  .stack-strip ul {
    flex-wrap: wrap;
    gap: 18px 28px;
  }

  .stack-strip li {
    font-size: 15px;
  }

  .proof-visual {
    height: 220px;
  }

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

  .badge-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .badge-strip span:last-child {
    grid-column: 1 / -1;
  }

  .project-wall__side {
    gap: 20px;
  }

  .project-card--feature,
  .project-card--compact {
    height: 220px;
  }

  .project-card--feature {
    background-size: cover;
  }

  .project-card__title {
    bottom: 68px;
    font-size: 23px;
  }

  .project-card__action {
    height: 48px;
    font-size: 14px;
  }

  .contact-copy {
    padding: 12px 4px 0;
  }

  .case-hero {
    height: 300px;
    margin-top: 30px;
  }

  .case-hero__label {
    right: 18px;
    bottom: 18px;
    left: 18px;
    font-size: 23px;
  }

  .case-section {
    margin-top: 38px;
  }

  .case-section > p,
  .case-summary p,
  .case-summary li {
    font-size: 17px;
  }

  .article-title {
    font-size: 39px;
  }

  .article-lead {
    font-size: 20px;
  }

  .article-nav {
    display: grid;
  }

  .article-nav a {
    justify-content: space-between;
  }
}

/* Motion fidelity pass: timings mirror the captured reference states. */
.brand {
  z-index: 50;
  overflow: hidden;
  animation: brand-float 4.8s ease-in-out infinite;
}

.brand::after {
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -48px;
  width: 28px;
  content: "";
  background: rgba(255, 255, 255, 0.36);
  transform: rotate(18deg);
  animation: brand-sheen 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes brand-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes brand-sheen {
  0%, 70% { transform: translateX(0) rotate(18deg); opacity: 0; }
  76% { opacity: 0.5; }
  88%, 100% { transform: translateX(250px) rotate(18deg); opacity: 0; }
}

.menu-toggle {
  z-index: 53;
  width: 30px;
  height: 30px;
}

.menu-box {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--ink);
  transition: all 250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-box--tl { top: 1px; left: 1px; }
.menu-box--tr { top: 1px; right: 1px; }
.menu-box--bl { bottom: 1px; left: 1px; }
.menu-box--br { right: 1px; bottom: 1px; }

body.menu-open .menu-box {
  background: #fff;
}

body.menu-open .menu-box--tl,
body.menu-open .menu-box--tr {
  top: 50%;
  left: 50%;
  width: 33px;
  height: 7px;
}

body.menu-open .menu-box--tl {
  transform: translate(-50%, -50%) rotate(45deg);
}

body.menu-open .menu-box--tr {
  right: auto;
  transform: translate(-50%, -50%) rotate(-45deg);
}

body.menu-open .menu-box--bl,
body.menu-open .menu-box--br {
  opacity: 0;
  transform: scale(0.3);
}

.menu-overlay {
  z-index: 51;
  background: transparent;
  transition: opacity 500ms cubic-bezier(0.19, 1, 0.22, 1), visibility 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-overlay::before {
  position: fixed;
  inset: 0 0 auto;
  height: 0;
  content: "";
  background: rgba(22, 21, 20, 0.9);
  transition: height 300ms cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(3, 170px);
  max-width: 640px;
  gap: 30px;
}

.menu-tile {
  width: 170px;
  height: 170px;
  opacity: 0;
  transform: translate(5px, 20px) scale(0.5);
  transition: opacity 300ms cubic-bezier(0.19, 1, 0.22, 1), transform 300ms cubic-bezier(0.19, 1, 0.22, 1), border-color 250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-tile:hover,
.menu-tile:focus-visible,
.menu-tile.is-active {
  border-color: var(--blue);
  color: #fff;
  background: transparent;
  transform: none;
}

.menu-tile__icon {
  position: absolute;
  inset: -3px;
  z-index: 2;
  display: grid;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  place-items: center;
  background: var(--blue);
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 250ms cubic-bezier(0.19, 1, 0.22, 1), transform 250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-tile__icon img {
  position: static;
  width: 56px;
  height: 56px;
  filter: invert(1);
}

.menu-tile:hover .menu-tile__icon img,
.menu-tile:focus-visible .menu-tile__icon img,
.menu-tile.is-active .menu-tile__icon img {
  filter: invert(1);
}

.menu-tile:hover .menu-tile__icon,
.menu-tile:focus-visible .menu-tile__icon,
.menu-tile.is-active .menu-tile__icon {
  position: absolute;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  opacity: 1;
  transform: scale(1);
}

.menu-tile.is-active b,
.menu-tile.is-active span {
  display: block;
}

body.menu-open .brand {
  opacity: 0.2;
  pointer-events: none;
}

body.menu-open .menu-overlay::before {
  height: 100%;
}

body.menu-open .menu-tile {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

body.menu-open .menu-tile:nth-child(3) { transition-delay: 100ms; }
body.menu-open .menu-tile:nth-child(2),
body.menu-open .menu-tile:nth-child(6) { transition-delay: 200ms; }
body.menu-open .menu-tile:nth-child(1),
body.menu-open .menu-tile:nth-child(5) { transition-delay: 300ms; }
body.menu-open .menu-tile:nth-child(4) { transition-delay: 400ms; }

@media (min-width: 761px) {
  .menu-grid {
    transform: translateY(-32px);
  }
}

.page {
  opacity: 1;
  transform: none;
  transition: none;
}

.hello-title,
.section-title {
  isolation: isolate;
  border-left-width: 0;
  background: transparent;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease 80ms, transform 600ms cubic-bezier(0.19, 1, 0.22, 1) 80ms, border-left-width 420ms cubic-bezier(0.19, 1, 0.22, 1) 80ms;
}

.page.is-visible .hello-title,
.page.is-visible .section-title {
  border-left-width: 14px;
  opacity: 1;
  transform: translateY(0);
}

.title-bar {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 0;
  background: var(--ink);
  transition: width 650ms cubic-bezier(0.19, 1, 0.22, 1) 80ms;
}

.page.is-visible .title-bar {
  width: 100%;
}

.section-title__text,
.section-title > .icon {
  position: relative;
  z-index: 2;
}

.glitch-text {
  position: relative;
  display: inline-block;
  letter-spacing: 0;
}

.glitch-text::before,
.glitch-text::after,
.inline-label[data-text]:hover::before,
.inline-label[data-text]:hover::after {
  position: absolute;
  inset: 0;
  overflow: hidden;
  content: attr(data-text);
  color: inherit;
  background: var(--ink);
  opacity: 0.62;
  pointer-events: none;
}

.glitch-text::before,
.inline-label[data-text]:hover::before {
  left: -5px;
  text-shadow: 3px 0 var(--blue);
  animation: glitch-slice-a 3s infinite linear alternate-reverse;
}

.glitch-text::after,
.inline-label[data-text]:hover::after {
  left: 5px;
  text-shadow: -3px 0 var(--red);
  animation: glitch-slice-b 2s infinite linear alternate-reverse;
}

@keyframes glitch-slice-a {
  0%, 7% { clip-path: inset(8% 0 76% 0); }
  9%, 18% { clip-path: inset(68% 0 12% 0); }
  20%, 31% { clip-path: inset(41% 0 43% 0); }
  33%, 47% { clip-path: inset(86% 0 2% 0); }
  49%, 61% { clip-path: inset(14% 0 69% 0); }
  63%, 76% { clip-path: inset(56% 0 27% 0); }
  78%, 90% { clip-path: inset(28% 0 53% 0); }
  92%, 100% { clip-path: inset(74% 0 11% 0); }
}

@keyframes glitch-slice-b {
  0%, 11% { clip-path: inset(78% 0 8% 0); }
  13%, 24% { clip-path: inset(23% 0 61% 0); }
  26%, 39% { clip-path: inset(48% 0 35% 0); }
  41%, 54% { clip-path: inset(4% 0 82% 0); }
  56%, 69% { clip-path: inset(64% 0 20% 0); }
  71%, 84% { clip-path: inset(35% 0 48% 0); }
  86%, 100% { clip-path: inset(88% 0 1% 0); }
}

.inline-label {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.motion-item {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 480ms ease var(--motion-delay, 0ms), transform 650ms cubic-bezier(0.19, 1, 0.22, 1) var(--motion-delay, 0ms);
}

.motion-item--card {
  transform: translateY(150px);
  transition-duration: 620ms, 780ms;
}

.page.is-visible .motion-item {
  opacity: 1;
  transform: translateY(0);
}

.element-nav {
  position: relative;
  border-top-width: 0;
}

.element-nav::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  content: "";
  background: var(--ink);
  transition: width 620ms cubic-bezier(0.19, 1, 0.22, 1) 540ms;
}

.page.is-visible .element-nav::before {
  width: 100%;
}

.element-nav a {
  position: relative;
  overflow: hidden;
  transition: border-color 250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.element-nav a:hover,
.element-nav a:focus-visible {
  border-color: var(--blue);
  color: var(--ink);
  background: transparent;
  transform: translateY(0);
}

.element-tile__icon {
  position: absolute;
  inset: -3px;
  z-index: 2;
  display: grid;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  place-items: center;
  background: var(--blue);
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 250ms cubic-bezier(0.19, 1, 0.22, 1), transform 250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.element-tile__glyph {
  width: 51px;
  height: 51px;
  filter: invert(1);
}

.element-nav a:hover .element-tile__icon,
.element-nav a:focus-visible .element-tile__icon {
  opacity: 1;
  transform: scale(1);
}

.quick-links a {
  transition: transform 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.quick-links a:hover {
  transform: scale(1.25);
}

.skill-bar {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 900ms cubic-bezier(0.19, 1, 0.22, 1) var(--motion-delay, 0ms);
}

.page.is-visible .skill-bar {
  clip-path: inset(0 0 0 0);
}

.project-card::before,
.project-card::after {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 0;
  content: "";
  opacity: 1;
  transition: width 500ms cubic-bezier(1, 0, 0, 1);
}

.project-card::before {
  background: var(--blue);
}

.project-card::after {
  background: var(--ink);
  transition-delay: 100ms;
}

.project-card:hover::before,
.project-card:hover::after,
.project-card:focus-visible::before,
.project-card:focus-visible::after {
  width: 100%;
  opacity: 1;
}

.project-card__title,
.project-card__action {
  transition: color 300ms ease, background 300ms ease, max-width 500ms cubic-bezier(1, 0, 0, 1);
}

.project-card:hover .project-card__title,
.project-card:focus-visible .project-card__title {
  color: #fff;
  background: transparent;
}

.project-card:hover .project-card__action,
.project-card:focus-visible .project-card__action {
  max-width: 215px;
  color: var(--ink);
  background: #fff;
}

.project-card:hover .project-card__action .icon,
.project-card:focus-visible .project-card__action .icon {
  filter: none;
}

.project-card__action .icon {
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 500ms cubic-bezier(1, 0, 0, 1) 200ms, transform 500ms cubic-bezier(1, 0, 0, 1) 200ms;
}

.project-card__action .project-card__arrow-clone {
  margin-left: -35px;
  transform: translateX(-28px);
  transition-delay: 300ms;
}

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

@media (max-width: 760px) {
  .page.is-visible .hello-title,
  .page.is-visible .section-title {
    border-left-width: 10px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 335px;
  }

  .menu-tile {
    width: 100%;
    height: 156px;
  }

  .menu-tile__icon img {
    width: 52px;
    height: 52px;
  }

  body.menu-open .menu-tile:nth-child(1),
  body.menu-open .menu-tile:nth-child(4) { transition-delay: 200ms; }
  body.menu-open .menu-tile:nth-child(3),
  body.menu-open .menu-tile:nth-child(6) { transition-delay: 300ms; }
  body.menu-open .menu-tile:nth-child(2) { transition-delay: 100ms; }
  body.menu-open .menu-tile:nth-child(5) { transition-delay: 400ms; }
}

@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;
  }
}

/* Deep interaction pass: state machines and timings captured from the reference. */
.site-header {
  background: transparent;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transform: none;
  transition: transform 500ms cubic-bezier(0.19, 1, 0.22, 1), background-color 500ms cubic-bezier(0.19, 1, 0.22, 1), box-shadow 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.site-header.is-dark {
  background: rgba(43, 44, 51, 0.96);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.13);
}

.site-header.is-hidden {
  transform: translateY(-75px);
}

.site-header.is-dark .menu-box {
  background: #fff;
}

.language-switch {
  position: absolute;
  top: 24px;
  right: 75px;
  z-index: 53;
  display: grid;
  grid-template-columns: repeat(2, 36px);
  height: 30px;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: #fff;
  opacity: 0;
  pointer-events: auto;
  transform: translateY(50px);
  transition: opacity 500ms cubic-bezier(0.19, 1, 0.22, 1) 750ms, transform 500ms cubic-bezier(0.19, 1, 0.22, 1) 750ms, border-color 200ms ease, background-color 200ms ease;
}

.language-switch button {
  display: grid;
  min-width: 0;
  height: 26px;
  place-items: center;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.language-switch button + button {
  border-left: 2px solid var(--ink);
}

.language-switch button.is-active {
  color: #fff;
  background: var(--blue);
}

.site-header.is-dark .language-switch,
body.menu-open .language-switch {
  border-color: #fff;
  background: var(--ink);
}

.site-header.is-dark .language-switch button,
body.menu-open .language-switch button {
  color: #fff;
}

.site-header.is-dark .language-switch button + button,
body.menu-open .language-switch button + button {
  border-left-color: #fff;
}

.site-header.is-dark .language-switch button.is-active,
body.menu-open .language-switch button.is-active {
  background: var(--blue);
}

.brand,
.menu-toggle,
.language-switch {
  opacity: 0;
  animation: none;
  transform: translateY(50px);
  transition: opacity 500ms cubic-bezier(0.19, 1, 0.22, 1) 750ms, transform 500ms cubic-bezier(0.19, 1, 0.22, 1) 750ms;
}

.brand::after {
  display: none;
}

body.site-ready .brand,
body.site-ready .menu-toggle,
body.site-ready .language-switch {
  opacity: 1;
  transform: translateY(0);
}

body.menu-open.site-ready .brand {
  opacity: 0.2;
}

body.route-switching .menu-overlay {
  visibility: hidden;
  opacity: 0;
  transition: none;
  pointer-events: none;
}

body.route-switching .menu-overlay::before {
  height: 0;
  transition: none;
}

body.language-swapping *,
body.language-swapping *::before,
body.language-swapping *::after {
  transition-duration: 0s !important;
  animation-duration: 0s !important;
}

.menu-toggle[aria-expanded="false"]:hover .menu-box--tl { transform: translate(-7px, -7px); }
.menu-toggle[aria-expanded="false"]:hover .menu-box--tr { transform: translate(7px, -7px); }
.menu-toggle[aria-expanded="false"]:hover .menu-box--bl { transform: translate(-7px, 7px); }
.menu-toggle[aria-expanded="false"]:hover .menu-box--br { transform: translate(7px, 7px); }

.menu-tile b,
.menu-tile > span:not(.menu-tile__icon),
.element-nav b,
.element-nav a > span:not(.element-tile__icon) {
  transition: opacity 250ms cubic-bezier(0.19, 1, 0.22, 1), transform 250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-tile:hover b,
.menu-tile:hover > span:not(.menu-tile__icon),
.menu-tile:focus-visible b,
.menu-tile:focus-visible > span:not(.menu-tile__icon),
.element-nav a:hover b,
.element-nav a:hover > span:not(.element-tile__icon),
.element-nav a:focus-visible b,
.element-nav a:focus-visible > span:not(.element-tile__icon) {
  opacity: 0;
  transform: scale(1.5);
}

.section-title__icon-button {
  position: relative;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 500ms cubic-bezier(0.19, 1, 0.22, 1) 500ms, transform 500ms cubic-bezier(0.19, 1, 0.22, 1) 500ms;
}

.section-title__icon-button .icon {
  width: 26px;
  height: 26px;
  filter: invert(1);
}

.page.is-visible .section-title__icon-button {
  opacity: 1;
  transform: translateY(0);
}

.section-title__icon-button.is-shaking {
  animation: title-shake 500ms linear;
}

@keyframes title-shake {
  0%, 100% { transform: translateX(0) rotate(0); }
  10% { transform: translateX(-4px) rotate(-2deg); }
  20% { transform: translateX(3px) rotate(2deg); }
  32% { transform: translateX(-3px) rotate(-1deg); }
  46% { transform: translateX(4px) rotate(1deg); }
  61% { transform: translateX(-2px) rotate(-2deg); }
  78% { transform: translateX(2px) rotate(1deg); }
}

.glitch-text[data-decode]:not(.is-decoding):not(.is-decoded) {
  opacity: 0;
}

.glitch-text.is-decoding,
.glitch-text.is-decoded {
  opacity: 1;
}

.glitch-text:not(.is-decoded)::before,
.glitch-text:not(.is-decoded)::after {
  display: none;
}

.motion-item,
.motion-item--card {
  transform: translateY(50px);
  transition: opacity 500ms cubic-bezier(0.19, 1, 0.22, 1) var(--motion-delay, 0ms), transform 500ms cubic-bezier(0.19, 1, 0.22, 1) var(--motion-delay, 0ms);
}

.page.is-visible .skill-bar {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 750ms cubic-bezier(1, 0, 0, 1);
}

.page.is-visible .skill-bar.is-revealed {
  clip-path: inset(0 0 0 0);
}

.skill-bar [data-decode] {
  min-width: 10ch;
}

.reveal-cluster > *,
.case-section,
.stack-strip {
  opacity: 0;
  transform: translateY(50px);
}

.reveal-cluster.is-revealed > *,
.case-section.is-revealed,
.stack-strip.is-revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 500ms cubic-bezier(0.19, 1, 0.22, 1) var(--reveal-delay, 0ms), transform 500ms cubic-bezier(0.19, 1, 0.22, 1) var(--reveal-delay, 0ms);
}

.honors-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border: 0;
}

.honors-grid .achievement-cell {
  position: relative;
  min-height: 125px;
  justify-content: center;
  border: 0;
  padding: 22px 20px;
  background: repeating-linear-gradient(-45deg, #ededed 0 2px, transparent 2px 6px);
  text-align: center;
}

.achievement-cell strong,
.achievement-cell span {
  position: relative;
  z-index: 1;
}

.achievement-cell i {
  position: absolute;
  width: 15px;
  height: 15px;
  border-color: var(--ink);
  border-style: solid;
  opacity: 0;
  transition: opacity 750ms cubic-bezier(0.19, 1, 0.22, 1), transform 750ms cubic-bezier(0.19, 1, 0.22, 1);
}

.achievement-cell i:nth-child(1) { top: 0; left: 0; border-width: 3px 0 0 3px; transform: translate(-25px, -25px); }
.achievement-cell i:nth-child(2) { top: 0; right: 0; border-width: 3px 3px 0 0; transform: translate(25px, -25px); }
.achievement-cell i:nth-child(3) { right: 0; bottom: 0; border-width: 0 3px 3px 0; transform: translate(25px, 25px); }
.achievement-cell i:nth-child(4) { bottom: 0; left: 0; border-width: 0 0 3px 3px; transform: translate(-25px, 25px); }

.honors-grid.is-revealed .achievement-cell i {
  opacity: 1;
  transform: translate(0, 0);
}

.image-glitch {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
  padding: 0;
  background: transparent;
}

.image-glitch__layer {
  position: absolute;
  inset: -5px -10px;
  display: block;
  padding: 0;
  background-color: transparent;
  background-image: var(--glitch-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.image-glitch__layer:first-child {
  inset: 0;
  opacity: 0.3;
  filter: grayscale(1);
}

.image-glitch__layer:nth-child(n + 2) {
  opacity: 0;
  animation-duration: 5s;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.image-glitch__layer:nth-child(2) { animation-name: image-glitch-a; }
.image-glitch__layer:nth-child(3) { animation-name: image-glitch-b; }
.image-glitch__layer:nth-child(4) { animation-name: image-glitch-flash; background-color: rgba(33, 150, 243, 0.18); background-blend-mode: screen; }

@keyframes image-glitch-a {
  0%, 15%, 31%, 47%, 70%, 100% { opacity: 0; transform: translate3d(0, 0, 0); clip-path: inset(0); }
  16% { opacity: 0.75; transform: translate3d(-11px, -4px, 0); clip-path: inset(8% 0 72% 0); }
  18% { opacity: 0.55; transform: translate3d(9px, 3px, 0); clip-path: inset(62% 0 18% 0); }
  32% { opacity: 0.7; transform: translate3d(14px, 0, 0); clip-path: inset(38% 0 42% 0); }
  34% { opacity: 0; }
  48% { opacity: 0.65; transform: translate3d(-8px, 5px, 0); clip-path: inset(82% 0 4% 0); }
  51% { opacity: 0; }
}

@keyframes image-glitch-b {
  0%, 22%, 39%, 58%, 78%, 100% { opacity: 0; transform: translate3d(0, 0, 0); clip-path: inset(0); }
  23% { opacity: 0.65; transform: translate3d(12px, 0, 0); clip-path: inset(22% 0 60% 0); }
  26% { opacity: 0; }
  40% { opacity: 0.7; transform: translate3d(-14px, -2px, 0); clip-path: inset(52% 0 29% 0); }
  43% { opacity: 0; }
  59% { opacity: 0.55; transform: translate3d(7px, 4px, 0); clip-path: inset(4% 0 82% 0); }
  62% { opacity: 0; }
}

@keyframes image-glitch-flash {
  0%, 87%, 92%, 100% { opacity: 0; }
  88%, 90% { opacity: 0.38; transform: translate3d(-5px, 0, 0); clip-path: inset(0 0 42% 0); }
}

.proof-visual .image-glitch {
  inset: 0;
  padding: 0;
  background: transparent;
}

.proof-visual .image-glitch__layer:first-child {
  opacity: 0.72;
  filter: grayscale(0.25);
}

.proof-visual .proof-visual__image {
  height: calc(100% - 48px);
}

.proof-visual > span:last-child {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  display: flex;
  height: 48px;
  align-items: center;
  padding: 0 16px;
  color: #fff;
  background: var(--ink);
}

.project-card {
  background-image: none !important;
}

.project-card .image-glitch,
.case-hero .image-glitch {
  z-index: 0;
}

.project-card--feature .image-glitch__layer {
  background-size: contain;
}

.project-card__title,
.project-card__action,
.case-hero__label {
  z-index: 3;
}

.route-clone {
  position: fixed;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--blue);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  pointer-events: none;
}

.route-clone img {
  width: 56px;
  height: 56px;
  filter: invert(1);
}

.live-projects {
  margin-top: 52px;
  border-top: 3px solid var(--ink);
  padding-top: 34px;
}

.live-projects__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.live-projects__head p,
.live-projects__head h2 {
  margin: 0;
}

.live-projects__head p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.live-projects__head h2 {
  font-size: 30px;
  line-height: 1.15;
}

.live-projects__head > span {
  border: 2px solid var(--ink);
  padding: 8px 11px;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

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

.live-project-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 3px solid var(--ink);
  background: #fff;
}

.live-project-card:first-child {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.live-project-card__visual {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: #eef0ed;
}

.live-project-card:first-child .live-project-card__visual {
  border-right: 2px solid var(--ink);
  border-bottom: 0;
}

.live-project-card__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.live-project-card__visual:hover > img,
.live-project-card__visual:focus-visible > img {
  transform: scale(1.025);
}

.live-project-card__visual > span {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 2px solid var(--ink);
  padding: 7px 9px;
  color: #fff;
  background: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.live-project-card__visual > span .icon {
  width: 14px;
  height: 14px;
  filter: invert(1);
}

.live-project-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 20px;
}

.live-project-card__role {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.live-project-card__body h3 {
  margin: 0 0 12px;
  overflow-wrap: anywhere;
  font-size: 24px;
  line-height: 1.2;
}

.live-project-card__summary {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.65;
}

.live-project-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  border-top: 2px solid var(--ink);
  padding-top: 13px;
  font-size: 13px;
  font-weight: 900;
}

.live-project-card__link .icon {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.live-project-card__link:hover .icon,
.live-project-card__link:focus-visible .icon {
  transform: translate(3px, -3px);
}

@media (max-width: 1050px) {
  .live-project-card:first-child {
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  }
}

@media (max-width: 760px) {
  .language-switch {
    top: 20px;
    right: 65px;
    grid-template-columns: repeat(2, 31px);
  }

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

  .honors-grid .achievement-cell {
    min-height: 138px;
    padding: 18px 12px;
  }

  .achievement-cell strong {
    font-size: 15px;
  }

  .achievement-cell span {
    font-size: 13px;
  }

  .achievement-cell i:nth-child(1) { transform: translate(-15px, -15px); }
  .achievement-cell i:nth-child(2) { transform: translate(15px, -15px); }
  .achievement-cell i:nth-child(3) { transform: translate(15px, 15px); }
  .achievement-cell i:nth-child(4) { transform: translate(-15px, 15px); }

  .honors-grid.is-revealed .achievement-cell i {
    transform: translate(0, 0);
  }

  .route-clone img {
    width: 52px;
    height: 52px;
  }

  .live-projects {
    margin-top: 40px;
    padding-top: 28px;
  }

  .live-projects__head {
    align-items: center;
  }

  .live-projects__head h2 {
    font-size: 26px;
  }

  .live-project-grid,
  .live-project-card:first-child {
    grid-template-columns: minmax(0, 1fr);
  }

  .live-project-card:first-child {
    grid-column: auto;
  }

  .live-project-card:first-child .live-project-card__visual {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .live-project-card__body {
    padding: 18px;
  }

  .live-project-card__body h3 {
    font-size: 21px;
  }
}
