*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#111;
  color:white;
  overflow-x:hidden;
}

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  padding:28px 6%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(0,0,0,0.45);
  backdrop-filter:blur(10px);
  z-index:1000;
  transition:0.4s;
}

.header.scrolled{
  background:rgba(0,0,0,0.94);
  padding:18px 6%;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo img{
  height:42px;
  width:auto;
}

nav{
  display:flex;
  align-items:center;
}

nav a{
  position:relative;
  color:white;
  text-decoration:none;
  margin-left:28px;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  transition:0.3s;
}

nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:1px;
  background:#c7a46a;
  transition:0.3s;
}

nav a:hover{
  color:#c7a46a;
}

nav a:hover::after{
  width:100%;
}

.lang-switch{
  display:flex;
  gap:8px;
  margin-left:25px;
}

.lang-switch button{
  background:transparent;
  color:#ddd;
  border:1px solid rgba(255,255,255,0.25);
  padding:6px 9px;
  font-size:11px;
  cursor:pointer;
  transition:0.3s;
}

.lang-switch button:hover,
.lang-switch button.active{
  color:#111;
  background:#c7a46a;
  border-color:#c7a46a;
}

.hero{
  position:relative;
  height:100vh;
  overflow:hidden;
  display:flex;
  align-items:center;
  padding:120px 8%;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
  linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.76)),
  url("media/hero.jpeg");
  background-size:105%;
  background-position:center;
  animation:slowZoom 18s ease-in-out infinite alternate;
  z-index:0;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:900px;
  animation:fadeUp 1.4s ease;
}

.small-text{
  color:#c7a46a;
  margin-bottom:22px;
  letter-spacing:3px;
  text-transform:uppercase;
  font-size:12px;
}

.hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:120px;
  font-weight:500;
  letter-spacing:10px;
  line-height:0.95;
  margin-bottom:20px;
}

.hero h2{
  font-family:'Cormorant Garamond',serif;
  font-size:34px;
  font-weight:400;
  line-height:1.4;
  margin-bottom:30px;
  color:#f1f1f1;
}

.description{
  max-width:650px;
  line-height:1.9;
  font-size:18px;
  color:#d9d9d9;
}

.hero-button{
  display:inline-block;
  margin-top:40px;
  padding:15px 34px;
  border:1px solid #c7a46a;
  color:#c7a46a;
  text-decoration:none;
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:12px;
  transition:0.3s;
}

.hero-button:hover{
  background:#c7a46a;
  color:#111;
}

.section{
  padding:140px 8%;
  background:#f3efe8;
  color:#111;
  border-top:1px solid rgba(0,0,0,0.06);
}

.dark{
  background:#151515;
  color:white;
  border-top:1px solid rgba(255,255,255,0.05);
}

.section-title{
  color:#c7a46a;
  margin-bottom:25px;
  letter-spacing:3px;
  text-transform:uppercase;
  font-size:12px;
}

.section h3{
  font-family:'Cormorant Garamond',serif;
  font-size:64px;
  font-weight:400;
  line-height:1.1;
  max-width:1000px;
  margin-bottom:35px;
}

.section p{
  max-width:800px;
  line-height:1.9;
  font-size:17px;
}

.services{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  margin-top:50px;
}

.services div{
  padding:42px;
  border:1px solid #333;
  font-size:20px;
  transition:0.3s;
}

.services div:hover{
  background:#1d1d1d;
}

.projects{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
  margin-top:50px;
}

.project{
  position:relative;
  overflow:hidden;
  min-height:430px;
  background:#111;
  border:1px solid rgba(255,255,255,0.08);
  transition:0.4s;
}

.project:hover{
  transform:translateY(-6px);
}

.project img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.7s;
}

.project:hover img{
  transform:scale(1.05);
}

.project::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.80), rgba(0,0,0,0.08));
}

.project-content{
  position:absolute;
  left:0;
  bottom:0;
  z-index:2;
  padding:35px;
  color:white;
}

.project-content h4{
  font-family:'Cormorant Garamond',serif;
  font-size:38px;
  margin-bottom:10px;
}

.project-content p{
  color:#ddd;
  font-size:15px;
}

.contact{
  background:#111;
  color:white;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  margin-top:35px;
}

.contact p{
  color:#d2d2d2;
}

.footer{
  padding:45px 8%;
  background:#080808;
  color:#999;
  display:flex;
  justify-content:space-between;
  gap:30px;
  border-top:1px solid rgba(255,255,255,0.06);
}

.footer strong{
  color:white;
  letter-spacing:2px;
}

.footer p{
  margin-top:8px;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes slowZoom{
  from{
    transform:scale(1);
  }

  to{
    transform:scale(1.08);
  }
}

@media(max-width:1050px){

  nav{
    display:none;
  }

  .lang-switch{
    margin-left:auto;
  }

}

@media(max-width:900px){

  .header{
    padding:20px 25px;
  }

  .header.scrolled{
    padding:16px 25px;
  }

  .logo img{
    height:34px;
  }

  .hero{
    padding:120px 25px 80px;
  }

  .hero h1{
    font-size:68px;
    letter-spacing:6px;
  }

  .hero h2{
    font-size:24px;
  }

  .description{
    font-size:16px;
  }

  .section{
    padding:90px 25px;
  }

  .section h3{
    font-size:42px;
  }

  .services,
  .projects,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .project{
    min-height:340px;
  }

  .footer{
    flex-direction:column;
    padding:35px 25px;
  }

}