:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --text: #111111;
  --muted: #666666;
  --accent: #f4d35e;
  --border: #d8d2c4;
  --hero-bg: #111111;
  --hero-text: #ffffff;
  --hero-muted: #cfcfcf;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.6;
}

.hero {
  background: #161616;
  color: var(--hero-text);
  padding: 54px 24px 50px;
  border-bottom: 1px solid #2a2a2a;
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 54px;
  align-items: center;
}

.hero h1 {
  display: inline;
  margin: 0;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  background: none;
}

.hero-kicker {
  margin: 16px 0 20px;
  color: var(--hero-muted);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.hero-email {
  margin: 0 0 16px;
  color: var(--hero-text);
  font-size: 15px;
}

.top-links,
.hero-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
  font-size: 14px;
}

.top-links {
  margin-bottom: 20px;
}

.top-links a,
.hero-nav a {
  color: var(--hero-text);
  text-decoration-color: var(--accent);
}

.hero-nav a {
  background: transparent;
  padding: 0;
}

.hero-photo-wrap {
  position: relative;
  margin: 0;
  text-align: center;
}

.photo-accent {
  position: absolute;
  width: 190px;
  height: 238px;
  right: 2px;
  top: 12px;
  background: var(--accent);
  transform: none;
  opacity: 0.16;
}

.hero-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 190px;
  height: 238px;
  margin: 0 auto;
  object-fit: cover;
  object-position: center top;
  border: 5px solid #ffffff;
  box-shadow: 8px 8px 0 rgba(244, 211, 94, 0.16);
}

.hero-photo-wrap figcaption {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: var(--hero-muted);
  font-size: 13px;
  font-style: italic;
}

.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

h1 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h2 {
  display: inline-block;
  margin: 0 0 16px;
  font-size: 18px;
  letter-spacing: -0.01em;
  background: linear-gradient(transparent 62%, rgba(244, 211, 94, 0.45) 0);
}

h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

p {
  margin: 0 0 16px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
}

.mark {
  background: var(--accent);
  padding: 0 4px;
}

a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

section {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.intro {
  font-size: 18px;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.date {
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.project-list {
  display: grid;
  gap: 22px;
}

.project-item p {
  margin-bottom: 0;
}

.publication-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.publication-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.pub-year {
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.small-note {
  color: var(--muted);
  font-size: 14px;
}

.interest-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.interest-list li {
  position: relative;
  padding-left: 18px;
}

.interest-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
}

.site-footer {
  margin-top: 32px;
  background: #111111;
  color: #ffffff;
}

.footer-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 24px;
  font-size: 14px;
}

.footer-inner p {
  margin: 0 0 6px;
}

.footer-inner p:last-child {
  margin-bottom: 0;
  color: #cfcfcf;
}

@media (max-width: 820px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-photo-wrap {
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 38px 20px 42px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-kicker,
  .intro {
    font-size: 16px;
  }

  .hero-photo {
    width: 180px;
    height: 225px;
  }

  .photo-accent {
    width: 180px;
    height: 225px;
    right: 10px;
    top: 10px;
  }

  .news-list li,
  .publication-list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
