* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
body {
    background: #fff;
    color: #2a2a2a;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
  
.wrap {
    max-width: 1360px;
    margin: 0 auto;
    padding: 80px 40px 60px;
}
  
header {
    text-align: center;
    margin-bottom: 50px;
}
  
header h1 {
    font-weight: 400;
    font-size: 3rem;
    margin-bottom: 12px;
}
  
header p {
    font-weight: 300;
    font-size: 1.3rem;
    color: #2a2a2a;
}
  
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}
  
.project {
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
.project:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
  
.thumb {
    aspect-ratio: 16 / 10;
    background: #f0ede7;
    overflow: hidden;
    position: relative;
}
  
.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
  
.project:hover .thumb img {
    transform: scale(1.04);
}
  
  
.project-body {
    padding: 22px 24px 26px;
}
  
.project h2 {
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 10px;
    transition: color 0.25s ease;
}
  
.project p {
    color: #555;
    font-size: 0.95rem;
}
  
.project:hover h2 {
    color: #2a8a6a;
}
  
footer {
    text-align: center;
    padding-top: 20px;
}
  
footer p {
    font-size: 1rem;
}
  
footer a {
    color: #2a8a6a;
    text-decoration: underline;
}
  
footer a:hover {
    opacity: 0.7;
}
  
.socials {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 14px;
}
  
.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
  
.socials a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
  
.socials svg {
    width: 20px;
    height: 20px;
    fill: #1a1a1a;
}
  
@media (max-width: 900px) {
    .grid {
      grid-template-columns: 1fr;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }
    .wrap {
      padding: 50px 24px 40px;
    }
}