/* =============================================
   VARIABLES
   ============================================= */
/* Deep forest green */
/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #1a1a1a;
  background: #fafaf8;
}

a {
  color: #1a6b4a;
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: #2e8b6a;
  text-decoration: underline;
}

h1, h2, h3, h4 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
  color: #1a1a1a;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.4rem;
}

h3 {
  font-size: 1.15rem;
}

h4 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

ul, ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.25rem;
}

hr {
  border: none;
  border-top: 1px solid #e8e5e0;
  margin: 2rem 0;
}

/* =============================================
   LAYOUT WRAPPER
   ============================================= */
.wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 30px;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e8e5e0;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.site-title {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}
.site-title:hover {
  color: #1a6b4a;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 0;
}
.site-nav .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #555;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  transition: color 0.15s ease, background 0.15s ease;
  letter-spacing: 0.01em;
}
.site-nav .nav-link:hover {
  color: #1a1a1a;
  background: #f0ede8;
  text-decoration: none;
}
.site-nav .nav-link.active {
  color: #1a6b4a;
  background: rgba(26, 107, 74, 0.07);
}

/* =============================================
   PAGE CONTENT
   ============================================= */
.page-content {
  padding: 3rem 0 4rem;
  min-height: calc(100vh - 56px - 60px);
}

/* =============================================
   HOME PAGE
   ============================================= */
.home-intro {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3rem;
}
@media (max-width: 600px) {
  .home-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.home-photo {
  width: 280px;
  height: 350px;
  border-radius: 6px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid #e8e5e0;
  background: #f0ede8;
  display: block;
}
@media (max-width: 600px) {
  .home-photo {
    margin: 0 auto;
  }
}

.home-photo-placeholder {
  width: 280px;
  height: 350px;
  border-radius: 6px;
  border: 2px dashed #e8e5e0;
  background: #f0ede8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.4;
  padding: 1rem;
}
@media (max-width: 600px) {
  .home-photo-placeholder {
    margin: 0 auto;
  }
}

.home-bio h1 {
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
}
.home-bio .home-position {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.home-bio p {
  font-size: 0.975rem;
  color: #1a1a1a;
  margin-bottom: 0.85rem;
}

.home-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.home-links a {
  font-size: 0.825rem;
  font-weight: 500;
  color: #555;
  border: 1px solid #e8e5e0;
  border-radius: 4px;
  padding: 0.3rem 0.7rem;
  transition: all 0.15s ease;
}
.home-links a:hover {
  color: #1a6b4a;
  border-color: #1a6b4a;
  background: rgba(26, 107, 74, 0.05);
  text-decoration: none;
}

/* =============================================
   SECTION HEADERS (shared)
   ============================================= */
.section {
  margin-bottom: 2.5rem;
}

.section-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e8e5e0;
}

/* =============================================
   NEWS / RECENT UPDATES
   ============================================= */
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-list li {
  display: flex;
  gap: 1.25rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f0ede8;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.news-list li:last-child {
  border-bottom: none;
}

.news-date {
  flex-shrink: 0;
  width: 90px;
  color: #888;
  font-size: 0.8rem;
  padding-top: 0.05rem;
}

/* =============================================
   PAGE LAYOUT (research, publications, cv)
   ============================================= */
.page-header {
  margin-bottom: 2rem;
}
.page-header .page-title {
  font-size: 1.6rem;
}

.page-body h2 {
  font-size: 1.05rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #e8e5e0;
}
.page-body h2:first-child {
  margin-top: 0;
}
.page-body h3 {
  font-size: 1rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 0;
  margin-bottom: 0.2rem;
}
.page-body p {
  font-size: 0.95rem;
}

/* =============================================
   RESEARCH PAGE
   ============================================= */
.research-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f0ede8;
}
.research-item:last-child {
  border-bottom: none;
}
.research-item h3 {
  font-size: 1.05rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #1a1a1a;
}
.research-item p {
  font-size: 0.93rem;
  color: #555;
  margin-bottom: 0;
  line-height: 1.6;
}

.research-meta {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0.5rem;
}

/* =============================================
   PUBLICATIONS PAGE
   ============================================= */
.pub-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pub-item {
  padding: 1rem 0;
  border-bottom: 1px solid #f0ede8;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}
.pub-item:last-child {
  border-bottom: none;
}
.pub-item .pub-title {
  font-weight: 600;
  color: #1a1a1a;
  display: block;
  margin-bottom: 0.2rem;
}
.pub-item .pub-authors {
  color: #555;
  margin-bottom: 0.15rem;
}
.pub-item .pub-venue {
  color: #888;
  font-style: italic;
  font-size: 0.87rem;
}
.pub-item .pub-status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.1rem 0.5rem;
  border-radius: 3px;
  background: rgba(26, 107, 74, 0.1);
  color: #1a6b4a;
  margin-left: 0.5rem;
  font-style: normal;
}

/* =============================================
   CV PAGE
   ============================================= */
.cv-section {
  margin-bottom: 2.5rem;
}

.cv-section-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e8e5e0;
}

.cv-entry {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1.25rem;
  align-items: start;
}
@media (max-width: 580px) {
  .cv-entry {
    grid-template-columns: 1fr;
  }
}

.cv-entry-main .cv-entry-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a1a1a;
  display: block;
}
.cv-entry-main .cv-entry-subtitle {
  font-size: 0.88rem;
  color: #555;
  display: block;
  margin-bottom: 0.25rem;
}
.cv-entry-main ul {
  margin: 0.4rem 0 0;
  padding-left: 1.2rem;
}
.cv-entry-main ul li {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.55;
  margin-bottom: 0.2rem;
}
.cv-entry-main p {
  font-size: 0.88rem;
  color: #555;
  margin: 0.25rem 0 0;
  line-height: 1.55;
}

.cv-entry-date {
  font-size: 0.82rem;
  color: #888;
  white-space: nowrap;
  text-align: right;
  padding-top: 0.1rem;
}
@media (max-width: 580px) {
  .cv-entry-date {
    text-align: left;
  }
}

.cv-download {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a6b4a;
  border: 1px solid #1a6b4a;
  border-radius: 4px;
  padding: 0.4rem 0.9rem;
  margin-bottom: 2rem;
  transition: all 0.15s ease;
}
.cv-download:hover {
  background: #1a6b4a;
  color: white;
  text-decoration: none;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  border-top: 1px solid #e8e5e0;
  padding: 1.25rem 0;
  background: #ffffff;
}
.site-footer p {
  font-size: 0.82rem;
  color: #888;
  text-align: center;
  margin: 0;
}
.site-footer a {
  color: #888;
}
.site-footer a:hover {
  color: #1a6b4a;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 600px) {
  .page-content {
    padding: 2rem 0 3rem;
  }
  h1 {
    font-size: 1.6rem;
  }
  .site-nav .nav-link {
    padding: 0.35rem 0.5rem;
  }
}

/*# sourceMappingURL=main.css.map */