:root{

  --bg:#f5f1eb;
  --white:#ffffff;

  --text:#1d1d1d;
  --text-light:#6b6b6b;

  --accent:#b08d57;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{

  font-family:'Inter',sans-serif;

  background:var(--bg);

  color:var(--text);

  overflow-x:hidden;
}


.background-glow{

  position:fixed;

  inset:0;

  z-index:-1;

  overflow:hidden;
}

.background-glow::before,
.background-glow::after{

  content:"";

  position:absolute;

  width:600px;
  height:600px;

  border-radius:50%;

  filter:blur(120px);

  opacity:0.15;
}

.background-glow::before{

  background:#d9c2a3;

  top:-200px;
  left:-150px;
}

.background-glow::after{

  background:#ffffff;

  bottom:-200px;
  right:-150px;
}


nav{

  position:fixed;

  top:0;
  left:0;

  width:100%;

  padding:24px 5vw;

  display:flex;
  justify-content:space-between;
  align-items:center;

  background:
  rgba(245,241,235,0.82);

  backdrop-filter:blur(12px);

  z-index:1000;
}

.logo{

  font-family:
  'Playfair Display',serif;

  font-size:34px;

  font-weight:700;
}

.logo span{

  color:var(--accent);
}

.nav-links{

  display:flex;

  gap:35px;
}

.nav-links a{

  text-decoration:none;

  color:var(--text);

  font-weight:500;

  transition:0.3s;
}

.nav-links a:hover{

  color:var(--accent);
}


header{

  min-height:100vh;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:140px 5vw 100px;

  text-align:center;
}

.hero-content{

  max-width:950px;
}

.hero-tag{

  color:var(--accent);

  letter-spacing:4px;

  margin-bottom:30px;

  font-size:14px;

  font-weight:600;
}

.hero-content h1{

  font-family:
  'Playfair Display',serif;

  font-size:
  clamp(58px,8vw,120px);

  line-height:0.95;

  margin-bottom:35px;
}

.hero-text{

  font-size:20px;

  line-height:1.9;

  color:var(--text-light);

  max-width:700px;

  margin:auto;
}

.hero-buttons{

  display:flex;
  justify-content:center;

  gap:20px;

  margin-top:45px;

  flex-wrap:wrap;
}

.btn{

  padding:18px 34px;

  border-radius:14px;

  text-decoration:none;

  font-weight:600;

  transition:0.3s;
}

.btn:first-child{

  background:var(--accent);

  color:white;
}

.btn:first-child:hover{

  transform:translateY(-4px);
}

.secondary-btn{

  border:
  1px solid rgba(0,0,0,0.1);

  color:var(--text);

  background:white;
}

.secondary-btn:hover{

  background:#f3ece2;
}


.burger{

  display:none;

  flex-direction:column;

  gap:6px;

  cursor:pointer;
}

.burger span{

  width:28px;
  height:3px;

  background:var(--text);

  border-radius:20px;
}

@media(max-width:768px){

  .burger{
    display:flex;
  }

  .nav-links{
    display:none;
  }

}


.about-image{

  overflow:hidden;
width:100%;
  border-radius:32px;
}

.about-image img{

  width:100%;

  height:750px;

  object-fit:cover;

  transition:0.6s;
}

.about-image:hover img{

  transform:scale(1.04);
}


.section-tag{

  color:var(--accent);

  letter-spacing:4px;

  margin-bottom:25px;

  font-size:14px;

  font-weight:600;
}

.about-content h2{

  font-family:
  'Playfair Display',serif;

  font-size:
  clamp(40px,5vw,72px);

  line-height:1.05;

  margin-bottom:35px;
}

.about-content p{

  color:var(--text-light);

  line-height:2;

  margin-bottom:24px;

  font-size:17px;
}


.about-link{

  display:inline-flex;

  align-items:center;

  gap:12px;

  margin-top:15px;

  text-decoration:none;

  color:var(--text);

  font-weight:600;

  transition:0.3s;
}

.about-link:hover{

  gap:18px;

  color:var(--accent);
}


@media(max-width:1000px){

  .about-grid{

    grid-template-columns:1fr;

    gap:60px;
  }

  .about-image img{

    height:500px;
  }

  .about-content{

    text-align:center;
  }

}

/* PROJECTS */

.projects-section{

  padding:140px 5vw;
}

.section-heading{

  text-align:center;

  margin-bottom:80px;
}

.section-heading h2{

  font-family:
  'Playfair Display',serif;

  font-size:
  clamp(42px,6vw,84px);

  margin-top:20px;
}


.projects-grid{

  max-width:1500px;
  margin:auto;

  display:grid;

  grid-template-columns:
  repeat(2,1fr);

  gap:30px;
}


.project-card{

  position:relative;

  overflow:hidden;

  border-radius:32px;

  min-height:500px;

  cursor:pointer;
}

.large-card{

  min-height:700px;
}

.project-card img{

  width:100%;
  height:100%;

  object-fit:cover;

  transition:0.7s;
}

.project-card:hover img{

  transform:scale(1.06);
}


.project-overlay span{

  font-size:14px;

  letter-spacing:2px;

  opacity:0.85;

  margin-bottom:12px;
}

.project-overlay h3{

  font-family:
  'Playfair Display',serif;

  font-size:42px;

  font-weight:600;
}


@media(max-width:900px){

  .projects-grid{

    grid-template-columns:1fr;
  }

  .large-card{

    min-height:500px;
  }

}


/* PROCESS */

.process-section{

  padding:140px 5vw;
}

.process-grid{

  max-width:1400px;
  margin:auto;

  display:grid;

  grid-template-columns:
  repeat(4,1fr);

  gap:30px;
}

.process-card{

  padding:50px 40px;

  border-radius:32px;

  background:
  rgba(255,255,255,0.65);

  backdrop-filter:blur(12px);

  border:
  1px solid rgba(255,255,255,0.5);

  transition:0.4s;
}


.process-card:hover{

  transform:translateY(-8px);

  box-shadow:
  0 20px 60px
  rgba(0,0,0,0.08);
}


.process-number{

  width:72px;
  height:72px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  margin-bottom:30px;

  background:
  rgba(176,141,87,0.12);

  color:#b08d57;

  font-size:24px;
  font-weight:700;
}


.process-card h3{

  font-size:30px;

  margin-bottom:18px;

  font-family:
  'Playfair Display',serif;
}

.process-card p{

  line-height:1.9;

  color:#5f5f5f;
}


@media(max-width:1100px){

  .process-grid{

    grid-template-columns:
    repeat(2,1fr);
  }

}

@media(max-width:700px){

  .process-grid{

    grid-template-columns:1fr;
  }

}


/* TESTIMONIALS */

.testimonials-section{

  padding:140px 5vw;
}

.testimonials-grid{

  max-width:1400px;
  margin:auto;

  display:grid;

  grid-template-columns:
  repeat(3,1fr);

  gap:30px;
}


.testimonial-card{

  padding:50px 40px;

  border-radius:32px;

  background:
  rgba(255,255,255,0.7);

  backdrop-filter:blur(12px);

  border:
  1px solid rgba(255,255,255,0.5);

  transition:0.4s;
}

.testimonial-card:hover{

  transform:translateY(-8px);

  box-shadow:
  0 20px 60px
  rgba(0,0,0,0.08);
}


.quote-icon{

  width:70px;
  height:70px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  margin-bottom:30px;

  background:
  rgba(176,141,87,0.12);

  color:#b08d57;

  font-size:28px;
}


.testimonial-card p{

  line-height:2;

  color:#5f5f5f;

  margin-bottom:35px;
}

.testimonial-author strong{

  display:block;

  font-size:18px;

  margin-bottom:8px;

  color:#111;
}

.testimonial-author span{

  color:#8a8a8a;

  font-size:14px;

  letter-spacing:1px;
}


@media(max-width:1100px){

  .testimonials-grid{

    grid-template-columns:1fr;
  }

}


/* CTA */

.cta-section{

  padding:140px 5vw;
}


.cta-box{

  max-width:1300px;
  margin:auto;

  padding:
  100px 80px;

  border-radius:40px;

  text-align:center;

  position:relative;

  overflow:hidden;

  background:
  linear-gradient(
    135deg,
    #111111,
    #1e1e1e
  );

  color:white;
}


.cta-box::before{

  content:"";

  position:absolute;

  width:500px;
  height:500px;

  border-radius:50%;

  background:
  rgba(176,141,87,0.15);

  filter:blur(120px);

  top:-200px;
  right:-120px;
}


.cta-box h2{

  font-size:
  clamp(44px,6vw,82px);

  line-height:1.1;

  margin:
  25px 0 30px;

  position:relative;

  z-index:2;
}

.cta-box p{

  max-width:700px;

  margin:auto;

  line-height:2;

  color:
  rgba(255,255,255,0.75);

  position:relative;

  z-index:2;
}


.cta-buttons{

  display:flex;

  justify-content:center;

  gap:20px;

  flex-wrap:wrap;

  margin-top:45px;

  position:relative;

  z-index:2;
}


.cta-box .btn{

  background:#b08d57;

  color:white;
}

.cta-box .btn:hover{

  background:#9a7846;
}


.cta-box .secondary-btn{

  background:
  rgba(255,255,255,0.08);

  border:
  1px solid rgba(255,255,255,0.15);

  color:white;
}


@media(max-width:768px){

  .cta-box{

    padding:
    70px 30px;
  }

}


/* CONTACT */

.contact-section{

  padding:140px 5vw;
}


.contact-grid{

  max-width:1400px;
  margin:auto;

  display:grid;

  grid-template-columns:
  1fr 1fr;

  gap:60px;
}


.contact-form{

  display:flex;
  flex-direction:column;

  gap:24px;
}


.contact-form input,
.contact-form textarea{

  padding:22px;

  border-radius:20px;

  border:
  1px solid rgba(0,0,0,0.08);

  background:
  rgba(255,255,255,0.7);

  backdrop-filter:blur(10px);

  font-size:16px;

  font-family:inherit;

  outline:none;

  transition:0.3s;
}


.contact-form input:focus,
.contact-form textarea:focus{

  border-color:#b08d57;

  box-shadow:
  0 0 0 4px
  rgba(176,141,87,0.12);
}


.contact-info{

  display:flex;
  flex-direction:column;

  gap:24px;
}


.contact-card{

  display:flex;

  gap:20px;

  padding:28px;

  border-radius:24px;

  background:
  rgba(255,255,255,0.7);

  backdrop-filter:blur(10px);

  border:
  1px solid rgba(255,255,255,0.5);
}


.contact-card i{

  font-size:28px;

  color:#b08d57;

  margin-top:4px;
}


.contact-card a,
.contact-card p{

  text-decoration:none;

  color:#5f5f5f;

  line-height:1.8;
}

.contact-card h3{

  margin-bottom:8px;

  font-size:20px;
}


.contact-info iframe{

  width:100%;
  height:320px;

  border:none;

  border-radius:30px;

  margin-top:10px;
}


@media(max-width:1000px){

  .contact-grid{

    grid-template-columns:1fr;
  }

}

/* FOOTER */

footer{

  padding:
  120px 5vw 40px;

  background:#111111;

  color:white;
}


.footer-grid{

  max-width:1400px;
  margin:auto;

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(220px,1fr));

  gap:60px;
}


.footer-logo{

  font-size:36px;
  font-weight:700;

  margin-bottom:24px;

  font-family:
  'Playfair Display',serif;
}

.footer-logo span{

  color:#b08d57;
}


footer h3{

  margin-bottom:24px;

  font-size:22px;
}

footer p,
footer a{

  display:block;

  margin-bottom:12px;

  color:
  rgba(255,255,255,0.7);

  text-decoration:none;

  line-height:1.9;

  transition:0.3s;
}


footer a:hover{

  color:white;
}


.socials{

  display:flex;

  gap:16px;
}

.socials a{

  width:48px;
  height:48px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  background:
  rgba(255,255,255,0.08);

  font-size:18px;
}



.socials a:hover{

  transform:translateY(-4px);

  background:#b08d57;
}

.footer-bottom{

  margin-top:70px;

  padding-top:30px;

  text-align:center;

  border-top:
  1px solid rgba(255,255,255,0.08);
}

.about-section{

  padding:140px 5vw;
}

.about-grid{

  max-width:1400px;
  margin:auto;

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:80px;

  align-items:center;
}


.project-overlay{

  position:absolute;

  inset:0;

  display:flex;
  flex-direction:column;
  justify-content:flex-end;

  padding:40px;

  background:
  linear-gradient(
    transparent,
    rgba(0,0,0,0.75)
  );

  color:white;
}

@media(max-width:768px){

  .burger{
    display:flex;
  }

  .nav-links{

    display:none;

    position:absolute;

    top:100%;
    left:0;

    width:100%;

    padding:30px;

    background:#f5f1eb;

    flex-direction:column;

    gap:24px;
  }

  .nav-links.active{

    display:flex;
  }

}

@media(max-width:768px){

  .about-section{
    padding:100px 5vw;
  }

  .about-grid{
     grid-template-columns:1fr;
    gap:40px;
  }

  .about-image{
    width:100%;
  }

  .about-image img{

    width:100%;

    height:320px;

    display:block;

    object-fit:cover;

    border-radius:24px;
  }

}

#form-message{

  margin-top:18px;

  font-size:15px;

  font-weight:600;

  opacity:0;

  transition:0.4s;
}

#form-message.show{

  opacity:1;
}

#form-message.success{

  color:#4caf50;
}

#form-message.error{

  color:#ff4d4d;
}