@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=IBM+Plex+Sans:wght@300;400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --primary:    #006341;
  --primary-lt: #006341;
  --accent:     #e8f4ed;
  --text:       #222222;
  --text-muted: #555555;
  --border:     #B9B9B9;
  --bg:         #ffffff;
  --green:  #00462A;
  --gm:     #005c37;
  --gp:     #edf4f0;
  --pear:   #FFFDF1;
  --grey:   #B9B9B9;
  --gl:     #f5f5f4;
  --gmd:    #e8e8e6;
  --yg:     #BCC924;
  --blue:   #45A2BC;
  --mint:   #36AE92;
  --coral:  #F27367;
  --ink:    #1c1c1a;
  --ink2:   #4a4a46;
  --ink3:   #7a7a76;
  --w:      #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero { flex: 1; }

a {
  color: var(--primary);
  text-decoration: none;
}
a:hover { color: var(--primary-lt); text-decoration: underline; }

/* ── Layout ── */
.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero ── */
.hero {
  padding: 52px 0 72px;
}
.site-title {
  font-family: 'EB Garamond', serif;
  font-size: 52px;
  font-weight: 600;
  text-align: center;
  color: var(--primary);
  margin-bottom: 6px;
}
.position {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.5;
}
.hero-inner {
  display: flex;
  gap: 44px;
  align-items: flex-start;
}
.hero-photo {
  flex-shrink: 0;
  width: 210px;
}
.hero-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: block;
}
.hero-content p {
  font-size: 14.5px;
  color: var(--text);
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-weight: 500;
}
.social-links a {
  font-size: 14px;
  color: var(--primary);
}
.social-links a:hover {
  text-decoration: underline;
}
.sep {
  color: var(--text-muted);
  font-size: 13px;
}
.bio-text {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  border-left: 2px solid var(--border);
  padding-left: 14px;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Responsive ── */
@media (max-width: 580px) {
  .hero { padding: 48px 0; }
  .hero-inner { flex-direction: column; gap: 24px; }
  .hero-photo { width: 210px; margin: 0 auto; }
}
