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

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

:root {
  --bg:      #ffffff;
  --text:    #111111;
  --muted:   #888888;
  --link:    #111111;
  --font:    'EB Garamond', Georgia, serif;
  --mono:    'DM Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 19px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ── MAIN WRAPPER ── */
.wrapper {
  max-width: 580px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
}

/* ── NAME ── */
.name {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

/* ── BIO ── */
.bio {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  font-style: italic;
  font-weight: 400;
}

/* ── LINKS ── */
.links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.links a {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}

.links a:hover {
  color: #000000;
  border-color: #111111;
}

.links-sep {
  color: #dddddd;
  font-size: 0.8rem;
  user-select: none;
}

/* ── PHOTO PLACEHOLDER ── */
/* To add photo later:
   1. Drop your image file into the repo (e.g. photo.jpg)
   2. Uncomment the .photo block in index.html
   3. Done — nothing else changes */
.photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: 2.5rem;
  filter: grayscale(20%);
}

/* ── SECTION ── */
.section {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid #eeeeee;
}

.section-title {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* ── PAPER / WRITING LIST ── */
.entry-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.entry-list li {}

.entry-list a {
  color: var(--link);
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px solid #dddddd;
  transition: border-color 0.2s;
}

.entry-list a:hover {
  border-color: #111111;
}

.entry-meta {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.2rem;
  letter-spacing: 0.02em;
}

/* ── FOOTER ── */
footer {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid #eeeeee;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: #cccccc;
  letter-spacing: 0.03em;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  body { font-size: 17px; }
  .wrapper { padding: 3rem 1.5rem 4rem; }
  .name { font-size: 1.6rem; }
}
