/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }

/* ── TOKENS ──────────────────────────────────────────── */
:root {
  --ink:   #111111;
  --muted: #787878;
  --faint: #D4D4D4;
  --bg:    #FFFFFF;
  --max:   740px;
}

/* ── BASE ────────────────────────────────────────────── */
html { -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  padding: 0 clamp(20px, 5vw, 48px);
  line-height: 1.6;
}
.wrap { max-width: var(--max); margin: 0 auto; }
a { color: inherit; }

/* ── SUBPAGE HEADER ──────────────────────────────────── */
.site-header {
  padding: clamp(24px, 4vw, 40px) 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--ink);
  gap: 16px;
  flex-wrap: wrap;
}
.nav-logo {
  font-family: 'Cormorant', serif;
  font-weight: 300;
  font-size: clamp(18px, 3.5vw, 24px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  list-style: none;
}
.nav-links a {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

/* ── PAGE TITLE ──────────────────────────────────────── */
.page-title {
  padding: 40px 0 36px;
  border-bottom: 1px solid var(--faint);
}
.page-title h1 {
  font-family: 'Cormorant', serif;
  font-weight: 300;
  font-size: clamp(40px, 9vw, 72px);
  line-height: 1;
  letter-spacing: 0.04em;
}
.page-title p {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
}

/* ── SECTION HEADING ─────────────────────────────────── */
.sec-head {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 28px 0 14px;
  border-bottom: 1px solid var(--faint);
}

/* ── PUBLICATION ITEM ────────────────────────────────── */
.pub-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--faint);
}
.pub-year {
  font-size: 11px;
  color: var(--faint);
  padding-top: 5px;
  font-weight: 400;
}
.pub-title {
  font-family: 'Cormorant', serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
}
.pub-title a {
  text-decoration: none;
  border-bottom: 1px solid var(--faint);
  transition: border-color 0.15s;
}
.pub-title a:hover { border-color: var(--ink); }
.pub-meta {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
}
.pub-meta em { font-style: italic; }
.pub-status {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--faint);
  padding: 2px 6px;
  margin-top: 5px;
}

/* ── PRESENTATION ITEM ───────────────────────────────── */
.pres-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--faint);
}
.pres-year {
  font-size: 11px;
  color: var(--faint);
  padding-top: 3px;
}
.pres-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

/* ── MEDIA ITEM ──────────────────────────────────────── */
.media-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--faint);
}
.media-outlet {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.media-title {
  font-family: 'Cormorant', serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}
.media-title a {
  text-decoration: none;
  border-bottom: 1px solid var(--faint);
  transition: border-color 0.15s;
}
.media-title a:hover { border-color: var(--ink); }
.media-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.6;
}

/* ── GRANT ITEM ──────────────────────────────────────── */
.grant-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--faint);
}
.grant-title {
  font-family: 'Cormorant', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}
.grant-title a {
  text-decoration: none;
  border-bottom: 1px solid var(--faint);
  transition: border-color 0.15s;
}
.grant-title a:hover { border-color: var(--ink); }
.grant-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
}

/* ── BLOG ITEM ───────────────────────────────────────── */
.blog-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--faint);
}
.blog-outlet {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.blog-title {
  font-family: 'Cormorant', serif;
  font-size: 22px;
  font-weight: 400;
}
.blog-title a {
  text-decoration: none;
  border-bottom: 1px solid var(--faint);
  transition: border-color 0.15s;
}
.blog-title a:hover { border-color: var(--ink); }

/* ── ABOUT CONTENT ───────────────────────────────────── */
.about-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
}
.about-body p + p { margin-top: 14px; }
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--faint);
  font-size: 14px;
  font-weight: 300;
}
.tl-year { color: var(--muted); font-size: 12px; padding-top: 2px; }

/* ── SOCIAL ──────────────────────────────────────────── */
.social {
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border-bottom: 1px solid var(--faint);
}
.soc { color: var(--muted); display: flex; text-decoration: none; transition: color 0.15s; }
.soc:hover { color: var(--ink); }
.soc svg { width: 17px; height: 17px; fill: currentColor; }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  padding: 22px 0 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ft-email {
  font-size: 12.5px; color: var(--muted);
  text-decoration: none; transition: color 0.15s;
}
.ft-email:hover { color: var(--ink); }
.ft-loc { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 540px) {
  .pub-item { grid-template-columns: 1fr; gap: 4px 0; }
  .pub-year { padding-top: 0; }
  .pres-item { grid-template-columns: 1fr; gap: 2px 0; }
  .timeline-item { grid-template-columns: 1fr; gap: 2px 0; }
  .nav-links { display: none; }
  footer { flex-direction: column; gap: 8px; }
}
