:root {
  --ink: #222222;
  --muted: #5f6663;
  --line: #dddddd;
  --paper: #ffffff;
  --soft: #f6f7f6;
  --link: #1f5f8b;
  --accent: #2b746f;
  --accent-2: #9a6724;
  --panel: #fbfdfc;
  --shadow: 0 18px 44px rgba(31, 72, 68, 0.12);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --max: 1500px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(31, 95, 139, 0.08) 0%, rgba(31, 95, 139, 0) 34%),
    linear-gradient(90deg, rgba(43, 116, 111, 0.06) 0, rgba(43, 116, 111, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(43, 116, 111, 0.04) 0, rgba(43, 116, 111, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 44px 44px, 44px 44px, auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.58;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

a {
  color: var(--link);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition:
    color 180ms var(--ease),
    background-color 180ms var(--ease),
    border-color 180ms var(--ease);
}

a:hover {
  color: #123f61;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--ink);
  color: #ffffff;
  padding: 8px 12px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(31, 72, 68, 0.05);
  backdrop-filter: blur(10px);
}

.top-nav {
  width: min(var(--max), calc(100% - 36px));
  min-height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-name,
.nav-links a,
.nav-toggle,
.profile,
.project-kicker,
.cv-item time,
.footer {
  font-family: Arial, Helvetica, sans-serif;
}

.site-name {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.nav-links a {
  position: relative;
  overflow: hidden;
  color: #333333;
  border-radius: 4px;
  font-size: 18px;
  text-decoration: none;
  transition:
    color 180ms var(--ease),
    background-color 180ms var(--ease),
    transform 180ms var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--link));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms var(--ease);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--link);
  background: rgba(31, 95, 139, 0.07);
  text-decoration: none;
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  width: 38px;
  height: 38px;
  display: none;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: var(--ink);
}

.layout {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.profile {
  position: sticky;
  top: 84px;
  padding: 38px 0 32px;
}

.profile-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(43, 116, 111, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 253, 252, 0.96));
  box-shadow: var(--shadow);
  padding: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.42;
  transition:
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    transform 220ms var(--ease);
}

.profile-card:hover {
  border-color: rgba(43, 116, 111, 0.34);
  box-shadow: 0 24px 54px rgba(31, 72, 68, 0.16);
  transform: translateY(-4px);
}

.profile-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--link));
}

.profile-photo {
  width: 230px;
  height: 230px;
  margin: 0 auto;
  object-fit: cover;
  object-position: 54% 29%;
  border-radius: 50%;
  border: 5px solid #ffffff;
  box-shadow: 0 12px 32px rgba(31, 72, 68, 0.18);
  transition: transform 280ms var(--ease);
}

.profile-card:hover .profile-photo {
  transform: scale(1.025);
}

.profile-card h2 {
  margin: 22px 0 5px;
  color: var(--ink);
  font-size: 29px;
  line-height: 1.2;
}

.profile-title {
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 700;
}

.profile-card p {
  margin: 0;
}

.profile-org {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.profile-info {
  display: grid;
  gap: 9px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.profile-row {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #2f3b38;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.profile-row span {
  min-width: 0;
}

.profile-row:hover {
  color: var(--link);
}

.profile-icon,
.profile-badge {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 4px;
  color: var(--accent);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1;
}

.profile-icon {
  padding: 2px;
  stroke-width: 2;
}

.profile-badge {
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
}

.profile-badge.orcid {
  background: #a6ce39;
}

.profile-badge.linkedin {
  background: #0a66c2;
}

.profile-badge.github {
  background: #24292f;
  font-size: 7px;
}

.content {
  min-width: 0;
  padding: 34px 0 26px;
}

.page-panel[hidden] {
  display: none;
}

.page-panel.is-active {
  animation: page-in 420ms var(--ease) both;
}

@keyframes page-in {
  from {
    opacity: 0.86;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-panel.is-active .section {
  animation: section-rise 560ms var(--ease) both;
}

.page-panel.is-active .section:nth-child(2) {
  animation-delay: 80ms;
}

.page-panel.is-active .section:nth-child(3) {
  animation-delay: 150ms;
}

.page-panel.is-active h1::after {
  transform-origin: left center;
  animation: rule-grow 620ms var(--ease) 120ms both;
}

@keyframes section-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rule-grow {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.section {
  scroll-margin-top: 78px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.intro {
  padding-top: 4px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  font-size: 42px;
  line-height: 1.14;
  font-weight: 700;
  overflow-wrap: anywhere;
}

h1::after {
  content: "";
  display: block;
  width: 74px;
  height: 3px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

h2 {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
}

h3 {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 700;
}

p {
  margin: 9px 0 0;
  overflow-wrap: anywhere;
}

.lead {
  max-width: 920px;
  margin-top: 16px;
  font-size: 21px;
  line-height: 1.48;
}

.about-section {
  padding-top: 10px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 38px;
  align-items: stretch;
  margin-top: 24px;
}

.about-copy {
  min-width: 0;
  display: grid;
  gap: 24px;
  align-self: start;
}

.about-block {
  position: relative;
  min-width: 0;
  padding-left: 18px;
}

.about-block::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 2px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), rgba(154, 103, 36, 0.55));
}

.about-block p {
  max-width: 780px;
}

.interest-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
  font-family: Arial, Helvetica, sans-serif;
}

.interest-list li {
  border: 1px solid rgba(43, 116, 111, 0.25);
  border-radius: 999px;
  background: rgba(43, 116, 111, 0.07);
  padding: 5px 10px;
  color: #265f5a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  transition:
    background-color 180ms var(--ease),
    border-color 180ms var(--ease),
    color 180ms var(--ease),
    transform 180ms var(--ease);
}

.interest-list li:hover {
  border-color: rgba(43, 116, 111, 0.42);
  background: rgba(43, 116, 111, 0.12);
  color: #174844;
  transform: translateY(-1px);
}

.about-visuals {
  min-width: 0;
  display: grid;
  gap: 22px;
  padding-top: 14px;
}

.about-visuals::before {
  display: none;
}

.about-figure {
  overflow: hidden;
  border-radius: 8px;
  margin: 0;
}

.about-figure img {
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(43, 116, 111, 0.22);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(31, 72, 68, 0.1);
  transition:
    border-color 240ms var(--ease),
    box-shadow 240ms var(--ease),
    transform 420ms var(--ease);
}

.about-figure:hover img {
  border-color: rgba(43, 116, 111, 0.36);
  box-shadow: 0 18px 38px rgba(31, 72, 68, 0.15);
  transform: scale(1.028);
}

.about-figure-main img {
  aspect-ratio: 16 / 10;
}

.about-figure-secondary {
  width: 100%;
  margin: 0;
}

.about-figure-secondary img {
  aspect-ratio: 16 / 10;
}

.project-list {
  display: grid;
  gap: 34px;
  margin-top: 15px;
}

.projects-intro-section {
  border-bottom: 0;
  padding-bottom: 12px;
}

.projects-list-section {
  padding-top: 0;
}

.projects-list-section .project-list {
  margin-top: 0;
}

.project-item {
  position: relative;
  scroll-margin-top: 84px;
  padding: 10px 0 8px 20px;
  background: linear-gradient(90deg, rgba(43, 116, 111, 0.04), rgba(255, 255, 255, 0) 58%);
  transition:
    background-color 220ms var(--ease),
    transform 220ms var(--ease);
}

.project-item:hover {
  transform: translateY(-4px);
}

.project-item::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), rgba(154, 103, 36, 0.58));
}

.project-remedy::before {
  background: linear-gradient(180deg, var(--accent-2), rgba(43, 116, 111, 0.58));
}

.project-remedy {
  background: linear-gradient(90deg, rgba(154, 103, 36, 0.05), rgba(255, 255, 255, 0) 58%);
}

.project-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
}

.project-kicker::before {
  content: "";
  width: 18px;
  height: 3px;
  background: currentColor;
}

.project-kicker.cleets {
  color: #16736f;
}

.project-kicker.remedy {
  color: #995b1d;
}

.project-item h3 {
  margin-top: 3px;
}

.project-meta {
  margin-top: 7px;
  color: #2f3b38;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.project-meta strong {
  color: var(--accent);
}

.project-remedy .project-meta strong {
  color: var(--accent-2);
}

.project-with-media {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 24px;
  align-items: start;
  margin-top: 12px;
}

.project-copy {
  min-width: 0;
}

.project-media-grid {
  min-width: 0;
  width: 100%;
  display: grid;
  gap: 13px;
  margin: 0;
  justify-items: start;
}

.project-media {
  min-width: 0;
  width: 100%;
  margin: 0;
}

.project-media img {
  width: auto;
  max-width: 100%;
  max-height: 382px;
  height: auto;
  transition:
    filter 240ms var(--ease),
    transform 420ms var(--ease);
}

.project-media:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.022);
}

.project-item ul,
.publication-list,
.section > ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.project-item li,
.publication-list li,
.section > ul li {
  margin-bottom: 5px;
}

.project-item h3,
.project-item p,
.project-item li {
  overflow-wrap: anywhere;
}

.cv-list {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.cv-item {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(43, 116, 111, 0.14);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(43, 116, 111, 0.035));
  box-shadow: 0 8px 22px rgba(31, 72, 68, 0.055);
  transition:
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    transform 220ms var(--ease);
}

.cv-item:hover {
  border-color: rgba(43, 116, 111, 0.28);
  box-shadow: 0 16px 34px rgba(31, 72, 68, 0.11);
  transform: translateY(-4px);
}

.cv-item time {
  display: inline-block;
  align-self: start;
  border: 1px solid rgba(43, 116, 111, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  padding: 4px 9px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.cv-item p {
  color: var(--muted);
}

.project-tag {
  display: inline-block;
  margin-left: 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 1px 7px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  vertical-align: 1px;
  transition:
    background-color 180ms var(--ease),
    transform 180ms var(--ease);
}

.project-tag:hover {
  background: rgba(43, 116, 111, 0.08);
  transform: translateY(-1px);
}

.project-tag.cleets {
  color: #16736f;
}

.project-tag.remedy {
  color: #995b1d;
}

.subheading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #2f3b38;
}

.subheading::before {
  content: "";
  width: 18px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.publication-list em {
  font-style: italic;
}

#background .section:not(:first-child),
#publications .section:not(:first-child),
#presentations .section:not(:first-child),
#service .section:not(:first-child),
#open-science .section:not(:first-child) {
  position: relative;
  padding-left: 20px;
  background: linear-gradient(90deg, rgba(43, 116, 111, 0.032), rgba(255, 255, 255, 0) 62%);
}

#background .section:not(:first-child)::before,
#publications .section:not(:first-child)::before,
#presentations .section:not(:first-child)::before,
#service .section:not(:first-child)::before,
#open-science .section:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), rgba(154, 103, 36, 0.56));
}

.publication-list {
  display: grid;
  gap: 12px;
  list-style: none;
  counter-reset: publication;
  padding-left: 0;
}

.publication-list li {
  position: relative;
  counter-increment: publication;
  margin: 0;
  border: 1px solid rgba(43, 116, 111, 0.14);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(31, 95, 139, 0.035));
  box-shadow: 0 8px 22px rgba(31, 72, 68, 0.05);
  padding: 14px 16px 14px 58px;
  overflow-wrap: anywhere;
  transition:
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    transform 220ms var(--ease);
}

.publication-list li:hover {
  border-color: rgba(43, 116, 111, 0.28);
  box-shadow: 0 16px 34px rgba(31, 72, 68, 0.105);
  transform: translateY(-4px);
}

.publication-list li::before {
  content: counter(publication);
  position: absolute;
  top: 15px;
  left: 16px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(43, 116, 111, 0.22);
  border-radius: 50%;
  background: rgba(43, 116, 111, 0.08);
  color: var(--accent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

#presentations .section > ul,
#service .section > ul,
#open-science .section > ul {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding-left: 0;
  list-style: none;
}

#presentations .section > ul li,
#service .section > ul li,
#open-science .section > ul li {
  position: relative;
  margin: 0;
  border: 1px solid rgba(43, 116, 111, 0.14);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(154, 103, 36, 0.035));
  box-shadow: 0 8px 22px rgba(31, 72, 68, 0.05);
  padding: 12px 14px 12px 40px;
  overflow-wrap: anywhere;
  transition:
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    transform 220ms var(--ease);
}

#presentations .section > ul li:hover,
#service .section > ul li:hover,
#open-science .section > ul li:hover {
  border-color: rgba(43, 116, 111, 0.28);
  box-shadow: 0 16px 34px rgba(31, 72, 68, 0.105);
  transform: translateY(-4px);
}

#presentations .section > ul li::before,
#service .section > ul li::before,
#open-science .section > ul li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 17px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: #ffffff;
}

.footer {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 920px) {
  .layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .profile {
    position: static;
    padding: 28px 0 8px;
  }

  .profile-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 16px 22px;
    align-items: start;
  }

  .profile-photo {
    width: 150px;
    height: 150px;
    grid-row: span 4;
    margin: 0;
  }

  .profile-card h2 {
    margin-top: 0;
  }

  .profile-info {
    grid-column: 2;
    margin-top: 0;
  }

  .content {
    padding-top: 22px;
  }

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

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

  .project-media-grid {
    max-width: 560px;
    justify-items: start;
  }

  .project-media img {
    width: 100%;
    max-width: 560px;
    max-height: none;
  }

  .about-visuals {
    max-width: 560px;
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 17px;
  }

  .top-nav,
  .layout {
    width: min(var(--max), calc(100% - 64px));
  }

  .top-nav {
    min-height: 56px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 56px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    background: #ffffff;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .lead {
    max-width: 100%;
    font-size: 18px;
  }

  .page-panel > .section:first-child {
    padding-right: 16px;
  }

  #background .section:not(:first-child),
  #publications .section:not(:first-child),
  #presentations .section:not(:first-child),
  #service .section:not(:first-child),
  #open-science .section:not(:first-child) {
    padding-left: 16px;
    padding-right: 16px;
  }

  .publication-list li {
    padding: 13px 13px 13px 48px;
  }

  .publication-list li::before {
    left: 12px;
  }

  #presentations .section > ul li,
  #service .section > ul li,
  #open-science .section > ul li {
    padding-right: 12px;
    padding-left: 36px;
  }

  #presentations .section > ul li::before,
  #service .section > ul li::before,
  #open-science .section > ul li::before {
    left: 14px;
  }

  .project-item {
    padding-right: 16px;
  }

  .project-media-grid {
    max-width: 100%;
    justify-items: center;
  }

  .project-media img {
    width: 92%;
    max-width: 420px;
  }

  .cv-item {
    grid-template-columns: 1fr;
  }

  .cv-item {
    gap: 3px;
  }

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

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

  .profile-photo {
    grid-row: auto;
    width: min(220px, 100%);
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
  }

  .profile-info {
    grid-column: 1;
  }

  .about-visuals {
    padding-top: 10px;
  }

  .about-figure-secondary {
    width: 100%;
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .page-panel.is-active,
  .profile-card,
  .profile-photo,
  .nav-links a,
  .interest-list li,
  .about-figure img,
  .project-item,
  .project-media img,
  .cv-item,
  .project-tag,
  .publication-list li,
  #presentations .section > ul li,
  #service .section > ul li,
  #open-science .section > ul li {
    transform: none !important;
  }
}
