*{
  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(1200px, 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;
  gap:32px;
  flex-wrap:wrap;
}

.nav-links a{
  text-decoration:none;
  color:#555;
  font-size:0.95rem;
  transition:0.3s;
}

.nav-links a:hover{
  color:#000;
}

/* HERO */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:60px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.hero-label{
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:0.8rem;
  color:#8d8176;
  margin-bottom:18px;
}

.hero h1{
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(3rem, 8vw, 5rem);
  line-height:1.05;
  margin-bottom:24px;
}

.hero-description{
  max-width:520px;
  color:#666;
  margin-bottom:36px;
}

.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

/* BUTTONS */

.btn{
  padding:14px 28px;
  border-radius:999px;
  text-decoration:none;
  font-size:0.95rem;
  transition:0.3s;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.btn-primary{
  background:#1f1f1f;
  color:white;
}

.btn-primary:hover{
  background:#000;
  transform:translateY(-2px);
}

.btn-secondary{
  border:1px solid #d7d1cb;
  color:#1f1f1f;
}

.btn-secondary:hover{
  background:#ece7e1;
}

/* HERO IMAGE */

.hero-image img{
  width:100%;
  height:600px;
  object-fit:cover;
  border-radius:32px;
  display:block;
}

/* SECTION */

.section{
  padding:120px 0;
}

.section-heading{
  margin-bottom:50px;
}

.section-label{
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:0.8rem;
  color:#8d8176;
  margin-bottom:12px;
}

.section-heading h2{
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(2.5rem, 6vw, 3.2rem);
  line-height:1.1;
  max-width:700px;
}

/* CENTER */

.center{
  text-align:center;
}

.center h2{
  margin:auto;
}

/* ABOUT */

.about-text{
  max-width:760px;
}

.about-text p{
  font-size:1.08rem;
  color:#4f4f4f;
}

/* PROJECTS */

.projects-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.project-card{
  background:white;
  text-decoration:none;
  color:inherit;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 10px 40px rgba(0,0,0,0.04);
  transition:0.35s ease;
  display:flex;
  flex-direction:column;
  height:100%;
}

.project-card:hover{
  transform:translateY(-8px);
}

.project-card img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
}

.project-content{
  padding:28px;
  flex:1;
}

.project-content span{
  font-size:0.8rem;
  text-transform:uppercase;
  letter-spacing:1px;
  color:#8d8176;
}

.project-content h3{
  margin-top:10px;
  font-size:1.35rem;
  line-height:1.3;
}

/* CONTACT */

.contact-box{
  max-width:500px;
  margin:auto;
  padding:42px;
  background:white;
  border-radius:24px;
  text-align:center;
  box-shadow:0 10px 40px rgba(0,0,0,0.04);
}

/* RESPONSIVE */

@media(max-width:900px){

  .hero{
    min-height:auto;
    padding:80px 0;
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:50px;
  }

  .hero-image{
    order:-1;
  }

   .hero-image img{
    height:420px;
  }

  .nav-container{
    flex-direction:column;
    gap:18px;
  }

  .nav-links{
    justify-content:center;
    gap:18px;
  }

  .section{
    padding:90px 0;
  }

}

@media(max-width:600px){

  .hero-image img{
    height:300px;
    border-radius:24px;
  }

  .about-text{
    padding:35px;
  }

  .project-card img{
    height:250px;
  }

  .contact-box{
    padding:32px;
  }
  .about-text p{
  margin-bottom:24px;
}

}