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

  :root {
    --bg: #f9f8f6;
    --text: #37352f;
    --muted: #9b9790;
    --subtle: #e8e6e1;
    --accent: #6b8f71;
    --link: #5b7fa3;
    --max: 680px;
  }

  html { font-size: 16px; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.75;
    padding: 0 1.5rem;
  }

  .page {
    max-width: var(--max);
    margin: 0 auto;
    padding: 5rem 0 6rem;
  }

  .name {
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 2rem;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 0.25rem;
  }

  .role {
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
    margin-bottom: 2.5rem;
  }

  .bio { margin-bottom: 3rem; }

  .bio p {
    margin-bottom: 0.9rem;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
  }

  .bio p:last-child { margin-bottom: 0; }

  hr {
    border: none;
    border-top: 1px solid var(--subtle);
    margin: 2.5rem 0;
  }

  .label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.25rem;
  }

  .exp-list { margin-bottom: 0.5rem; }

  .exp-item {
    display: flex;
    gap: 1.25rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--subtle);
    align-items: baseline;
  }

  .exp-item:first-child { border-top: 1px solid var(--subtle); }

  .exp-org {
    font-weight: 400;
    font-size: 14px;
    color: var(--text);
    min-width: 200px;
  }

  .exp-role {
    font-size: 13px;
    color: var(--muted);
  }

  .project-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--subtle);
    align-items: baseline;
  }

  .project-item:first-child { border-top: 1px solid var(--subtle); }

  .project-year {
    font-size: 12px;
    color: var(--muted);
    font-weight: 400;
    padding-top: 1px;
  }

  .project-title {
    font-size: 14px;
    line-height: 1.55;
  }

  .project-title a {
    color: var(--link);
    text-decoration: none;
  }

  .project-title a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .backup {
    font-size: 12px;
    color: var(--muted);
    margin-left: 0.5rem;
    font-style: italic;
  }

  .backup a {
    color: var(--muted);
    text-decoration: none;
  }

  .backup a:hover {
    color: var(--link);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .contact-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }

  .contact-row a {
    font-size: 14px;
    color: var(--link);
    text-decoration: none;
  }

  .contact-row a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    margin-right: 0.5rem;
    vertical-align: middle;
    position: relative;
    top: -1px;
  }

  .active-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    color: var(--accent);
    background: rgba(107, 143, 113, 0.1);
    border-radius: 3px;
    padding: 0.1rem 0.45rem;
    margin-left: 0.5rem;
    vertical-align: middle;
    letter-spacing: 0.02em;
  }

  .footer {
    margin-top: 4rem;
    font-size: 12px;
    color: var(--muted);
  }