:root {
  --ink: #102c2e;
  --ink-deep: #0a2123;
  --paper: #f4efe6;
  --paper-light: #fbf8f2;
  --teal: #4f7771;
  --coral: #d66a4a;
  --line: rgba(16, 44, 46, 0.2);
  --muted: #6a7570;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino,
    "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  background-image:
    radial-gradient(circle at 20% 30%, currentColor 0 0.45px, transparent 0.65px),
    radial-gradient(circle at 75% 65%, currentColor 0 0.35px, transparent 0.6px);
  background-size:
    7px 7px,
    5px 5px;
}

::selection {
  background: var(--coral);
  color: white;
}

main > section {
  --section-parallax: 0px;
}

main > section > * {
  translate: 0 var(--section-parallax);
  will-change: translate;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: min(100% - 72px, 1440px);
  margin: 0 auto;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.monogram {
  width: max-content;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.monogram span {
  color: var(--coral);
}

.site-header nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.site-header nav a,
.header-contact,
.contact-links a,
footer a {
  transition: color 180ms ease;
}

.site-header nav a:hover,
.header-contact:hover,
.contact-links a:hover,
footer a:hover {
  color: var(--coral);
}

.header-contact {
  justify-self: end;
  font-size: 13px;
  font-weight: 700;
}

.header-contact span,
.contact-links span {
  margin-left: 5px;
  color: var(--coral);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: clamp(60px, 8vw, 136px);
  align-items: center;
  width: min(100% - 72px, 1440px);
  min-height: 750px;
  margin: 0 auto;
  padding: 72px 0 82px;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: var(--coral);
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(56px, 6.6vw, 105px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero h1 em,
.section-heading h2 em,
.about-copy h2 em {
  color: var(--teal);
  font-weight: 400;
}

.hero-intro {
  max-width: 690px;
  margin: 36px 0 0;
  color: #465653;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.055em;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button-dark {
  background: var(--ink);
  color: var(--paper-light);
}

.button-dark:hover {
  background: var(--coral);
}

.text-link {
  padding: 8px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.text-link span {
  margin-left: 8px;
  color: var(--coral);
}

.hero-details {
  display: flex;
  gap: 56px;
  margin: 48px 0 0;
}

.hero-details div {
  padding-left: 14px;
  border-left: 2px solid var(--coral);
}

.hero-details dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-details dd {
  margin: 3px 0 0;
  font-family: var(--serif);
  font-size: 17px;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  transform: translateY(-28px);
}

.portrait-frame {
  position: absolute;
  inset: 0 24px 40px 0;
  overflow: hidden;
  border-radius: 50% 50% 5px 5px;
  background: #e6dfd2;
  box-shadow: 28px 28px 0 rgba(79, 119, 113, 0.2);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.particle-orbit {
  position: absolute;
  border: 1px solid rgba(214, 106, 74, 0.45);
  border-radius: 50%;
}

.particle-orbit::after {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.orbit-one {
  top: 18%;
  right: -32px;
  width: 132px;
  height: 132px;
}

.orbit-one::after {
  top: 15px;
  right: 10px;
}

.orbit-two {
  bottom: 5px;
  left: -52px;
  width: 96px;
  height: 96px;
}

.orbit-two::after {
  bottom: 8px;
  left: 15px;
}

.hero-note {
  position: absolute;
  right: -12px;
  bottom: 0;
  display: flex;
  gap: 14px;
  align-items: center;
  width: 224px;
  padding: 18px 20px;
  background: var(--paper-light);
  box-shadow: 0 16px 44px rgba(16, 44, 46, 0.12);
}

.hero-note strong {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}

.hero-note span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.lab-banner {
  position: relative;
  width: min(100% - 40px, 1600px);
  height: min(58vw, 760px);
  min-height: 460px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--ink);
}

.lab-banner::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 33, 35, 0.48),
    transparent 58%
  );
  content: "";
}

.lab-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lab-banner p,
.image-break p {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  left: 38px;
  display: flex;
  flex-direction: column;
  margin: 0;
  color: white;
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 25px);
}

.lab-banner p span,
.image-break p span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section {
  width: min(100% - 72px, 1320px);
  margin: 0 auto;
  padding: 150px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 72px;
}

.section-heading .section-kicker,
.row-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -34px;
}

.section-heading h2,
.about-copy h2 {
  max-width: 900px;
  font-size: clamp(43px, 5vw, 72px);
  line-height: 0.98;
}

.section-heading > p:not(.section-kicker),
.experience-intro {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.featured-research {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  background: var(--ink);
  color: var(--paper-light);
}

.featured-copy {
  padding: clamp(40px, 6vw, 76px);
}

.project-number {
  color: #88a9a3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.featured-copy h3 {
  max-width: 530px;
  margin: 30px 0 22px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.featured-copy > p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.7);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.tag-list li {
  padding: 6px 10px;
  border: 1px solid rgba(128, 158, 153, 0.45);
  border-radius: 999px;
  color: inherit;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.particle-figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: clamp(36px, 5vw, 68px);
  background: #e5ded2;
  color: var(--ink);
}

.particle-figure img {
  width: 100%;
  mix-blend-mode: multiply;
}

.particle-figure figcaption {
  max-width: 460px;
  margin-top: 24px;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}

.image-break {
  position: relative;
  height: min(68vw, 850px);
  min-height: 520px;
  overflow: hidden;
  background: var(--ink);
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.publications-section {
  width: 100%;
  max-width: none;
  padding-right: max(36px, calc((100% - 1320px) / 2));
  padding-left: max(36px, calc((100% - 1320px) / 2));
  background: var(--ink);
  color: var(--paper-light);
}

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

.row-heading > div > .section-kicker {
  margin-bottom: 28px;
}

.row-heading .section-kicker {
  grid-column: auto;
}

.section-kicker.light {
  color: #8db1aa;
}

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

.button-light:hover {
  border-color: var(--coral);
  background: var(--coral);
}

.publication {
  display: grid;
  grid-template-columns: 64px 1fr 50px;
  gap: 20px;
  align-items: start;
  padding: 34px 0 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.publication > span:first-child,
.publication > div > p:first-child {
  color: #88a9a3;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.publication > div > p:first-child {
  font-size: clamp(10px, 0.85vw, 12px);
}

.publication h3 {
  max-width: 950px;
  margin: 9px 0 10px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.publication .authors {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: clamp(13px, 1vw, 15px);
}

.publication > a,
.publication-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--coral);
  font-size: 18px;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.publication > a:hover {
  background: var(--coral);
  color: white;
}

.publication-mark {
  border-color: transparent;
}

.awards-section {
  padding-bottom: 170px;
}

.awards-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 24px;
}

.award-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.award-card::after {
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(transparent, rgba(10, 33, 35, 0.94));
  content: "";
}

.award-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.award-card:hover img {
  transform: scale(1.025);
}

.award-asme img {
  object-position: center 32%;
}

.award-asme::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(16, 44, 46, 0.18);
  content: "";
}

.award-soae img {
  object-position: center 32%;
}

.award-card div {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 34px;
  left: 34px;
}

.award-card span {
  color: #a8c2bd;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.award-card h3 {
  margin: 10px 0 4px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.award-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.experience-section {
  border-top: 1px solid var(--line);
}

.experience-intro {
  align-self: end;
}

.timeline {
  border-top: 1px solid var(--ink);
}

.timeline article {
  display: grid;
  grid-template-columns: 130px minmax(250px, 0.7fr) minmax(320px, 1.1fr);
  gap: 40px;
  padding: 38px 0 44px;
  border-bottom: 1px solid var(--line);
}

.timeline-period,
.timeline-title p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline-title h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.15;
}

.timeline-title p {
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.3;
}

.timeline-copy > p {
  margin: 0;
  color: #465653;
}

.timeline-copy .tag-list {
  color: var(--teal);
}

.about-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(70px, 9vw, 140px);
  align-items: center;
  width: 100%;
  max-width: none;
  padding-right: max(36px, calc((100% - 1320px) / 2));
  padding-left: max(36px, calc((100% - 1320px) / 2));
  background: #e7dfd3;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.about-copy > p:not(.section-kicker) {
  max-width: 670px;
  color: #465653;
  font-size: 16px;
}

.about-copy h2 {
  margin-bottom: 32px;
}

.education {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 42px;
}

.education article {
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}

.education span {
  color: var(--coral);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.education h3 {
  margin: 18px 0 5px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.2;
}

.education p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-section {
  padding: 140px max(36px, calc((100% - 1320px) / 2));
  background: var(--coral);
  color: white;
}

.contact-section .section-kicker {
  color: rgba(255, 255, 255, 0.7);
}

.contact-section h2 {
  max-width: 850px;
  font-size: clamp(50px, 7vw, 96px);
}

.contact-section > p:not(.section-kicker) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
}

.contact-email {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin-top: 70px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 58px);
  letter-spacing: -0.035em;
}

.contact-email span {
  font-family: var(--sans);
}

.contact-links {
  display: flex;
  gap: 34px;
  margin-top: 28px;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.contact-links a:hover {
  color: var(--ink);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 30px max(36px, calc((100% - 1320px) / 2));
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-mark {
  color: white;
  font-size: 23px;
  text-transform: none;
}

footer p {
  margin: 0;
}

footer > a:last-child {
  justify-self: end;
}

footer > a:last-child span {
  margin-left: 6px;
  color: var(--coral);
}

.section-dock {
  position: fixed;
  right: 50%;
  top: 18px;
  bottom: auto;
  z-index: 80;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(calc(100% - 420px), 1020px);
  min-width: 0;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(218, 239, 235, 0.3);
  border-radius: 24px;
  background:
    linear-gradient(
      135deg,
      rgba(245, 250, 248, 0.2),
      rgba(17, 52, 54, 0.68) 52%,
      rgba(213, 106, 74, 0.15)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    inset 0 -1px 0 rgba(4, 25, 27, 0.28),
    0 18px 48px rgba(3, 24, 26, 0.25);
  transform: translateX(50%);
  -webkit-backdrop-filter: blur(24px) saturate(165%);
  backdrop-filter: blur(24px) saturate(165%);
}

.section-dock::before {
  position: absolute;
  inset: -120% -15%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 24% 44%,
      rgba(83, 151, 140, 0.38),
      transparent 31%
    ),
    radial-gradient(
      circle at 74% 58%,
      rgba(224, 119, 84, 0.3),
      transparent 28%
    );
  content: "";
  animation: section-dock-glow 12s ease-in-out infinite alternate;
}

.section-dock::after {
  position: absolute;
  inset: 0 12% auto;
  z-index: 3;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.72),
    transparent
  );
  content: "";
}

.section-dock-particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.52;
  background-image:
    radial-gradient(circle at 12% 64%, rgba(232, 133, 98, 0.88) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 31% 28%, rgba(159, 211, 201, 0.9) 0 1px, transparent 1.7px),
    radial-gradient(circle at 54% 70%, rgba(232, 133, 98, 0.75) 0 0.9px, transparent 1.6px),
    radial-gradient(circle at 78% 32%, rgba(159, 211, 201, 0.86) 0 1.1px, transparent 1.8px),
    radial-gradient(circle at 92% 72%, rgba(232, 133, 98, 0.82) 0 1px, transparent 1.7px);
  animation: section-dock-particles 8s ease-in-out infinite alternate;
}

.section-dock a {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 11px 8px 13px;
  border-radius: 16px;
  color: rgba(244, 250, 248, 0.88);
  font-size: clamp(11px, 0.92vw, 13px);
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1;
  white-space: nowrap;
  transition:
    color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease;
}

.section-dock a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.section-dock a.is-active {
  color: #fffaf4;
  background: rgba(8, 40, 42, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 5px 14px rgba(3, 24, 26, 0.2);
}

.section-dock a::after {
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
  content: "";
  opacity: 0;
  transform: translateX(-50%) scale(0.4);
  transition:
    opacity 200ms ease,
    transform 200ms ease;
}

.section-dock a.is-active::after {
  background: #f08a67;
  box-shadow: 0 0 8px rgba(240, 138, 103, 0.9);
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.section-dock a:focus-visible {
  outline: 2px solid #f08a67;
  outline-offset: -2px;
}

.floating-resume {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 75;
  display: flex;
  gap: 0;
  align-items: center;
  min-height: 58px;
  padding: 8px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 21px;
  background: rgba(244, 247, 243, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 34px rgba(9, 37, 39, 0.2);
  color: var(--ink);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  transition:
    background 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.floating-resume:hover {
  background: rgba(250, 249, 244, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 16px 40px rgba(9, 37, 39, 0.24);
  transform: translateY(-2px);
}

.floating-resume:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

.floating-resume-cue {
  position: absolute;
  right: 15px;
  bottom: 28px;
  z-index: 1;
  width: 94px;
  height: 94px;
  color: rgba(240, 138, 103, 0.82);
  pointer-events: none;
}

.floating-resume-label {
  position: relative;
  z-index: 2;
  max-width: 0;
  overflow: hidden;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  opacity: 0;
  white-space: nowrap;
  transition:
    max-width 220ms ease,
    margin 220ms ease,
    opacity 160ms ease;
}

.floating-resume:hover .floating-resume-label,
.floating-resume:focus-visible .floating-resume-label {
  max-width: 64px;
  margin: 0 9px 0 5px;
  opacity: 1;
}

.floating-resume-icon {
  position: relative;
  z-index: 2;
  display: block;
  flex: 0 0 auto;
  width: 27px;
  height: 34px;
  border: 2px solid var(--coral);
  border-radius: 5px;
  color: var(--coral);
  animation: floating-resume-attention 10s ease-in-out infinite;
  will-change: filter, transform;
}

.floating-resume:hover .floating-resume-icon,
.floating-resume:focus-visible .floating-resume-icon {
  animation: none;
  filter: brightness(1.12);
  transform: translateY(-2px);
}

.floating-resume-icon::after {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 9px;
  height: 9px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  border-radius: 0 4px 0 3px;
  background: rgba(250, 249, 244, 0.94);
  content: "";
}

.floating-resume-icon > span {
  position: absolute;
  top: 11px;
  left: 6px;
  width: 11px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow:
    0 5px 0 currentColor,
    0 10px 0 currentColor;
}

#research,
#publications,
#recognition,
#experience,
#about {
  scroll-margin-top: 110px;
}

@keyframes section-dock-glow {
  0% {
    transform: translate3d(-3%, -2%, 0) rotate(-2deg);
  }

  100% {
    transform: translate3d(4%, 3%, 0) rotate(3deg);
  }
}

@keyframes section-dock-particles {
  0% {
    transform: translate3d(-14px, 3px, 0) scale(0.98);
  }

  100% {
    transform: translate3d(16px, -4px, 0) scale(1.02);
  }
}

@keyframes floating-resume-attention {
  0%,
  76%,
  100% {
    filter: brightness(1);
    transform: translateY(0);
  }

  84% {
    filter: brightness(1.12);
    transform: translateY(-2px);
  }
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .section-dock,
  .floating-resume {
    background: rgba(16, 44, 46, 0.96);
  }

  .floating-resume {
    color: white;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: min(100% - 40px, 1440px);
  }

  .site-header nav {
    display: none;
  }

  .section-dock {
    top: 78px;
    width: calc(100% - 40px);
    transition:
      top 240ms ease,
      box-shadow 200ms ease;
  }

  .section-dock.is-scrolled {
    top: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    width: min(100% - 40px, 760px);
    padding-top: 60px;
  }

  .hero-visual {
    width: min(100%, 540px);
    margin: 0 auto;
    transform: none;
  }

  .section {
    width: min(100% - 40px, 760px);
    padding: 110px 0;
  }

  .section-heading,
  .row-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-heading .section-kicker,
  .row-heading .section-kicker {
    grid-column: auto;
    margin-bottom: 0;
  }

  .featured-research {
    grid-template-columns: 1fr;
  }

  .publications-section,
  .about-section {
    width: 100%;
    max-width: none;
    padding-right: 20px;
    padding-left: 20px;
  }

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

  .timeline article {
    grid-template-columns: 110px 1fr;
  }

  .timeline-copy {
    grid-column: 2;
  }

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

  .about-photo {
    width: min(82%, 520px);
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 20px 0;
  }

  .hero {
    gap: 54px;
    min-height: 0;
    padding: 70px 0 72px;
  }

  .hero h1 {
    font-size: clamp(52px, 17vw, 76px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-details {
    gap: 28px;
  }

  .hero-details dd {
    font-size: 14px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .orbit-one {
    right: 0;
  }

  .orbit-two {
    left: 0;
  }

  .lab-banner {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 2200 / 1211;
  }

  .lab-banner img {
    height: 100%;
    object-position: center;
  }

  .lab-banner p,
  .image-break p {
    right: 20px;
    bottom: 18px;
    left: 20px;
    font-size: 16px;
  }

  .section-heading h2,
  .about-copy h2 {
    font-size: 44px;
  }

  .featured-copy,
  .particle-figure {
    padding: 34px 26px;
  }

  .image-break {
    height: 75vh;
  }

  .image-break img {
    object-position: 61% center;
  }

  .publication {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .publication > a,
  .publication-mark {
    display: none;
  }

  .award-card {
    min-height: 480px;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .timeline-copy {
    grid-column: auto;
    margin-top: 14px;
  }

  .about-photo {
    width: 100%;
  }

  .about-photo img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

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

  .contact-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .contact-email {
    overflow-wrap: anywhere;
  }

  .contact-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .section-dock {
    top: 70px;
    bottom: auto;
    width: calc(100% - 20px);
    padding: 6px 4px;
    border-radius: 19px;
  }

  .section-dock a {
    padding: 9px 1px 11px;
    border-radius: 14px;
    font-size: clamp(8.5px, 2.35vw, 10.5px);
    letter-spacing: 0.015em;
  }

  .section-dock a::after {
    bottom: 5px;
  }

  .section-dock.is-scrolled {
    top: 10px;
  }

  .floating-resume {
    right: 12px;
    bottom: 12px;
    min-height: 52px;
    padding: 7px;
    border-radius: 18px;
  }

  .floating-resume-label {
    display: none;
  }

  .floating-resume-icon {
    width: 24px;
    height: 31px;
  }

  .floating-resume-cue {
    right: 12px;
    bottom: 24px;
    width: 80px;
    height: 80px;
  }

  .floating-resume-icon > span {
    top: 10px;
    left: 5px;
    width: 10px;
  }

  #research,
  #publications,
  #recognition,
  #experience,
  #about {
    scroll-margin-top: 82px;
  }

  footer {
    grid-template-columns: auto 1fr;
    gap: 20px;
  }

  footer p {
    display: none;
  }
}

@media (max-width: 400px) {
  .section-dock a {
    font-size: 8px;
    letter-spacing: 0;
  }
}

@media (max-width: 340px) {
  .section-dock a {
    font-size: 7.6px;
  }
}

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

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

  .section-dock::before,
  .section-dock-particles,
  .floating-resume-icon {
    animation: none;
  }

  .floating-resume-cue {
    display: none;
  }

  main > section > * {
    translate: none;
    will-change: auto;
  }
}
