@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;650;700;750;800&display=swap");
:root {
  --ink: #171918;
  --paper: #f3f3ef;
  --muted: #71746e;
  --line: #d7d9d2;
  --sage: #cfdfb9;
  --font: "Manrope", Arial, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.6 var(--body);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid #6f9560;
  outline-offset: 6px;
}
button {
  color: inherit;
}
img,
svg {
  display: block;
  max-width: 100%;
}
svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px;
  background: white;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 124px;
  padding: 0 7.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}
.monogram {
  position: relative;
  font: 800 37px/0.8 var(--font);
  letter-spacing: -10px;
  transform: skew(-9deg);
  width: 62px;
  padding-right: 10px;
}
.monogram span {
  display: inline-block;
  transform: translateY(5px);
}
.monogram i {
  height: 4px;
  width: 30px;
  background: var(--ink);
  position: absolute;
  top: -9px;
  left: 7px;
}
nav {
  display: flex;
  align-items: center;
  gap: 38px;
  color: white;
  font-size: 13px;
  font-weight: 700;
}
nav > a {
  transition: opacity 0.2s;
}
nav > a:hover {
  opacity: 0.65;
}
.nav-contact {
  background: var(--paper);
  color: var(--ink);
  border-radius: 30px;
  padding: 13px 22px;
  display: flex;
  gap: 20px;
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  min-height: 780px;
  height: min(900px, 100svh);
  overflow: hidden;
  background: #e3e4df;
}
.hero-dark {
  position: absolute;
  inset: 0 0 0 42%;
  background: #131614;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(#626d5c 1px, transparent 1px),
    linear-gradient(90deg, #626d5c 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(130deg, transparent, #000);
}
.hero-outline {
  position: absolute;
  top: 130px;
  left: 24%;
  font: 800 clamp(230px, 27vw, 420px) / 1 var(--font);
  letter-spacing: -35px;
  color: transparent;
  -webkit-text-stroke: 1px #3a413b;
  user-select: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 204px 0 135px 7.5%;
  width: 56%;
  pointer-events: none;
}
.hero-content a {
  pointer-events: auto;
}
.eyebrow,
.tiny-label,
.section-label,
.timeline-date {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.eyebrow {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 10px;
  letter-spacing: 2px;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #647d4f;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #677d5114;
}
.hero-hello {
  font-size: 26px;
  font-weight: 500;
  margin-top: 36px;
}
.hero h1 {
  font-size: clamp(52px, 5.65vw, 84px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -4px;
  margin-top: 13px;
}
.name-dot {
  color: #6d825e;
}
.hero-role {
  margin-top: 23px;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.4px;
}
.hero-description {
  color: #60655c;
  font-size: 14px;
  line-height: 1.8;
  max-width: 345px;
  margin-top: 12px;
}
.hero-actions {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-top: 29px;
}
.button {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  padding: 14px 19px;
  border: 1px solid transparent;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-3px);
}
.button-dark {
  background: var(--ink);
  color: #fff;
}
.button-dark:hover {
  background: #3b4935;
}
.text-link {
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  line-height: 1.8;
  border-bottom: 1px solid currentColor;
  padding: 3px 0;
}
.text-link:hover {
  color: #607449;
}
.socials {
  display: flex;
  gap: 13px;
  margin-top: 42px;
}
.socials > a {
  width: 36px;
  height: 36px;
  background: #d4d6cf;
  display: grid;
  place-items: center;
  transition:
    transform 0.2s,
    background 0.2s;
}
.socials > a:hover {
  transform: translateY(-3px);
  background: var(--sage);
}
.socials svg {
  width: 20px;
  height: 20px;
}
.socials .filled {
  fill: currentColor;
  stroke: none;
}
.linkedin-icon {
  font-family: Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
}
.portrait-wrap {
  position: absolute;
  bottom: -20%;
  left: 44%;
  height: 103%;
  width: 56%;
  z-index: 2;
  pointer-events: none;
}
.hero-portrait {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center top;
  filter: grayscale(100%);
  mask-image: linear-gradient(#000 83%, transparent 100%);
}
.portrait-caption {
  position: absolute;
  z-index: 4;
  right: 5%;
  bottom: 43px;
  left: 59%;
  display: flex;
  gap: 14px;
  align-items: center;
  color: #f2f2ea;
  font-size: 11px;
  line-height: 1.65;
}
.tiny-cross {
  color: var(--sage);
  font-size: 27px;
  font-weight: 200;
}
.portrait-location {
  margin-left: auto;
  letter-spacing: 1.4px;
  font-size: 8px;
  color: #c4c9bf;
  writing-mode: vertical-rl;
}
.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 7.5%;
  z-index: 5;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.scroll-hint > span {
  font-size: 20px;
}
.affiliation-strip {
  padding: 24px 7.5%;
  background: #202420;
  color: #d9ded4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.affiliation-strip p {
  font-size: 10px;
  color: #969f94;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.affiliation-strip strong {
  font-size: 12px;
  color: #edf0e8;
  font-weight: 500;
}
.strip-mark {
  font-size: 26px;
  font-weight: 200;
  color: #5d6957;
}
.section {
  padding: 100px 7.5%;
}
.section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 45px;
  color: #686e62;
  font-size: 9px;
  letter-spacing: 1.8px;
}
.section-label > span:last-child {
  font-size: 25px;
  letter-spacing: 0;
}
.section h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.25;
  letter-spacing: -1.7px;
  font-weight: 650;
}
.muted {
  color: #8b9184;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
}
.about-copy {
  font-size: 14px;
  line-height: 1.9;
  color: #656a60;
}
.about-copy p + p {
  margin-top: 18px;
}
.about-copy strong {
  color: #262d21;
  font-weight: 500;
}
.about-cv {
  margin-top: 30px;
}
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 64px;
}
.focus-card {
  padding: 30px 0 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.focus-icon {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 32px;
  display: block;
  font-family: var(--font);
}
.focus-card .tiny-label {
  font-size: 8px;
  color: #858b7c;
  letter-spacing: 1.5px;
}
.focus-card h3 {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.6px;
}
.focus-card p {
  font-size: 13px;
  color: #767b70;
  line-height: 1.8;
  margin-top: 12px;
  max-width: 310px;
}
.work-section {
  background: #e8eae3;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 42px;
}
.section-heading p,
.section-intro {
  font-size: 13px;
  color: #777d70;
  line-height: 1.8;
}
.section-heading em,
.contact-section em {
  font-style: normal;
  color: #7a856b;
}
.project-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 33px;
  flex-wrap: wrap;
}
.filter {
  border: 1px solid #cbd0c2;
  padding: 9px 18px;
  background: transparent;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 500;
  transition: background 0.2s;
}
.filter:hover {
  background: #dce1d1;
}
.filter.active {
  background: #222820;
  color: white;
  border-color: #222820;
}
.filter span {
  margin-left: 13px;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px 27px;
}
.project-card {
  min-width: 0;
}
.project-visual {
  width: 100%;
  height: 290px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #d3d8cb;
  cursor: pointer;
  transition: filter 0.2s;
  text-align: left;
}
.project-visual:hover {
  filter: brightness(1.04);
}
.project-visual .open-project {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f6f7f1;
  color: #20271d;
  display: grid;
  place-items: center;
  font-size: 20px;
  transition: transform 0.25s;
}
.project-visual:hover .open-project {
  transform: rotate(45deg);
}
.project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.project-visual:hover img {
  transform: scale(1.035);
}
.visual-caption {
  position: absolute;
  bottom: 14px;
  left: 18px;
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #abbca1;
  z-index: 2;
}
.project-meta {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.project-meta p {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #727a66;
}
.project-number {
  font-size: 9px;
  color: #929a86;
}
.project-card h3 {
  font-size: 23px;
  line-height: 1.3;
  margin-top: 8px;
  font-weight: 650;
  letter-spacing: -0.7px;
}
.project-card h3 button {
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  font: inherit;
}
.project-card h3 button:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.project-description {
  font-size: 13px;
  line-height: 1.8;
  color: #72786a;
  margin-top: 12px;
  max-width: 92%;
}
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}
.project-tags span {
  border: 1px solid #cfd3c5;
  padding: 3px 8px;
  font-size: 8px;
  letter-spacing: 0.2px;
  color: #6b7460;
  border-radius: 3px;
}
.work-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 45px;
  padding-top: 24px;
  border-top: 1px solid #cbd0c3;
  gap: 20px;
}
.work-bottom p {
  font-size: 12px;
  color: #727969;
}
.visual-graph {
  background: #12232c;
}
.visual-graph img {
  opacity: 0.8;
}
.visual-health {
  background: #ccd5c2;
}
.health-ui {
  position: relative;
  width: 67%;
  background: #f5f6ee;
  padding: 22px 24px;
  border: 1px solid #b8c5aa;
  box-shadow: 12px 16px 0 #b9c4ad;
  transform: rotate(-5deg);
}
.health-ui .ui-top {
  display: flex;
  justify-content: space-between;
  font: 700 12px var(--font);
}
.health-ui .ui-top span {
  font-size: 8px;
  color: #849176;
}
.health-ui .ui-title {
  font-size: 8px;
  color: #8c967f;
  margin-top: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.health-ui .ui-number {
  font: 600 36px var(--font);
  margin-top: 5px;
}
.health-ui .ui-number small {
  font: 400 10px var(--body);
  color: #8b967e;
}
.health-ui svg {
  width: 100%;
  height: 65px;
  color: #748f5c;
  stroke-width: 2;
}
.health-ui .ui-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #81936e;
}
.visual-health .visual-caption,
.visual-aqua .visual-caption,
.visual-medibox .visual-caption {
  color: #5d7150;
}
.visual-tracking {
  background: #202b25;
}
.tracking-scene {
  height: 70%;
  width: 77%;
  position: relative;
  background: linear-gradient(165deg, #37493b, #14281a);
  border: 1px solid #53604e;
  perspective: 300px;
}
.tracking-scene:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 45%;
  background:
    repeating-linear-gradient(0deg, transparent 0 22px, #78896426 23px),
    repeating-linear-gradient(90deg, transparent 0 35px, #78896426 36px);
  transform: rotateX(20deg);
  transform-origin: bottom;
}
.track-box {
  position: absolute;
  left: 21%;
  top: 18%;
  width: 22%;
  height: 65%;
  border: 1px solid #c3e399;
  z-index: 2;
}
.track-box:before {
  content: "";
  position: absolute;
  left: 30%;
  top: 20%;
  height: 55%;
  width: 45%;
  border-radius: 40% 40% 12% 12%;
  background: #728569;
}
.track-box:after {
  content: "PERSON · 01";
  position: absolute;
  top: -19px;
  left: -1px;
  background: #c3e399;
  padding: 2px 6px;
  font-size: 7px;
  white-space: nowrap;
  color: #304624;
}
.track-box.second {
  left: 66%;
  top: 30%;
  height: 43%;
  width: 17%;
  border-color: #87b6ac;
}
.track-box.second:after {
  content: "PERSON · 02";
  background: #87b6ac;
}
.command {
  position: absolute;
  z-index: 4;
  bottom: 18px;
  left: 12%;
  right: 12%;
  padding: 10px 13px;
  color: #d6e8c5;
  background: #132016;
  border: 1px solid #657953;
  font: 9px/1.5 monospace;
  box-shadow: 0 8px 30px #0003;
}
.visual-gait {
  background: #e2ded2;
}
.visual-gait img {
  height: auto;
  width: 88%;
  box-shadow: 8px 12px 0 #c9c4b7;
  transform: rotate(-3deg);
  object-fit: contain;
}
.visual-gait:hover img {
  transform: rotate(0);
}
.visual-medibox {
  background: #d4cfc2;
}
.medibox {
  width: 215px;
  height: 145px;
  padding: 23px;
  background: #efece3;
  box-shadow: 15px 15px 0 #a9a59460;
  transform: rotate(-8deg);
  border: 1px solid #bcb9a9;
  border-radius: 10px;
}
.medibox-screen {
  padding: 10px;
  background: #273e33;
  color: #d1e7c1;
  font: 10px/1.8 monospace;
}
.medibox-buttons {
  display: flex;
  gap: 16px;
  margin-top: 17px;
}
.medibox-buttons span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #9eac91;
  border: 1px solid #819370;
}
.visual-video {
  background: #142126;
}
.play-ring {
  position: absolute;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1px solid #d2e4c599;
  background: #0c1b16a0;
  color: #f0f5e9;
  display: grid;
  place-items: center;
  z-index: 5;
  font-size: 21px;
}
.visual-video .tracking-scene {
  opacity: 0.6;
}
.skills-section {
  background: #1b201b;
  color: #e7eadf;
}
.skills-section .section-label {
  color: #a3ac99;
}
.skills-section .section-heading p {
  color: #a4ad9a;
}
.skill-group {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 50px;
  padding: 31px 0;
  border-top: 1px solid #3c4437;
  align-items: start;
}
.skill-group:last-child {
  border-bottom: 1px solid #3c4437;
}
.skill-group > div {
  display: flex;
  align-items: center;
  gap: 33px;
}
.skill-group span {
  font-size: 10px;
  color: #8a967d;
}
.skill-group h3 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.5px;
}
.skill-group p {
  font-size: 13px;
  line-height: 2;
  color: #a8b49b;
}
.journey-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
}
.section-intro {
  margin-top: 22px;
}
.timeline {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}
.timeline-item {
  padding: 0 0 32px;
  position: relative;
}
.timeline-item:before {
  content: "";
  position: absolute;
  top: 7px;
  left: -30px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #798a6a;
  box-shadow: 0 0 0 5px var(--paper);
}
.timeline-date {
  font-size: 8px;
  color: #909683;
  letter-spacing: 1.3px;
}
.timeline-item h3 {
  font-size: 19px;
  font-weight: 600;
  margin-top: 9px;
  letter-spacing: -0.5px;
}
.timeline-item h4 {
  font-size: 11px;
  color: #717e63;
  font-weight: 600;
  margin-top: 5px;
}
.timeline-item p {
  color: #7e8377;
  font-size: 12px;
  line-height: 1.9;
  margin-top: 10px;
}
.awards {
  margin-top: 60px;
  padding: 25px 30px;
  background: #e7ebdf;
  border: 1px solid #d9dfd0;
}
.awards > .tiny-label {
  font-size: 9px;
  color: #6d795e;
}
.awards > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 20px;
}
.awards p {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.awards strong {
  font: 600 17px var(--font);
  letter-spacing: -0.5px;
}
.awards p span {
  font-size: 10px;
  color: #7b876c;
  line-height: 1.7;
}
.contact-section {
  padding: 80px 7.5% 60px;
  background: #dce4d1;
}
.contact-section .section-label {
  margin-bottom: 32px;
}
.contact-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.contact-section h2 {
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.2;
  letter-spacing: -2.5px;
  font-weight: 600;
}
.contact-top p {
  font-size: 12px;
  line-height: 1.9;
  color: #738263;
  padding-bottom: 5px;
}
.contact-email {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 42px;
  border-bottom: 1px solid #b7c5a5;
  padding-bottom: 20px;
}
.contact-email > a {
  font: 500 clamp(18px, 2.5vw, 35px) var(--font);
  letter-spacing: -1px;
}
.contact-email > a > span {
  display: inline-block;
  margin-left: 30px;
  transition: transform 0.2s;
}
.contact-email > a:hover > span {
  transform: translate(4px, -4px);
}
#copy-email {
  width: 36px;
  height: 36px;
  border: 1px solid #b8c5a8;
  display: grid;
  place-items: center;
  background: transparent;
  border-radius: 50%;
}
#copy-email svg {
  width: 15px;
  height: 15px;
}
#copy-email:hover {
  background: #cad8bc;
}
#copy-status {
  height: 25px;
  font-size: 11px;
  margin-top: 5px;
  color: #4c6639;
}
.contact-links {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  margin-top: 15px;
  font-size: 11px;
}
.contact-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
footer {
  background: #161b15;
  color: #a6b39a;
  padding: 29px 7.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
}
.footer-wordmark {
  font: 700 11px var(--font);
  letter-spacing: 1px;
  color: #e2e9da;
}
.footer-wordmark span {
  font-weight: 400;
}
footer p {
  color: #728366;
}
.back-top {
  color: #bac7ad;
}
dialog {
  padding: 0;
  border: 1px solid #cdd4c0;
  background: #f1f3ea;
  color: #242c1c;
  width: min(680px, calc(100% - 32px));
  max-height: 88svh;
  overscroll-behavior: contain;
}
dialog::backdrop {
  background: #10190ed9;
  backdrop-filter: blur(7px);
}
.dialog-close {
  position: absolute;
  right: 14px;
  top: 12px;
  z-index: 5;
  background: #f1f3ea;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #ced4c5;
  font-size: 25px;
  line-height: 1;
  display: grid;
  place-items: center;
}
.dialog-visual .project-visual {
  height: 270px;
  cursor: default;
}
.dialog-visual .open-project {
  display: none;
}
.dialog-body {
  padding: 32px;
}
.dialog-body .tiny-label {
  color: #738564;
  font-size: 9px;
}
.dialog-body h2 {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: -1.2px;
  margin: 10px 0 16px;
}
.dialog-body p {
  font-size: 13px;
  line-height: 1.9;
  color: #6d7961;
}
.dialog-body .project-tags {
  margin: 19px 0;
}
.dialog-status {
  font-size: 10px !important;
  background: #e3e9da;
  padding: 8px 12px;
  border-left: 2px solid #8c9f76;
  margin-top: 20px;
}
.dialog-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.dialog-video {
  width: 100%;
  background: #15200f;
  display: block;
  margin-top: 24px;
}
.media-credit {
  font-size: 9px !important;
  margin-top: 9px;
}
.dialog-note {
  margin-top: 16px;
}
.reveal {
  opacity: 1;
  transform: none;
}
.js-motion .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.js-motion .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (min-width: 1550px) {
  .site-header,
  .section,
  .affiliation-strip,
  .contact-section,
  footer {
    padding-left: max(7.5%, calc((100% - 1300px) / 2));
    padding-right: max(7.5%, calc((100% - 1300px) / 2));
  }
  .hero-content {
    padding-left: max(7.5%, calc((100% - 1300px) / 2));
  }
  .hero {
    max-height: 940px;
  }
  .hero h1 {
    font-size: 86px;
  }
  .hero-content {
    padding-top: 230px;
  }
  .portrait-wrap {
    left: 47%;
    width: 48%;
  }
}
@media (max-width: 1100px) {
  .hero-content {
    padding-left: 6%;
    padding-top: 192px;
  }
  .site-header {
    padding: 0 6%;
  }
  nav {
    gap: 25px;
  }
  .hero h1 {
    font-size: 61px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-description {
    max-width: 310px;
  }
  .hero-dark {
    left: 44%;
  }
  .portrait-wrap {
    left: 45%;
    width: 61%;
    bottom: -18%;
    height: 98%;
  }
  .hero-role {
    font-size: 15px;
  }
  .hero-content {
    width: 59%;
  }
  .section {
    padding: 80px 6%;
  }
  .project-visual {
    height: 245px;
  }
  .about-layout {
    gap: 6%;
  }
  .section h2 {
    font-size: 33px;
  }
  .contact-top {
    align-items: start;
    flex-direction: column;
  }
  .skill-group {
    grid-template-columns: 1fr 1.25fr;
    gap: 30px;
  }
  .skill-group > div {
    gap: 20px;
  }
  .contact-section {
    padding: 70px 6%;
  }
  footer {
    padding: 25px 6%;
  }
  .portrait-caption {
    left: 61%;
  }
  .affiliation-strip {
    padding: 22px 6%;
    gap: 15px;
  }
  .affiliation-strip strong {
    font-size: 10px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 24px;
  }
  .site-header {
    height: 92px;
    padding: 0 7%;
  }
  .monogram {
    font-size: 31px;
    width: 51px;
  }
  .monogram i {
    width: 23px;
    height: 3px;
    top: -7px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #f0f2e8;
    color: #1c2319;
    border: 0;
    padding: 13px 10px;
    width: 42px;
    height: 40px;
    justify-content: center;
    z-index: 20;
  }
  .menu-toggle span {
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 7%;
    right: 7%;
    padding: 22px;
    background: #192016;
    box-shadow: 0 10px 40px #0004;
    gap: 5px;
    align-items: stretch;
  }
  nav.is-open {
    display: flex;
    flex-direction: column;
  }
  nav > a {
    padding: 12px;
    font-size: 14px;
  }
  .nav-contact {
    margin-top: 10px;
    justify-content: space-between;
  }
  .hero {
    height: auto;
    min-height: 960px;
    padding-bottom: 450px;
  }
  .hero-dark {
    top: auto;
    bottom: 0;
    height: 460px;
    left: 0;
    clip-path: polygon(0 9%, 100% 0, 100% 100%, 0 100%);
  }
  .hero-content {
    width: 100%;
    padding: 130px 7% 34px;
  }
  .hero h1 {
    font-size: clamp(48px, 11.8vw, 78px);
    letter-spacing: -3px;
    line-height: 1.07;
  }
  .hero-hello {
    margin-top: 22px;
    font-size: 21px;
  }
  .hero-role {
    font-size: 16px;
    margin-top: 18px;
  }
  .hero-description {
    max-width: 380px;
    font-size: 13px;
    line-height: 1.7;
  }
  .hero-actions {
    margin-top: 22px;
    gap: 22px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .button {
    padding: 12px 16px;
    font-size: 11px;
    gap: 24px;
  }
  .socials {
    margin-top: 25px;
  }
  .socials > a {
    width: 33px;
    height: 33px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.6px;
  }
  .portrait-wrap {
    height: 520px;
    bottom: -90px;
    left: 8%;
    width: 100%;
    max-width: 500px;
    transform: translateX(0);
  }
  .hero-portrait {
    object-position: center top;
  }
  .hero-outline {
    font-size: 275px;
    top: 60px;
    left: 15%;
    letter-spacing: -27px;
  }
  .portrait-caption {
    left: 7%;
    right: 7%;
    bottom: 20px;
    align-items: end;
    font-size: 10px;
  }
  .portrait-location {
    writing-mode: initial;
    align-self: end;
    font-size: 7px;
  }
  .scroll-hint {
    display: none;
  }
  .affiliation-strip {
    padding: 22px 7%;
    gap: 17px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .affiliation-strip p {
    font-size: 8px;
    max-width: 41%;
    gap: 3px;
  }
  .affiliation-strip strong {
    font-size: 9px;
  }
  .affiliation-strip p:last-child,
  .affiliation-strip .strip-mark:nth-last-child(2) {
    display: none;
  }
  .strip-mark {
    font-size: 21px;
  }
  .section {
    padding: 65px 7%;
  }
  .section-label {
    font-size: 8px;
    margin-bottom: 29px;
    letter-spacing: 1.3px;
  }
  .section-label > span:last-child {
    font-size: 21px;
  }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .section h2 {
    font-size: 31px;
    letter-spacing: -1.3px;
  }
  .about-copy {
    font-size: 13px;
    line-height: 1.9;
  }
  .about-cv {
    margin-top: 20px;
  }
  .focus-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 38px;
  }
  .focus-card {
    padding: 22px 0 0 54px;
  }
  .focus-icon {
    position: absolute;
    left: 0;
    top: 26px;
    font-size: 29px;
  }
  .focus-card h3 {
    font-size: 17px;
    margin-top: 7px;
  }
  .focus-card p {
    font-size: 12px;
    margin-top: 8px;
    max-width: 100%;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading p {
    margin-top: 20px;
    font-size: 12px;
  }
  .project-filters {
    gap: 7px;
    margin-bottom: 25px;
  }
  .filter {
    font-size: 9px;
    padding: 8px 12px;
  }
  .filter span {
    margin-left: 8px;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .project-visual {
    height: 260px;
  }
  .project-card h3 {
    font-size: 22px;
  }
  .project-description {
    font-size: 12px;
  }
  .project-meta {
    margin-top: 14px;
  }
  .project-meta p {
    font-size: 8px;
  }
  .project-tags span {
    font-size: 8px;
  }
  .work-bottom {
    align-items: start;
    flex-direction: column;
    gap: 10px;
    margin-top: 32px;
  }
  .work-bottom p {
    font-size: 11px;
  }
  .skill-group {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 24px 0;
  }
  .skill-group h3 {
    font-size: 17px;
  }
  .skill-group > div {
    gap: 18px;
  }
  .skill-group p {
    font-size: 12px;
    padding-left: 31px;
  }
  .journey-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .timeline {
    margin-left: 4px;
  }
  .timeline-item h3 {
    font-size: 17px;
  }
  .awards {
    margin-top: 20px;
    padding: 22px;
  }
  .awards > div {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .awards p {
    gap: 3px;
  }
  .awards strong {
    font-size: 16px;
  }
  .contact-section {
    padding: 55px 7% 40px;
  }
  .contact-section h2 {
    font-size: 37px;
    letter-spacing: -1.6px;
  }
  .contact-top {
    gap: 24px;
  }
  .contact-top p {
    font-size: 11px;
  }
  .contact-email {
    margin-top: 27px;
    gap: 12px;
  }
  .contact-email > a {
    font-size: clamp(15px, 4.5vw, 24px);
    letter-spacing: -0.6px;
  }
  .contact-email > a > span {
    margin-left: 5px;
  }
  #copy-email {
    width: 29px;
    height: 29px;
    flex-shrink: 0;
  }
  .contact-links {
    gap: 25px;
    font-size: 10px;
    margin-top: 6px;
  }
  footer {
    padding: 25px 7%;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-wordmark {
    width: 100%;
    font-size: 10px;
  }
  footer p {
    flex: 1;
  }
  .dialog-body {
    padding: 25px;
  }
  .dialog-body h2 {
    font-size: 26px;
  }
  .dialog-visual .project-visual {
    height: 230px;
  }
  .dialog-close {
    top: 10px;
    right: 10px;
  }
}
.visual-gait .visual-caption {
  color: #4e5845;
  background: #eeede3c9;
  padding: 2px 5px;
}
.project-meta p {
  color: #5c6551;
}
.project-tags span {
  color: #566249;
}
.visual-tracking .visual-caption,
.visual-video .visual-caption {
  bottom: 5px;
  font-size: 7px;
}
.visual-tracking .command,
.visual-video .command {
  bottom: 23px;
}
/* Readability, academic affiliations and the server-backed contact form. */
nav {
  font-size: 16px;
  gap: 25px;
}
.eyebrow {
  font-size: 12px;
}
.hero {
  min-height: 870px;
}
.hero-content {
  padding-top: 184px;
}
.hero-role {
  font-size: 20px;
}
.hero-description {
  font-size: 17px;
  max-width: 395px;
  line-height: 1.75;
}
.button,
.text-link {
  font-size: 15px;
}
.hero-actions {
  gap: 24px;
}
.socials {
  margin-top: 28px;
}
.portrait-caption {
  font-size: 14px;
}
.scroll-hint {
  font-size: 11px;
}
.section-label {
  font-size: 12px;
  letter-spacing: 1.4px;
}
.about-copy {
  font-size: 17px;
}
.focus-card .tiny-label {
  font-size: 11px;
}
.focus-card h3 {
  font-size: 22px;
}
.focus-card p,
.section-heading p,
.section-intro {
  font-size: 16px;
}
.filter {
  font-size: 14px;
  padding: 10px 20px;
}
.project-meta p {
  font-size: 11px;
}
.project-number {
  font-size: 12px;
}
.project-card h3 {
  font-size: 27px;
}
.project-description {
  font-size: 16px;
}
.project-tags span {
  font-size: 11px;
}
.project-site-link {
  margin-top: 18px;
}
.project-visual .remoni-mark {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 85px;
  height: 85px;
  object-fit: contain;
  box-shadow: none;
  transform: none;
}
.work-bottom p {
  font-size: 15px;
}
.skill-group h3 {
  font-size: 23px;
}
.skill-group p {
  font-size: 16px;
}
.skill-group span,
.timeline-date {
  font-size: 12px;
}
.timeline-item h3 {
  font-size: 23px;
}
.timeline-item h4 {
  font-size: 15px;
}
.timeline-item p {
  font-size: 16px;
}
.awards > .tiny-label {
  font-size: 12px;
}
.awards strong {
  font-size: 21px;
}
.awards p span {
  font-size: 14px;
}
.contact-top p {
  font-size: 16px;
}
.contact-links {
  font-size: 15px;
}
footer {
  font-size: 12px;
}
.footer-wordmark {
  font-size: 13px;
}
.dialog-body p {
  font-size: 16px;
}
.dialog-body .tiny-label {
  font-size: 12px;
}
.dialog-status {
  font-size: 13px !important;
}
.media-credit {
  font-size: 12px !important;
}
.reading-progress {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #9bb784;
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}
.affiliation-strip {
  padding-top: 30px;
  padding-bottom: 30px;
  gap: 50px;
}
.affiliation {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  min-width: 0;
}
.affiliation + .affiliation {
  border-left: 1px solid #475040;
  padding-left: 50px;
}
.institution-logo {
  flex-shrink: 0;
  width: 190px;
  display: flex;
  align-items: center;
}
.institution-logo img {
  width: 100%;
  height: auto;
  max-height: 90px;
  object-fit: contain;
}
.institution-copy {
  font-size: 12px;
  color: #aebaa3;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.affiliation .institution-copy strong {
  font-size: 14px;
  line-height: 1.55;
  color: #ecf0e5;
}
.affiliation:hover .institution-copy {
  color: white;
}
.contact-form-layout {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8%;
  padding-top: 40px;
  border-top: 1px solid #b7c5a5;
}
.contact-envelope {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid #9bad88;
  border-radius: 50%;
  font-size: 32px;
  margin-bottom: 30px;
}
.contact-invitation h3 {
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -1px;
  font-weight: 600;
}
.contact-invitation > p {
  color: #576b46;
  font-size: 16px;
  line-height: 1.85;
  margin-top: 19px;
  max-width: 330px;
}
.contact-expectation {
  font-size: 12px;
  margin-top: 25px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #556847;
}
.contact-form {
  min-width: 0;
  position: relative;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form label {
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: 20px;
}
.contact-form label > span {
  color: #657850;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  display: block;
  font: 16px/1.5 var(--body);
  border: 1px solid #abb99b;
  border-radius: 0;
  padding: 13px 15px;
  background: #f6f8f060;
  color: #202d17;
  margin-top: 9px;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #768969;
  opacity: 1;
}
.contact-form textarea {
  min-height: 155px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid #6b8655;
  outline-offset: 3px;
  background: #f6f8f0;
  border-color: #536f3f;
}
.contact-form-footer {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.contact-form-footer p {
  font-size: 12px;
  color: #607350;
  line-height: 1.8;
  max-width: 235px;
}
#send-message {
  white-space: nowrap;
  min-height: 50px;
}
#send-message:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
.contact-form-status {
  min-height: 46px;
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.7;
  color: #5c704d;
}
.contact-form-status[data-state="error"] {
  color: #9a3029;
}
.contact-form-status[data-state="success"] {
  color: #365b27;
  font-weight: 600;
}
.contact-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-content > * {
    animation: arrive 0.85s both;
  }
  .hero-content .hero-hello {
    animation-delay: 0.08s;
  }
  .hero-content h1 {
    animation-delay: 0.16s;
  }
  .hero-content .hero-role {
    animation-delay: 0.22s;
  }
  .hero-content .hero-description {
    animation-delay: 0.28s;
  }
  .hero-content .hero-actions {
    animation-delay: 0.34s;
  }
  .hero-content .socials {
    animation-delay: 0.4s;
  }
  .portrait-wrap {
    animation: portrait-arrive 1.1s 0.15s both;
  }
  .hero-outline {
    animation: outline-arrive 1.5s 0.15s both;
  }
  .project-card .project-visual {
    transition:
      transform 0.4s,
      box-shadow 0.4s;
  }
  .project-card .project-visual:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px #25302018;
  }
  .focus-icon,
  .contact-envelope {
    transition: transform 0.35s;
  }
  .focus-card:hover .focus-icon {
    transform: rotate(-12deg) scale(1.1);
  }
  .contact-invitation:hover .contact-envelope {
    transform: rotate(45deg);
  }
  .health-ui svg path {
    stroke-dasharray: 440;
    stroke-dashoffset: 0;
  }
  .visual-health:hover svg path {
    animation: draw-signal 1.8s ease both;
  }
  .affiliation .institution-logo {
    transition: transform 0.3s;
  }
  .affiliation:hover .institution-logo {
    transform: translateY(-3px);
  }
}
@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes portrait-arrive {
  from {
    opacity: 0;
    translate: 20px 0;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes outline-arrive {
  from {
    opacity: 0;
    translate: 25px 0;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes draw-signal {
  from {
    stroke-dashoffset: 440;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@media (max-width: 1100px) {
  nav {
    gap: 22px;
    font-size: 14px;
  }
  .hero-role {
    font-size: 18px;
  }
  .hero-description {
    font-size: 16px;
    max-width: 350px;
  }
  .hero-actions {
    flex-wrap: wrap;
    row-gap: 13px;
  }
  .affiliation-strip {
    gap: 26px;
  }
  .affiliation {
    gap: 18px;
  }
  .affiliation + .affiliation {
    padding-left: 26px;
  }
  .institution-logo {
    width: 150px;
  }
  .affiliation .institution-copy strong {
    font-size: 12px;
  }
  .institution-copy {
    font-size: 10px;
  }
  .contact-form-layout {
    gap: 5%;
    grid-template-columns: 0.7fr 1.3fr;
  }
  .contact-form-footer {
    align-items: start;
    flex-direction: column;
  }
}
@media (max-width: 760px) {
  .hero {
    min-height: 1000px;
  }
  .hero-content {
    padding-top: 126px;
  }
  .eyebrow {
    font-size: 10px;
  }
  .hero-role {
    font-size: 18px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-actions {
    gap: 17px;
  }
  .button,
  .text-link,
  .hero-actions .text-link {
    font-size: 13px;
  }
  .section-label {
    font-size: 10px;
    letter-spacing: 1px;
  }
  .about-copy,
  .focus-card p,
  .section-heading p,
  .section-intro,
  .project-description,
  .skill-group p,
  .timeline-item p,
  .contact-top p,
  .dialog-body p {
    font-size: 16px;
  }
  .focus-card h3,
  .skill-group h3,
  .timeline-item h3 {
    font-size: 21px;
  }
  .project-card h3 {
    font-size: 25px;
  }
  .filter {
    font-size: 12px;
    padding: 9px 13px;
  }
  .project-tags span {
    font-size: 11px;
  }
  .project-meta p {
    font-size: 10px;
  }
  .timeline-item h4 {
    font-size: 14px;
  }
  .affiliation-strip {
    flex-direction: column;
    align-items: stretch;
    gap: 23px;
    padding: 28px 7%;
  }
  .affiliation {
    gap: 22px;
  }
  .affiliation + .affiliation {
    padding: 23px 0 0;
    border-left: 0;
    border-top: 1px solid #475040;
  }
  .institution-logo {
    width: 43%;
    max-width: 190px;
  }
  .institution-copy {
    font-size: 10px;
  }
  .affiliation .institution-copy strong {
    font-size: 12px;
  }
  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
  }
  .contact-invitation h3 {
    font-size: 28px;
  }
  .contact-envelope {
    margin-bottom: 18px;
    width: 47px;
    height: 47px;
    font-size: 27px;
  }
  .contact-invitation > p {
    max-width: none;
    margin-top: 14px;
  }
  .contact-expectation {
    margin-top: 17px;
    font-size: 11px;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form label {
    font-size: 15px;
  }
  .contact-form-footer p {
    max-width: none;
    font-size: 13px;
  }
  .contact-form-footer {
    gap: 16px;
  }
  #send-message {
    width: 100%;
    justify-content: space-between;
    font-size: 15px;
  }
  .contact-links {
    font-size: 14px;
    gap: 25px;
  }
  .footer-wordmark {
    font-size: 12px;
  }
  footer {
    font-size: 11px;
  }
}
.visual-aqua {
  background: #fff;
}
.visual-health {
  background: #faf7ff;
}
.visual-health img,
.visual-health:hover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}
.dialog-visual .visual-health {
  height: auto;
  aspect-ratio: 1335 / 758;
}
.visual-aqua img,
.visual-aqua:hover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}
.dialog-visual .visual-aqua {
  height: auto;
  aspect-ratio: 2 / 1;
}
.project-gallery {
  margin-top: 28px;
}
.dialog-close {
  position: sticky;
  top: 12px;
  right: auto;
  margin: 12px 14px -47px auto;
}
.project-gallery h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}
.project-gallery figure {
  margin: 0 0 24px;
}
.project-gallery figure > a {
  display: block;
  background: #fff;
  border: 1px solid #d6ddcd;
}
.project-gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.project-gallery figcaption {
  font-size: 14px;
  line-height: 1.7;
  color: #58664b;
  margin-top: 12px;
}
.project-gallery figcaption span {
  display: block;
  font-size: 12px;
  color: #738265;
  margin-top: 5px;
}
/* Professional development and publication links. */
.certifications-section {
  background: #e8eae3;
}
.certification-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.certificate-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px;
  background: #f5f6ef;
  border: 1px solid #cfd7c5;
}
.certificate-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 23px;
}
.certificate-mark {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 1px solid #bdcbb0;
  font: 750 17px var(--font);
  letter-spacing: -1px;
  color: #526442;
}
.certificate-logo {
  display: block;
  width: 112px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}
.project-visual.has-original-image {
  background: #f8f8f5;
}
.project-visual.has-original-image img {
  object-fit: contain;
}
.project-visual.has-original-image:hover img {
  transform: none;
}
.project-visual.has-ai-image img {
  object-fit: cover;
}
.project-visual .ai-image-label {
  color: white;
  background: #171918e6;
  border-radius: 4px;
  padding: 5px 9px;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.3px;
  max-width: calc(100% - 88px);
}
.project-date,
.dialog-body .project-date {
  color: #627155;
  font-size: 13px;
  margin-top: 10px;
  margin-bottom: 4px;
}
@media (min-width: 761px) {
  body:not(.moments-page) .site-header nav {
    background: #131614;
    border-radius: 40px;
    padding: 7px 8px 7px 22px;
  }
}
.certificate-category {
  color: #6a7a5d;
  font-size: 10px;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  text-align: right;
}
.certificate-card h3 {
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: -0.5px;
  font-weight: 650;
}
.certificate-issuer {
  font-size: 15px;
  line-height: 1.7;
  color: #6a775f;
  margin-top: 11px;
}
.certificate-date {
  font-size: 13px;
  line-height: 1.85;
  color: #6e7c60;
  margin-top: 15px;
}
.certificate-details {
  border-top: 1px solid #d6dece;
  padding-top: 13px;
  margin-top: 22px;
}
.certificate-details summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.certificate-details summary::-webkit-details-marker {
  display: none;
}
.certificate-details summary > span {
  font-size: 18px;
  line-height: 1.2;
  transition: transform 0.2s;
}
.certificate-details[open] summary > span {
  transform: rotate(45deg);
}
.certificate-details summary:focus-visible {
  outline: 2px solid #6f9560;
  outline-offset: 6px;
}
.credential-id {
  font-size: 12px;
  color: #738466;
  margin-top: 15px;
}
.credential-id strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #3e5230;
  margin-top: 4px;
  overflow-wrap: anywhere;
}
.certificate-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  padding: 0;
  margin: 13px 0 0;
}
.certificate-skills li {
  padding: 4px 7px;
  border: 1px solid #d1dbc6;
  font-size: 11px;
  line-height: 1.7;
  color: #627752;
}
.publications-section {
  padding-top: 65px;
  padding-bottom: 75px;
}
.publication-callout {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 45px;
}
.publication-callout > div {
  position: relative;
  padding-left: 90px;
}
.publication-symbol {
  position: absolute;
  left: 0;
  top: 4px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid #b4c2a6;
  border-radius: 50%;
  font-size: 30px;
  color: #526b40;
}
.publication-callout p {
  color: #718164;
  font-size: 16px;
  line-height: 1.85;
  margin-top: 22px;
}
.publication-callout .button {
  white-space: nowrap;
}
@media (max-width: 1100px) {
  .certification-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .certificate-card {
    padding: 26px;
  }
  .publication-callout {
    align-items: start;
    flex-direction: column;
    gap: 30px;
  }
  .publication-callout .button {
    margin-left: 90px;
  }
}
@media (max-width: 760px) {
  .certification-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .certificate-card {
    padding: 25px;
  }
  .certificate-card h3 {
    font-size: 21px;
  }
  .certificate-top {
    margin-bottom: 18px;
  }
  .certificate-category {
    font-size: 11px;
  }
  .certificate-issuer {
    font-size: 16px;
  }
  .certificate-date,
  .certificate-details summary {
    font-size: 14px;
  }
  .publication-callout > div {
    padding-left: 0;
    padding-top: 73px;
  }
  .publication-callout .button {
    margin-left: 0;
    white-space: normal;
    max-width: 100%;
  }
  .publication-callout p br {
    display: none;
  }
  .publication-symbol {
    width: 49px;
    height: 49px;
    font-size: 27px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .js-motion .reveal {
    opacity: 1;
    transform: none;
  }
}
