*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter', sans-serif;
  background:#f6f3ef;
  color:#1f1f1f;
  line-height:1.7;
  overflow-x:hidden;
}

/* CONTAINER */

.container{
  width:min(1100px, 90%);
  margin:auto;
}

/* NAVBAR */

.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  width:100%;
  background:rgba(246,243,239,0.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,0,0,0.04);
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:24px 0;
}

.logo{
  text-decoration:none;
  color:#1f1f1f;
  font-family:'Cormorant Garamond', serif;
  font-size:2rem;
  font-weight:600;
}

.nav-links{
  display:flex;
  align-items:center;
}

.nav-links a{
  text-decoration:none;
  color:#555;
  transition:0.3s ease;
  font-size:0.95rem;
}

.nav-links a:hover{
  color:#000;
}

/* PROJECT PAGE */

.project-page{
  padding:80px 0 120px;
}

/* HERO */

.project-hero{
  max-width:760px;
  margin-bottom:60px;

  animation:fadeUp 0.8s ease;
}

.project-label{
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:0.8rem;
  color:#8d8176;
  margin-bottom:18px;
}

.project-hero h1{
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(3rem, 8vw, 5rem);
  line-height:1.05;
  margin-bottom:24px;
}

.project-intro{
  color:#666;
  font-size:1.05rem;
  max-width:650px;
}

/* IMAGE */

.project-image{
  margin-bottom:70px;

  display:flex;
  justify-content:center;
  align-items:center;

  animation:fadeImage 1s ease;
}

/* GALLERY */

.project-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;

  margin-bottom:70px;

  animation:fadeImage 1s ease;
}

.project-gallery img{
  width:100%;
  height:auto;

  max-height:80vh;

  object-fit:contain;

  border-radius:32px;

  display:block;
}

/* INFO */

.project-info{
  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:40px;

  padding:50px 0 80px;

  border-bottom:1px solid rgba(0,0,0,0.08);
}

.info-item span{
  display:block;

  font-size:0.78rem;

  text-transform:uppercase;

  letter-spacing:1px;

  color:#8d8176;

  margin-bottom:10px;
}

.info-item h3{
  font-size:1.05rem;
  font-weight:500;
}

/* CONTENT */

.project-content{
  padding-top:80px;
}

.content-wrapper{
  max-width:760px;

  animation:fadeUp 1s ease;
}

.content-wrapper h2{
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(2rem, 5vw, 2.8rem);

  margin-bottom:28px;
}

.content-wrapper p{
  margin-bottom:24px;

  color:#4f4f4f;

  font-size:1.02rem;
}

/* ANIMATIONS */

@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(30px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

@keyframes fadeImage{

  from{
    opacity:0;
    transform:scale(0.97);
  }

  to{
    opacity:1;
    transform:scale(1);
  }

}

/* RESPONSIVE */

@media(max-width:900px){

  .project-page{
    padding-top:60px;
  }

  .project-info{
    grid-template-columns:1fr;
    gap:28px;
  }

  .nav-container{
    flex-direction:column;
    gap:18px;
  }

  @media(max-width:700px){

  .project-gallery{
    grid-template-columns:1fr;
  }

}

}

@media(max-width:600px){

  .project-page{
    padding:50px 0 90px;
  }

  .project-image{
    margin-bottom:50px;
  }

  .project-image img{
    border-radius:24px;
    max-height:50vh;
  }

  .content-wrapper h2{
    font-size:2rem;
  }

  .content-wrapper p{
    font-size:1rem;
  }

}