*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --gold:#c89b3c;
  --gold-dark:#a97f29;
  --black:#111;
  --white:#fff;
  --text:#555;
  --bg:#f8f8f8;
}

body{
  font-family:'Montserrat',sans-serif;
  color:var(--text);
  background:#fff;
}

.header{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  padding:24px 7%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:10;
}

.logo img{
  height:60px;
}

nav ul{
  display:flex;
  list-style:none;
  gap:30px;
}

nav a{
  color:white;
  text-decoration:none;
  font-weight:500;
}

nav a.active,
nav a:hover{
  color:var(--gold);
}

.hero{
  min-height:100vh;
  background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url('../img/foto1.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:120px 20px;
}

.hero-content{
  max-width:850px;
  color:white;
}

.eyebrow{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:2px;
}

.hero h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(3rem,6vw,5rem);
  margin:20px 0;
}

.hero p{
  font-size:1.15rem;
}

.hero-buttons{
  margin-top:35px;
  display:flex;
  gap:15px;
  justify-content:center;
  flex-wrap:wrap;
}

.btn{
  text-decoration:none;
  padding:14px 28px;
  border-radius:999px;
  transition:.3s;
}

.btn-primary{
  background:var(--gold);
  color:white;
}

.btn-primary:hover{
  background:var(--gold-dark);
}

.btn-secondary{
  border:1px solid rgba(255,255,255,.5);
  color:white;
}

.stats{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  text-align:center;
  padding:60px 7%;
  background:#141414;
  color:white;
}

.stat h3{
  color:var(--gold);
  font-size:2rem;
}

.section-title{
  text-align:center;
  margin-bottom:50px;
}

.section-title span{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:2px;
}

.section-title h2{
  font-family:'Playfair Display',serif;
  color:var(--black);
  margin-top:10px;
  font-size:2.4rem;
}

.portfolio,
.services-preview{
  padding:90px 7%;
}

.gallery{
  columns:3 250px;
  column-gap:20px;
}

.gallery img{
  width:100%;
  margin-bottom:20px;
  border-radius:18px;
  transition:.4s;
}

.gallery img:hover{
  transform:scale(1.03);
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

.card{
  background:white;
  padding:35px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.card h3{
  color:var(--black);
  margin-bottom:12px;
}

footer{
  background:#101010;
  color:white;
  padding:60px 7% 20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

.footer-grid h3{
  color:var(--gold);
  margin-bottom:15px;
}

.copyright{
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.1);
  text-align:center;
}

@media(max-width:768px){

  .hero{
    padding-top:160px;
  }

  .header{
    flex-direction:column;
    gap:20px;
  }

  .stats{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
  }

  .hero h1{
    font-size:2.8rem;
  }
}
