
    body {
      background: #f9f8f7;
      font-family: Helvetica, sans-serif;
      letter-spacing: -1.5px;
      color: #1a1a1a;
      padding: 2rem;
      font-size: 1.5rem;
    }

    h1 {
      font-family: 'EB Garamond', serif;
      font-style: italic;
      font-size: 3rem;
    }

    nav {
      text-align: center;
      margin-bottom: 2rem;
    }

    nav a {
      margin: 0 1rem;
      text-decoration: none;
      color: #333;
      font-size: 0.95rem;
      letter-spacing: -1.5px;
    }

    nav a:hover {
      text-decoration: underline;
    }

    footer {
      text-align: center;
      font-size: 0.8rem;
      color: #888;
      margin-top: 4rem;
      padding-bottom: 1rem;
    }

    /* Lightbox styles */
    #lightbox-toggle {
      display: none;
    }

    .lightbox-label {
      cursor: pointer;
      display: inline-block;
    }

    .lightbox-img {
      width: 200px;
      border-radius: 100px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .lightbox-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.85);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    #lightbox-toggle:checked + .lightbox-modal {
      opacity: 1;
      pointer-events: all;
    }

    .lightbox-modal img {
      max-width: 90vw;
      max-height: 90vh;
      border-radius: 4px;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }
  