@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --ink: #000;
  --soft-ink: #5c5c5c;
  --accent: #8b7355;
  --line: #e7e4e0;
  --neutral: #fff5eb;
  --dark: #141414;
  --shell: 91%;
  --page-gutter: 4.5vw;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #fff;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

[lang="en"] {
  font-family: "Inter", sans-serif;
}

body.body-hidden {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 2;
  height: 76.13px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.top-scroller {
  position: fixed;
  right: 10px;
  bottom: 77px;
  z-index: 3;
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  color: rgba(0, 0, 0, 0.28);
  background: rgba(255, 255, 255, 0.72);
}

.top-scroller svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.mobile-menu-overlay {
  position: fixed;
  z-index: 10;
  inset: 0;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  background: #fff;
  pointer-events: none;
  transition: visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-overlay.is-closing {
  visibility: visible;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-close {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  width: 60.05px;
  height: 70.8px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.mobile-menu-close svg,
.share-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.4;
}

.mobile-menu-nav {
  position: absolute;
  top: calc(50% - 75.24px);
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -50%);
}

.mobile-menu-link,
.mobile-work-trigger {
  display: inline-flex;
  width: max-content;
  height: 43.19px;
  min-height: 43.19px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 24px;
  font-weight: 400;
  line-height: 28.8px;
  white-space: nowrap;
}

.mobile-menu-link + .mobile-menu-link,
.mobile-menu-link + .mobile-work-item,
.mobile-work-item + .mobile-menu-link {
  margin-top: 0;
}

.mobile-menu-link.is-current {
  color: var(--accent);
}

.mobile-work-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-work-trigger {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-work-trigger svg {
  width: 12px;
  height: 8px;
  margin-left: 9px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-work-item.is-expanded .mobile-work-trigger svg {
  transform: rotate(180deg);
}

.mobile-work-item.is-expanded .mobile-work-trigger {
  color: var(--accent);
}

.mobile-work-submenu {
  display: flex;
  width: 91vw;
  height: 0;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-work-item.is-expanded .mobile-work-submenu {
  height: 88.55px;
}

.mobile-work-submenu a {
  display: flex;
  width: 100%;
  height: 35.27px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 21.6px;
  line-height: 28.8px;
  white-space: nowrap;
}

.mobile-work-submenu a:first-child {
  margin-top: 8px;
}

.mobile-work-submenu a + a {
  margin-top: 0;
}

.mobile-menu-footer {
  position: absolute;
  right: 0;
  bottom: 23.4px;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-menu-social {
  display: flex;
  gap: 24px;
  align-items: center;
}

.mobile-menu-social-link {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.mobile-menu-social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.mobile-menu-social-link .icon-fill {
  fill: currentColor;
  stroke: none;
}

.mobile-hire-button {
  width: 130.85px;
  height: 47.87px;
  margin-top: 22.79px;
  font-size: 12.6px;
  letter-spacing: 0.252px;
}

.mobile-hire-button svg {
  margin-left: 22px;
}

.share-backdrop {
  position: fixed;
  z-index: 20;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  transition: visibility 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.share-backdrop.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.share-dialog {
  position: relative;
  width: min(500px, var(--shell));
  height: 217.2px;
  padding: 24px 28px 30px;
  color: var(--ink);
  background: #fff;
  border-radius: 12px;
}

.share-dialog h2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
}

.share-url-row {
  display: flex;
  width: 100%;
  height: 48px;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
  padding: 0 12px 0 16px;
  border: 1px solid var(--line);
}

.share-url {
  min-width: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.share-copy {
  display: inline-flex;
  width: 28px;
  height: 26px;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  color: #4b5563;
  background: transparent;
  cursor: pointer;
}

.share-copy svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.share-links {
  display: grid;
  width: 435px;
  grid-template-columns: repeat(6, 50px);
  justify-content: space-between;
  margin: 20px auto 0;
}

.share-link {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: #1877f2;
}

.share-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: none;
}

.share-link:nth-child(2) {
  background: #000;
}

.share-link:nth-child(3) {
  background: #e60023;
}

.share-link:nth-child(4) {
  background: #36465d;
}

.share-link:nth-child(5) {
  background: #25d366;
}

.share-link:nth-child(6) {
  background: #4a4a4a;
}

.share-link:nth-child(5) svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
}

.share-link:nth-child(6) svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.header-inner {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  padding-inline: 4.5vw;
}

.mobile-brand,
.desktop-brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: normal;
}

.desktop-brand,
.primary-nav,
.header-actions {
  display: none;
}

.menu-toggle {
  display: block;
  width: 20px;
  height: 18px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle svg {
  display: block;
  width: 20px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ded5ca;
  border-radius: 10px;
  color: var(--accent);
  font-size: 12.6px;
  font-weight: 400;
  letter-spacing: 0.252px;
  line-height: normal;
  transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out;
}

.outline-button:hover {
  color: #fff;
  background: var(--accent);
}

.outline-button svg {
  width: 10px;
  height: 16px;
  margin-left: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 0.1s ease-out;
}

.outline-button:hover svg,
.outline-button:focus-visible svg {
  transform: translateX(4px);
}

.home-main {
  margin-top: -2px;
}

.hero {
  height: 559.55px;
  background: #fff;
}

.hero-inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding-top: 35.09px;
}

.hero-portrait {
  width: 100%;
  height: 266.17px;
  overflow: hidden;
  border-radius: 14px;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}

.hero-copy {
  margin-top: 48.76px;
}

.hero-copy h1 {
  font-size: clamp(31px, 8.75vw, 35px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 42px;
  white-space: nowrap;
}

.name-nowrap {
  white-space: nowrap;
}

.city-nowrap {
  white-space: nowrap;
}

.hero-desktop-break {
  display: none;
}

.hero-copy h1 + p {
  margin-top: 14.2px;
}

.hero-copy p {
  color: var(--ink);
  font-size: 23px;
  letter-spacing: 0.23px;
  line-height: 32.2px;
}

.hero-actions {
  display: flex;
  align-items: center;
  margin-top: 0.97px;
}

.hero-button {
  width: 140.76px;
  height: 47.87px;
}

.hero-button svg {
  margin-left: 17px;
}

.icon-link.xiaohongshu-mark,
.mobile-menu-social-link.xiaohongshu-mark {
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 4px;
}

.icon-link.xiaohongshu-mark,
.mobile-menu-social-link.xiaohongshu-mark {
  width: 18px;
  min-width: 18px;
  height: 18px;
}

.xiaohongshu-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.behance-link {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -1.25px;
  line-height: 1;
}

.marquee-section {
  height: 135.09px;
  padding: 17.55px 0;
  overflow: hidden;
  background: #fff;
}

.marquee-box {
  display: flex;
  width: 91%;
  height: 100px;
  align-items: center;
  overflow: hidden;
  margin-inline: auto;
  border-radius: 10px;
  background: var(--neutral);
}

.marquee-track,
.footer-marquee-track {
  display: flex;
  width: max-content;
  max-width: none;
  white-space: nowrap;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 28.8px;
}

.marquee-track.is-marquee-active,
.footer-marquee-track.is-marquee-active {
  will-change: transform;
}

.marquee-segment {
  display: block;
  flex: 0 0 auto;
}

.skill-marquee .marquee-track {
  --marquee-speed: 33.3;
  font-family: "Inter", "PingFang SC", sans-serif;
  font-size: 14px;
  letter-spacing: 0.14px;
  line-height: 19.6px;
}

.skill-marquee .marquee-segment {
  display: flex;
  align-items: center;
}

.marquee-sequence {
  display: block;
  flex: 0 0 auto;
}

.marquee-track {
  margin-left: -261px;
}

.latest-work {
  position: relative;
  height: 1291.27px;
  background: #fff;
}

.template-notice {
  position: absolute;
  top: 24px;
  left: 50%;
  width: var(--shell);
  color: var(--soft-ink);
  font-size: 11px;
  line-height: 1.5;
  pointer-events: none;
  transform: translateX(-50%);
  text-align: right;
}

.latest-work-inner {
  padding-top: 100.4px;
}

.latest-work h2,
.research h2 {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 36px;
}

.work-list {
  margin-top: 75.25px;
}

.work-item {
  display: flex;
  flex-direction: column;
}

.work-item + .work-item {
  margin-top: 60px;
}

.work-copy h3 {
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0.23px;
  line-height: 32.2px;
}

.work-copy p {
  margin-top: 7.09px;
  font-size: 12px;
  line-height: 21.6px;
}

.work-image-link {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 21.29px;
  overflow: hidden;
  border-radius: 14px;
}

.work-image-link img {
  width: 100%;
  aspect-ratio: 2 / 1;
  height: auto;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform 1s ease-out;
}

.work-image-link:hover img,
.work-image-link:focus-visible img {
  transform: scale(1.03);
}

.work-two-preview {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 30px 30px;
  border: 1px solid #e7e4e0;
  border-radius: 14px;
  color: #1d1d1f;
  background: #f5f5f7;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.work-two-preview:hover,
.work-two-preview:focus-visible {
  border-color: #8b7355;
  transform: translateY(-2px);
}

.work-two-preview-label {
  font-size: 15px;
  line-height: 1.4;
}

.work-two-preview-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 4px;
}

.work-two-preview-grid i {
  display: block;
  height: 11px;
  border: 1px solid rgba(139, 115, 85, 0.16);
  border-radius: 2px;
  background: rgba(139, 115, 85, 0.09);
}

.work-two-preview-grid i:nth-child(4n),
.work-two-preview-grid i:nth-child(9n) {
  background: rgba(139, 115, 85, 0.42);
}

.work-two-preview-grid i:nth-child(7n) {
  background: rgba(139, 115, 85, 0.7);
}

.work-image-placeholder {
  display: grid;
  aspect-ratio: 2 / 1;
  place-items: center;
  background: #171717;
  color: #fff;
}

.work-image-placeholder span {
  font-size: clamp(20px, 2.2vw, 32px);
  letter-spacing: -0.04em;
  transition: transform 1s ease-out;
}

.work-image-placeholder:hover span,
.work-image-placeholder:focus-visible span {
  transform: scale(1.03);
}

.experience {
  height: 540px;
  overflow: hidden;
  background: var(--neutral);
}

.experience-layout {
  padding-top: 63.3px;
}

.experience h2,
.skills-intro {
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0.23px;
  line-height: 32.2px;
}

.experience-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  width: calc(100% - 36px);
  margin-left: 36px;
  padding-top: 87.24px;
}

.experience-entry h3 {
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0.23px;
  line-height: 32.2px;
}

.experience-entry p {
  font-size: 12px;
  line-height: 21.6px;
}

.experience-entry h3 + p {
  margin-top: 0;
}

.experience-entry .experience-date {
  font-size: 13px;
  line-height: 23.4px;
}

.skills {
  min-height: 1176.38px;
  background: #fff;
}

.skills-layout {
  padding-top: 75.95px;
}

.skills-intro {
  max-width: 100%;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36.1px;
  margin-top: 51.25px;
}

.skill-item img {
  width: 39px;
  height: 39px;
  object-fit: cover;
  object-position: 50% 50%;
}

.skill-item h3 {
  min-height: 46.39px;
  margin-top: 20.3px;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0.23px;
  line-height: 32.2px;
}

.skill-item p {
  font-size: 13px;
  line-height: 23.4px;
}

.research {
  min-height: 759.59px;
  background: #fff;
}

.research-heading {
  padding-top: 194.27px;
}

.research-viewport {
  --research-speed: 22;
  width: 100%;
  margin-top: 46.75px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-padding-inline: var(--page-gutter);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.research-viewport.is-research-loop {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.research-viewport.is-research-auto {
  will-change: scroll-position;
}

.research-viewport::-webkit-scrollbar {
  display: none;
}

.research-viewport:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.research-track {
  display: flex;
  width: max-content;
  gap: 32px;
  padding-inline: var(--page-gutter);
}

.research-item {
  flex: 0 0 calc(100vw - var(--page-gutter) - 56px);
  width: calc(100vw - var(--page-gutter) - 56px);
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.research-topic {
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.6;
}

.research-question {
  max-width: 12em;
  margin-top: 24px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  text-wrap: balance;
}

.research-answer {
  max-width: 28em;
  margin-top: 22px;
  color: var(--soft-ink);
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.85;
  text-wrap: pretty;
}

.site-footer {
  color: #fff;
}

.footer-marquee {
  display: flex;
  height: 113.44px;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.footer-marquee-track {
  --marquee-speed: 66.7;
  margin-left: -92px;
  color: #fff;
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.footer-cta {
  background: var(--dark);
}

.footer-cta-inner {
  width: var(--shell);
  margin-inline: auto;
  padding: 72.78px 0 78px;
  text-align: center;
}

.footer-cta h2 {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 36px;
}

.footer-cta p {
  max-width: 30em;
  margin: 18px auto 0;
  color: #fff;
  font-size: 13px;
  line-height: 23.4px;
}

.footer-meta {
  display: flex;
  height: 168.29px;
  flex-direction: column;
  align-items: center;
  padding-top: 26.31px;
  color: #141414;
  background: #fff;
  font-size: 14.4px;
  line-height: normal;
}

.footer-social {
  display: flex;
  gap: 14px;
  height: 16px;
}

.footer-icon-link {
  display: inline-flex;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.footer-icon-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.footer-icon-link .icon-fill {
  fill: currentColor;
  stroke: none;
}

.footer-meta > p {
  margin-top: 32px;
}

.footer-meta > a {
  margin-top: 32px;
  font-size: 16px;
}

.footer-credit {
  margin-top: 32px;
  font-size: 16px;
  line-height: normal;
}

@media (max-width: 599px) {
  .hero-inner {
    transform: translateY(2px);
  }

  .share-dialog {
    height: auto;
    padding: 24px 18px 30px;
  }

  .share-links {
    width: min(284.75px, 100%);
    grid-template-columns: repeat(4, 50px);
    row-gap: 18px;
  }
}

@media (min-width: 600px) and (max-width: 1023px) {
  :root {
    --shell: 92%;
    --page-gutter: 4vw;
  }

  .site-header {
    height: 86.94px;
  }

  .header-inner {
    padding-inline: 4vw;
  }

  .hero {
    height: 326.73px;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 52% 42%;
    column-gap: 6%;
    height: 275.55px;
    padding-top: 25.59px;
  }

  .hero-portrait {
    height: 275.55px;
    border-radius: 14px;
  }

  .hero-copy {
    align-self: center;
    margin-top: 0;
  }

  .hero-copy h1 {
    white-space: normal;
  }

  .hero-copy h1 + p {
    margin-top: 14.2px;
  }

  .hero-actions {
    margin-top: 0.97px;
  }

  .hero-button {
    width: 143px;
  }

  .marquee-section {
    height: 144.38px;
    padding: 30.2px 0;
  }

  .marquee-box {
    width: 92%;
    height: 83.98px;
  }

  .marquee-track {
    margin-left: -330px;
  }

  .latest-work {
    height: 1150.69px;
  }

  .latest-work-inner {
    padding-top: 109.2px;
  }

  .latest-work h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .work-list {
    margin-top: 59.07px;
  }

  .work-item {
    display: grid;
    grid-template-columns: 25% 70%;
    column-gap: 5%;
    align-items: center;
  }

  .work-item + .work-item {
    margin-top: 69.37px;
  }

  .work-item:nth-child(3) {
    margin-top: 60px;
  }

  .work-copy h3 {
    font-size: 23px;
    line-height: 32.2px;
  }

  .work-copy p {
    font-size: 12px;
    line-height: 21.6px;
  }

  .work-image-link {
    margin-top: 0;
    border-radius: 14px;
  }

  .experience {
    height: 380px;
  }

  .experience-layout {
    display: grid;
    grid-template-columns: 34% 61%;
    column-gap: 5%;
    padding-top: 75px;
  }

  .experience h2 {
    font-size: 23px;
    line-height: 32.2px;
  }

  .experience-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px 35px;
    width: auto;
    margin-left: 0;
    padding-top: 47px;
  }

  .experience-entry h3 {
    font-size: 23px;
    line-height: 32.2px;
  }

  .skills {
    min-height: 738.24px;
  }

  .skills-layout {
    display: grid;
    grid-template-columns: 34% 61%;
    column-gap: 5%;
    padding-top: 75px;
  }

  .skills-intro {
    font-size: 23px;
    line-height: 32.2px;
  }

  .skills-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 49px 35px;
    margin-top: 48.3px;
  }

  .skill-item img {
    width: 17.95px;
    height: 17.95px;
  }

  .skill-item h3 {
    min-height: 46.39px;
    margin-top: 20.3px;
    font-size: 23px;
    line-height: 32.2px;
  }

  .skill-item p {
    font-size: 13px;
    line-height: 23.4px;
  }

  .research {
    min-height: 809.27px;
  }

  .research-heading {
    padding-top: 91px;
  }

  .research-viewport {
    margin-top: 94.16px;
  }

  .research-track {
    gap: 48px;
  }

  .research-item {
    flex-basis: min(36vw, 286px);
    width: min(36vw, 286px);
  }

  .research-topic {
    font-size: 12px;
  }

  .research-question {
    margin-top: 26px;
    font-size: 21px;
    line-height: 1.5;
  }

  .research-answer {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.85;
  }

  .footer-marquee {
    height: 115.23px;
  }

  .footer-cta-inner {
    padding: 64px 0 72px;
  }

  .footer-cta h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .footer-meta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    height: 81.75px;
    align-items: center;
    padding: 0 4vw;
  }

  .footer-meta > p,
  .footer-meta > a,
  .footer-credit {
    margin: 0;
  }

  .footer-meta > p {
    justify-self: center;
  }
}

@media (min-width: 1024px) {
  :root {
    --shell: 92%;
    --page-gutter: 4vw;
  }

  .site-header {
    height: 102px;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    column-gap: 20px;
    padding-inline: 4vw;
  }

  .mobile-brand,
  .menu-toggle,
  .mobile-menu-overlay {
    display: none;
  }

  .primary-nav {
    display: flex;
    align-items: center;
    gap: 25.63px;
    height: 100%;
  }

  .work-nav-item {
    position: relative;
    display: flex;
    height: 33.89px;
    width: 58.99px;
    align-items: center;
    flex: 0 0 58.99px;
  }

  .primary-nav > a,
  .primary-nav > .work-nav-item > .work-nav-trigger {
    position: relative;
    display: inline-flex;
    height: 33.89px;
    align-items: center;
    color: var(--ink);
    font-size: 16px;
    letter-spacing: 0.64px;
    line-height: 28.8px;
    white-space: nowrap;
  }

  .primary-nav > a[href="/"] {
    width: 48.02px;
  }

  .primary-nav > a[href="/about"] {
    width: 48.96px;
  }

  .primary-nav > a[href="/blog"] {
    width: 36.95px;
  }

  .work-nav-trigger {
    width: 100%;
    padding: 0;
    border: 0;
    font: inherit;
    background: transparent;
    cursor: pointer;
  }

  .primary-nav > a.is-current {
    color: var(--accent);
  }

  .primary-nav > a.is-current::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
  }

  .work-nav-link svg {
    width: 8px;
    height: 6px;
    margin-left: 7px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1;
  }

  .work-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    width: 120px;
    height: 102.98px;
    flex-direction: column;
    padding: 16.3px 16px;
    visibility: hidden;
    opacity: 0;
    background: var(--neutral);
    pointer-events: none;
    transition: visibility 0.4s ease, opacity 0.4s ease;
  }

  .work-nav-item.is-open .work-submenu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .work-submenu a {
    display: block;
    width: max-content;
    max-width: 100%;
    align-self: flex-start;
    font-size: 14px;
    line-height: 28.8px;
    white-space: nowrap;
  }

  .work-submenu a + a {
    margin-top: 11.69px;
  }

  .desktop-brand {
    display: block;
    justify-self: center;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.52px;
    line-height: normal;
  }

  .header-actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 14.23px;
  }

  .icon-link {
    display: inline-flex;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
  }

  .icon-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
  }

  .icon-link .icon-fill {
    fill: currentColor;
    stroke: none;
  }

  .header-cta {
    width: 145.39px;
    height: 53.19px;
    margin-left: 21.37px;
    font-size: 14px;
    letter-spacing: 0.28px;
  }

  .header-cta svg {
    margin-left: 24px;
  }

  .hero {
    height: 550.77px;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 52% 42%;
    column-gap: 6%;
    height: 510.93px;
    padding-top: 19.92px;
  }

  .hero-portrait {
    height: 510.93px;
    border-radius: 14px;
  }

  .hero-copy {
    align-self: start;
    margin-top: 0;
    padding-top: 98px;
  }

  .hero-desktop-break {
    display: block;
  }

  .hero-copy h1 {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 72px;
    white-space: normal;
  }

  .hero-copy h1 + p {
    margin-top: 22px;
  }

  .hero-copy p {
    color: var(--ink);
    font-size: 32px;
    letter-spacing: 0.32px;
    line-height: 44.8px;
  }

  .hero-actions {
    margin-top: 10.8px;
  }

  .hero-button {
    width: 156.4px;
    height: 53.19px;
    font-size: 14px;
    letter-spacing: 0.28px;
  }

  .hero-button svg {
    margin-left: 23px;
  }

  .marquee-section {
    height: 132.89px;
    padding: 28px 0;
  }

  .marquee-box {
    width: 90%;
    height: 76.89px;
  }

  .marquee-track {
    margin-left: 75px;
  }

  .skill-marquee .marquee-track {
    font-size: 20px;
    letter-spacing: 0.2px;
    line-height: 28px;
  }

  .latest-work {
    height: 1756.96px;
  }

  .latest-work-inner {
    padding-top: 79.7px;
  }

  .latest-work h2 {
    font-size: 45px;
    letter-spacing: 0.45px;
    line-height: 54px;
  }

  .work-list {
    margin-top: 75.25px;
  }

  .work-item {
    display: grid;
    grid-template-columns: 27% 70%;
    column-gap: 3%;
    align-items: center;
  }

  .work-item + .work-item {
    margin-top: 60px;
  }

  .work-copy h3 {
    font-size: 32px;
    letter-spacing: 0.32px;
    line-height: 44.8px;
  }

  .work-copy p {
    margin-top: 0;
    font-size: 14px;
    line-height: 25.2px;
  }

  .work-image-link {
    margin-top: 0;
    border-radius: 14px;
  }

  .experience {
    height: 380px;
  }

  .experience-layout {
    display: grid;
    grid-template-columns: 33% 55.5%;
    column-gap: 8.75%;
    padding-top: 75.75px;
  }

  .experience h2,
  .skills-intro {
    font-size: 32px;
    letter-spacing: 0.32px;
    line-height: 44.8px;
  }

  .experience-list {
    display: grid;
    grid-template-columns: repeat(2, 42%);
    column-gap: 16%;
    row-gap: 80px;
    width: auto;
    margin: 0;
    padding-top: 63.25px;
  }

  .experience-entry h3 {
    font-size: 32px;
    letter-spacing: 0.32px;
    line-height: 44.8px;
  }

  .experience-entry p {
    font-size: 14px;
    line-height: 25.2px;
  }

  .experience-entry .experience-date {
    font-size: 16px;
    line-height: 28.8px;
  }

  .skills {
    min-height: 720.83px;
  }

  .skills-layout {
    display: grid;
    grid-template-columns: 33% 61%;
    column-gap: 6%;
    padding-top: 71.72px;
  }

  .skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 45.5%);
    column-gap: 9%;
    row-gap: 71.3px;
    margin-top: 26.25px;
  }

  .skill-item img {
    width: 36.35px;
    height: 36.35px;
  }

  .skill-item h3 {
    min-height: 59.34px;
    margin-top: 21.82px;
    font-size: 32px;
    letter-spacing: 0.32px;
    line-height: 44.8px;
  }

  .skill-item p {
    font-size: 16px;
    line-height: 28.8px;
  }

  .research {
    min-height: 782.21px;
  }

  .research-heading {
    padding-top: 98.98px;
  }

  .research h2 {
    font-size: 45px;
    letter-spacing: 0.45px;
    line-height: 54px;
  }

  .research-viewport {
    margin-top: 64.75px;
  }

  .research-track {
    gap: clamp(72px, 7vw, 112px);
  }

  .research-item {
    flex-basis: min(25vw, 340px);
    width: min(25vw, 340px);
  }

  .research-topic {
    font-size: 13px;
  }

  .research-question {
    margin-top: 30px;
    font-size: 28px;
    letter-spacing: 0;
    line-height: 1.5;
  }

  .research-answer {
    margin-top: 24px;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.8;
  }

  .footer-marquee {
    height: 216.44px;
  }

  .footer-marquee-track {
    margin-left: 70px;
    font-size: 72px;
  }

  .footer-cta-inner {
    width: 67.42%;
    padding: 88.19px 0 92px;
  }

  .footer-cta h2 {
    font-size: 45px;
    letter-spacing: 0.45px;
    line-height: 54px;
  }

  .footer-cta p {
    font-size: 16px;
    line-height: 28.8px;
  }

  .footer-meta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    height: 68.46px;
    align-items: center;
    padding: 0 4vw;
    color: #141414;
  }

  .footer-meta > p,
  .footer-meta > a,
  .footer-credit {
    margin: 0;
  }

  .footer-meta > p {
    justify-self: center;
    font-size: 16px;
  }
}

html.js .reveal-target {
  opacity: 0;
  transform: translateY(27.25px);
  transition: opacity 625ms cubic-bezier(0.37, 0, 0.63, 1), transform 625ms cubic-bezier(0.37, 0, 0.63, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  html.js .reveal-target {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

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