* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f5f5f7;
    color: #1d1d1f;
    line-height: 1.6;
  }
  
  /* Navigation */
  .nav-container {
    background: rgba(245,245,247,0.8);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 10;
  }
  
  .nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-weight: 500;
    font-size: 18px;
  }
  
  .nav-links a {
    margin-left: 28px;
    text-decoration: none;
    color: #1d1d1f;
    font-size: 14px;
  }
  
  .nav-links a:hover {
    opacity: 0.6;
  }
  
  /* Layout */
  .container {
    max-width: 820px;
    margin: 0 auto;
    padding: 120px 20px;
  }
  
  /* Hero */
  .hero h1 {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: -0.02em;
  }
  
  .light {
    font-weight: 300;
    color: #6e6e73;
  }
  
  .headline {
    margin-top: 20px;
    font-size: 22px;
    color: #6e6e73;
    max-width: 600px;
  }
  
  /* Sections */
  .section {
    margin-top: 120px;
  }
  
  .section-label {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #86868b;
    margin-bottom: 24px;
  }
  
  .body-text {
    font-size: 18px;
    max-width: 680px;
    margin-bottom: 20px;
  }
  
  /* Work */
  .work-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .work-item h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
  }
  
  .work-item p {
    font-size: 17px;
    color: #515154;
    max-width: 680px;
  }
  
  /* Contact */
  .link {
    font-size: 18px;
    text-decoration: none;
    color: #0066cc;
  }
  
  .link:hover {
    text-decoration: underline;
  }
  
  /* Footer */
  .footer {
    text-align: center;
    padding: 80px 0 40px;
    font-size: 14px;
    color: #86868b;
  }
  
  /* Mobile */
  @media (max-width: 600px) {
    .container {
      padding: 80px 20px;
    }
  
    .hero h1 {
      font-size: 40px;
    }
  
    .headline {
      font-size: 18px;
    }
  }
  .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }
  
  .hero-photo img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 50%;
    background: #e5e5e7;
  }
  
  /* Mobile */
  @media (max-width: 600px) {
    .hero-content {
      flex-direction: column-reverse;
      align-items: flex-start;
      gap: 32px;
    }
  
    .hero-photo img {
      width: 180px;
      height: 180px;
    }
  }
    