
    body {
      margin: 0;
      font-family: 'Helvetica Neue';
      background: #f1eee9;
      color: #222;
    }

    /* NAVBAR */
    header {
      display: flex;
      justify-content: left;
      align-items: center;
      padding: 24px 28px;
      background: transparent;
    }
    
    menu {
      display: flex;
      justify-content: right;
      padding: 24px 28px;
      background: transparent;
      line-height: 0;
    }

    .logo {
      font-size: 28px;
      font-weight: 600;
      color: #8a3a3a;
    }

    nav a {
      margin-left: 32px;
      text-decoration: none;
      color: #424835;
      font-size: 20px;
      transition: all 0.2s ease;
    }

    nav a:hover {
      font-style: italic;
    }

    /* PORTFOLIO GRID */
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      line-height: 0;
      width: 100%;
      
    }

    .tile {
      position: relative;
      width: 100%;
      overflow: hidden;
      background: transparent;
    }

    .tile img {
      width: 100%;
      object-fit: cover;
      display: block;
    }

    /* HOVER OVERLAY */
    .overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.45);
      color: white;
      opacity: 0;
      transition: opacity 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 24px;
    }

    .tile:hover .overlay {
      opacity: 1;
    }

    .overlay h3 {
      font-style: italic;
      margin-bottom: 8px;
      font-size: 22px;
    }

    .overlay p {
      font-size: 15px;
      line-height: 1.4;
    }
    
    /* ---------- ABOUT PAGE LAYOUT ---------- */

    .about-wrapper {
      max-width: 1200px;
      margin: 60px auto;
      padding: 40px;
      background: #f0ece6;
      position: relative;
      overflow: hidden;
    }

    /* subtle grain/dot overlay */
    /*.about-wrapper::before {*/
    /*  content: "";*/
    /*  position: absolute;*/
    /*  inset: 0;*/
    /*  background-image: radial-gradient(#00000010 1px, transparent 1px);*/
    /*  background-size: 6px 6px;*/
    /*  opacity: 0.3;*/
    /*  pointer-events: none;*/
    /*}*/

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 40px;
      position: relative;
      z-index: 2;
    }

    .about-left {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .name {
      font-size: 64px;
      font-weight: 700;
      line-height: 0.95;
    }

    .tagline {
      font-size: 32px;
      font-weight: 600;
    }

    .portrait {
      width: 260px;
      height: 260px;
      object-fit: cover;
      filter: grayscale(100%);
    }

    .contact {
      font-size: 14px;
      line-height: 1.6;
    }

    /* RIGHT SIDE */

    .section {
      margin-bottom: 32px;
      border-top: 1px solid #111;
      padding-top: 12px;
    }

    .section-title {
      font-weight: 700;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .paragraph {
      font-size: 14px;
      line-height: 1.7;
      max-width: 520px;
    }

    .two-col {
      display: grid;
      grid-template-columns: 2fr 1fr;
      align-items: right;
      gap: 40px;
      font-size: 14px;
    }
    
    .role-details {
      margin: 6px 0 18px 0; /* space above + below list*/
      padding-left: 18px;   /* indent bullets */
    }

    .role-details li {
      margin-bottom: 6px;     /* space between bullets */
      line-height: 1.4;
      font-size: 15px;
    }
    
    /* lighter tone */
    .role-details li::marker {
      color: #666;
    }
    
    /* ------- PROJECT PAGES ------- */
    
    .project-wrapper {
      max-width: 1200px;
      margin: 60px auto;
      padding: 30px;
      background: #f0ece6;
      position: relative;
      overflow: hidden;
    }
    
    .pr-h1 {
      font-size: 38px;
      font-weight: 700;
      line-height: 1.1;
      justify-content: center;
      text-align: center;
      padding: 30px;
    }
    
    .pr-h2 {
      font-size: 28px;
      font-weight: 500;
      line-height: 1.1;
      justify-content: center;
      text-align: center;
      padding: 30px;
    }
    
    .pr-h3 {
      font-size: 20px;
      font-weight: 350;
      line-height: 1.1;
      justify-content: center;
      text-align: center;
      padding: 30px;
    }
    
    .pr-section {
      margin-bottom: 32px;
      border-top: 1px solid #111;
      padding-top: 12px;
    }

    .pr-section-title {
      font-weight: 700;
      margin-bottom: 10px;
      font-size: 20px;
    }
    
    .feature-left {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      align-items: left;
      gap: 60px;
      font-size: 14px;
    }
    
    .feature-right {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      align-items: right;
      gap: 60px;
      font-size: 14px;
    }
    
    .project-details {
      margin: 6px 0 18px 0; /* space above + below list*/
      padding-left: 18px;   /* indent bullets */
    }

    .project-details li {
      margin-bottom: 10px;     /* space between bullets */
      line-height: 2.0;
      font-size: 15px;
    }
    
    
    

    /* ------- RESPONSIVE -------- */
    
    @media (max-width: 900px) {
      .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .about-grid {
        grid-template-columns: 1fr;
      }

      .name {
        font-size: 48px;
      }
    }

    @media (max-width: 600px) {
      header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }

      nav a {
        margin-left: 0;
        margin-right: 20px;
      }

      .portfolio-grid {
        grid-template-columns: 1fr;
      }
    }