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

  body {
    font-family: 'Jost', sans-serif;
    background: #f2f0ec;
    color: #1a1a1a;
    font-size: 13.5px;
    line-height: 1.7;
  }

  a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  a:hover {
    color: #000;
    text-decoration: underline;
  }

  .contact-link {
    font-weight: 500;
    color: #1a1a1a;
  }

  .project-link {
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: #ddd;
  }

  .project-link:hover {
    text-decoration-color: #1a1a1a;
  }

  .page {
    max-width: 820px;
    margin: 40px auto;
    background: #fff;
    padding: 56px 60px;
  }

  @media print {
    body { background: #fff; }
    .page { margin: 0; padding: 40px 48px; }
  }

  .name {
    font-family: 'EB Garamond', serif;
    font-size: 42px;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: #1a1a1a;
    margin-bottom: 4px;
  }

  .tagline {
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #888;
    font-weight: 400;
    margin-bottom: 20px;
  }

  .contact-bar {
    display: flex;
    gap: 24px;
    font-size: 12.5px;
    color: #555;
    padding-bottom: 20px;
    border-bottom: 1.5px solid #1a1a1a;
    margin-bottom: 32px;
    flex-wrap: wrap;
  }

  .section {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0 32px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e8e6e2;
  }

  .section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .section-label {
    font-size: 10.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    font-weight: 500;
    padding-top: 2px;
  }

  .summary {
    color: #444;
    font-size: 13.5px;
    line-height: 1.75;
  }

  .exp-item { margin-bottom: 22px; }
  .exp-item:last-child { margin-bottom: 0; }

  .exp-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2px;
  }

  .exp-role {
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
  }

  .exp-period {
    font-size: 12px;
    color: #999;
  }

  .exp-org {
    font-size: 12px;
    color: #888;
    margin-bottom: 9px;
  }

  .exp-bullets { list-style: none; }

  .exp-bullets li {
    font-size: 13px;
    color: #444;
    padding-left: 14px;
    position: relative;
    margin-bottom: 3px;
    line-height: 1.65;
  }

  .exp-bullets li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: #bbb;
    font-size: 16px;
    line-height: 1.4;
  }

  .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }

  .tag {
    font-size: 12px;
    color: #444;
    background: #f2f0ec;
    padding: 3px 10px;
    border-radius: 2px;
  }

  .course-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 13px;
    color: #333;
  }

  .course-provider { font-size: 12px; color: #999; }

  .personal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
  }

  .personal-row { font-size: 13px; color: #444; }
  .personal-key {
    color: #999;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: block;
    margin-bottom: 1px;
  }