:root {
  --bg: #f8f6f1;
  --bg-accent: rgba(216, 224, 233, 0.55);
  --line: rgba(25, 31, 38, 0.14);
  --text: #171b20;
  --muted: #5d6570;
  --surface: rgba(255, 255, 255, 0.24);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, var(--bg-accent), transparent 34rem),
    linear-gradient(180deg, #fcfbf8 0%, var(--bg) 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.7;
  animation: fade-in 0.45s ease-out;
}

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

a {
  color: inherit;
  text-decoration-color: rgba(23, 27, 32, 0.3);
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: currentColor;
}

.page {
  width: min(100% - 2rem, 58rem);
  margin: 0 auto;
  padding: 4rem 0 3rem;
}

.section {
  padding: 2.25rem 0;
  border-top: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(15rem, 0.9fr);
  gap: 2.75rem;
  border-top: none;
  padding-top: 0;
  align-items: start;
}

.hero-simple {
  grid-template-columns: minmax(0, 1fr);
}

.hero-copy h1,
.section-heading h2,
.list-item h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.8rem, 7vw, 4.9rem);
  line-height: 0.94;
  max-width: 11ch;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lead,
.contact,
.item-copy,
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.lead + .lead,
.lead + .contact {
  margin-top: 1rem;
}

.lead-compact {
  max-width: 40rem;
}

.contact {
  margin-top: 0;
  color: var(--text);
  width: min(100%, 17rem);
  text-align: center;
  line-height: 1.35;
  font-size: 0.9rem;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.link-row a {
  position: relative;
}

.link-row a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  border-bottom: 1px solid var(--line);
}

.hero-image-wrap {
  padding: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 0.35rem;
}

.hero-image {
  width: min(100%, 17rem);
  height: auto;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: var(--surface);
}

.section-heading {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 1.1rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
}

.publication-list,
.news-list,
.awards-list {
  display: grid;
  gap: 0;
}

.list-item {
  padding: 1rem 0 1.1rem;
  border-top: 1px solid var(--line);
}

.publication-list .list-item:first-child,
.news-list .list-item:first-child,
.awards-list .list-item:first-child {
  border-top: none;
  padding-top: 0;
}

.item-meta {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.publication-list .item-copy {
  font-size: 0.9rem;
  line-height: 1.6;
}

.list-item h3 {
  margin: 0 0 0.45rem;
  font-size: 1.65rem;
  line-height: 1.05;
}

.site-footer {
  width: min(100% - 2rem, 58rem);
  margin: 0 auto;
  padding: 0 0 2.5rem;
}

.site-footer p {
  margin-top: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

@media (max-width: 760px) {
  .page {
    width: min(100% - 1.4rem, 58rem);
    padding-top: 2rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-image-wrap {
    order: -1;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .section {
    padding: 1.85rem 0;
  }

  .hero-image {
    width: min(100%, 14rem);
  }

  .contact {
    width: min(100%, 14rem);
  }

  .list-item h3 {
    font-size: 1.45rem;
  }
}
