:root {
  --bg: #fbfcfb;
  --surface: #ffffff;
  --ink: #17201b;
  --muted: #536158;
  --line: #dce4df;
  --accent: #0b6b62;
  --accent-dark: #084b45;
  --secondary: #b56b36;
  --soft: #edf5f2;
  --shadow: 0 22px 60px rgba(19, 32, 29, 0.12);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, rgba(11, 107, 98, 0.08), transparent 32%),
    linear-gradient(220deg, rgba(181, 107, 54, 0.08), transparent 28%);
}

a {
  color: var(--accent-dark);
  text-decoration-color: rgba(11, 107, 98, 0.35);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--secondary);
  text-decoration-color: currentColor;
}

a:focus-visible {
  outline: 3px solid rgba(11, 107, 98, 0.32);
  outline-offset: 4px;
  border-radius: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 14px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(220, 228, 223, 0.8);
  background: rgba(251, 252, 251, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  min-width: 0;
  font-size: 0.94rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.section-shell {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 420px);
  align-items: center;
  gap: clamp(34px, 7vw, 90px);
  min-height: calc(100vh - 70px);
  padding-top: 48px;
}

.hero-copy {
  min-width: 0;
  max-width: 710px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 8vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h1 span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 500;
}

h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.1vw, 1.28rem);
  overflow-wrap: anywhere;
}

.hero-about p {
  margin-bottom: 0;
}

.link-row,
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
}

.link-row a,
.inline-links a,
.publication-item > div:last-child > a,
.project-card > a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: none;
}

.link-row a:hover,
.inline-links a:hover,
.publication-item > div:last-child > a:hover,
.project-card > a:hover {
  border-color: rgba(181, 107, 54, 0.45);
  color: var(--secondary);
}

.portrait {
  position: relative;
  margin: 0;
}

.portrait::before {
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 1px solid rgba(11, 107, 98, 0.2);
  border-radius: 8px;
  content: "";
}

.portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: 78% center;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 82px);
  border-top: 1px solid var(--line);
}

.prose p {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.timeline {
  display: grid;
  gap: 22px;
}

.timeline.compact {
  gap: 0;
  border-top: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item time {
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 800;
}

.timeline-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.publication-list {
  border-top: 1px solid var(--line);
}

.publication-item {
  display: grid;
  grid-template-columns: 165px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 46px);
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.pub-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

.pub-meta span {
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 800;
}

.pub-meta strong {
  color: var(--accent-dark);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.publication-item p,
.contact-section p {
  color: var(--muted);
}

.author-list {
  margin-bottom: 16px;
}

.publication-item .role-line {
  margin-bottom: 4px;
  color: var(--accent-dark);
  font-weight: 800;
}

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

.split-grid > div,
.project-card,
.award-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  padding: 28px;
}

.split-grid .timeline-item {
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
}

.project-card,
.award-list article {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: flex-start;
}

.project-card p,
.award-list p {
  flex: 1;
}

.contact-section {
  max-width: 850px;
  padding-bottom: 72px;
  text-align: center;
}

.contact-section p {
  margin-right: auto;
  margin-left: auto;
  max-width: 640px;
  font-size: 1.08rem;
}

.center {
  justify-content: center;
}

.site-footer {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 30px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
    width: 100%;
  }

  .hero,
  .two-column,
  .split-grid,
  .project-grid,
  .award-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .portrait {
    max-width: 560px;
  }
}

@media (max-width: 620px) {
  .section-shell {
    width: calc(100% - 28px);
    max-width: 1120px;
    padding: 62px 0;
  }

  .site-header {
    min-height: auto;
    padding: 14px;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    font-size: 0.9rem;
  }

  .site-nav a {
    min-width: 0;
    white-space: normal;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

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

  .link-row a,
  .inline-links a,
  .publication-item > div:last-child > a,
  .project-card > a {
    justify-content: center;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .contact-section .link-row {
    grid-template-columns: 1fr;
  }

  .link-row a,
  .inline-links a,
  .publication-item > div:last-child > a,
  .project-card > a {
    max-width: 100%;
  }

  .timeline-item,
  .publication-item,
  .split-grid .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .split-grid > div,
  .project-card,
  .award-list article {
    padding: 22px;
  }

  .portrait::before {
    inset: 12px 0 -10px 12px;
  }

  .portrait img {
    aspect-ratio: 1 / 1.1;
    object-position: 80% center;
  }
}
