
    body {
      margin: 0;
      padding: 2rem;
      font-family: Helvetica, sans-serif;
      background-color: #f7f5f3;
      color: #111;
      letter-spacing: -1px;
    }

    h1 {
      font-family: 'Garamond', serif;
      font-style: italic;
      font-size: 2.2rem;
      margin-bottom: 2rem;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .project {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .project img {
      max-width: 100%;
      height: auto;
      border: 1px solid #ccc;
    }

    .caption {
      margin-top: 0.75rem;
      font-size: 0.9rem;
      color: #444;
    }
    .arrow {
      font-size: 1rem;
      color: #4b3b82;
      text-decoration: none;
      border: 1px solid #4b3b82;
      padding: 0.5rem 1rem;
      border-radius: 2rem;
      transition: all 0.3s ease;
    }
    .arrow:hover {
      background: #4b3b82;
      color: white;
    }

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

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

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

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