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

  :root {
    --text: #1c1814;
    --text-muted: #6b6258;
    --text-faint: #a39890;
    --bg: #f8f4ef;
    --surface: #f2ebe2;
    --border: #ddd0c4;
    --accent: #b85c24;
    --accent-light: #faeee6;
    --link: #b85c24;
  }

  html { font-size: 16px; scroll-behavior: smooth; }

  body {
    font-family: 'Roboto Serif', Georgia, serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  /* NAV */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1.5rem 0 1.25rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .nav-name {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--text);
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 1.75rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.88rem;
    font-family: 'DM Mono', monospace;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.15s;
  }

  .nav-links a:hover { color: var(--accent); }

  /* SECTIONS */
  section {
    margin-bottom: 3rem;
    scroll-margin-top: 2rem;
  }

  .section-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 1rem;
  }

  /* HERO */
  .hero { margin-bottom: 3rem; }

  .hero-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .hero-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
    border: 2px solid var(--border);
  }

  .hero-name {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
  }

  .hero-role {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 0;
  }

  .hero-bio {
    font-size: 1rem;
    color: var(--text);
    max-width: 560px;
    line-height: 1.65;
  }

  .hero-links {
    margin-top: 1.1rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .hero-links a {
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 1px;
    letter-spacing: 0.03em;
    transition: opacity 0.15s;
  }

  .hero-links a:hover { opacity: 0.65; }

  /* RESEARCH INTERESTS */
  .interests-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .tag {
    background: var(--accent-light);
    color: var(--accent);
    font-family: 'DM Mono', monospace;
    font-size: 0.78rem;
    padding: 0.35rem 0.8rem;
    border-radius: 2px;
    letter-spacing: 0.02em;
  }

  /* PUBLICATIONS */
  .pub-list { display: flex; flex-direction: column; gap: 1.5rem; }

  .pub-item { padding-left: 1.25rem; border-left: 2px solid var(--border); }
  .pub-item:hover { border-left-color: var(--accent); }
  .pub-item { transition: border-color 0.2s; }

  .pub-title {
    font-size: 1.02rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
    color: var(--text);
  }

  .pub-authors {
    font-style: italic;
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
  }

  .pub-venue {
    font-family: 'DM Mono', monospace;
    font-size: 0.78rem;
    color: var(--text-faint);
    letter-spacing: 0.02em;
  }

  .pub-links {
    margin-top: 0.5rem;
    display: flex;
    gap: 1rem;
  }

  .pub-links a {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    color: var(--link);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
  }

  .pub-links a:hover { opacity: 0.6; }

  /* PROJECTS */
  .project-list { display: flex; flex-direction: column; gap: 1.5rem; }

  .project-item {
    padding: 1rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 3px;
    transition: border-color 0.2s;
  }

  .project-item:hover { border-color: var(--accent); }

  .project-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.4rem;
  }

  .project-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
  }

  .project-links {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
  }

  .project-links a {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    color: var(--link);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
  }

  .project-links a:hover { opacity: 0.6; }

  .project-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.75rem;
  }

  .project-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }

  /* CV / TIMELINE */
  .cv-list { display: flex; flex-direction: column; gap: 1rem; }

  .cv-item { display: grid; grid-template-columns: 130px 1fr; gap: 0 1.5rem; }

  .cv-year {
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-faint);
    padding-top: 0.15rem;
    letter-spacing: 0.02em;
  }

  .cv-role {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
  }

  .cv-place {
    font-style: italic;
    font-size: 0.92rem;
    color: var(--text-muted);
  }

  /* CONTACT */
  .contact-block {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 1.25rem 1.5rem;
    border-radius: 3px;
  }

  .contact-block p {
    font-size: 0.97rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.6;
  }

  .contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.85rem;
    color: var(--accent);
    text-decoration: none;
    width: fit-content;
    transition: opacity 0.15s;
  }

  .contact-link:hover { opacity: 0.65; }

  .contact-link svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--accent);
  }

  /* FOOTER */
  footer {
    border-top: 1px solid var(--border);
    padding: 1.25rem 0 2rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-faint);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  /* UTILS */
  a { color: inherit; }

  @media (max-width: 520px) {
    body { padding: 0 1.25rem; }
    .hero-name { font-size: 2rem; }
    .cv-item { grid-template-columns: 1fr; gap: 0.1rem; }
    .cv-year { font-size: 0.72rem; }
  }