*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

body{
  background:#fafafa;
  color:#222;
}

/* LAYOUT */
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* NAVBAR */
.nav{
  background:#fff;
  position:sticky;
  top:0;
  z-index:100;
  box-shadow:0 2px 15px rgba(0,0,0,0.05);
}

.nav-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 0;
}

.logo{
  height:125px;
}

nav a{
  margin-left:25px;
  text-decoration:none;
  color:#333;
  font-weight:500;
}

.btn{
  background:#c8a96a;
  color:#fff;
  padding:10px 18px;
  border-radius:6px;
}

.btn-outline{
  border:1px solid #c8a96a;
  padding:10px 18px;
  border-radius:6px;
  margin-left:10px;
}

/* HERO */
.hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:80px 0;
}

.hero-text h1{
  font-size:42px;
  line-height:1.3;
}

.hero-text span{
  color:#c8a96a;
}

.hero-text p{
  margin:20px 0;
  color:#666;
}

.hero-img{
  width:450px;
}

/* SECTION */
.section{
  padding:70px 0;
}

.gray{
  background:#f3f3f3;
}

h2{
  font-size:28px;
  margin-bottom:10px;
}

.sub{
  color:#777;
  margin-bottom:30px;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:25px;
}

/* CARD */
.card{
  background:#fff;
  padding:25px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-5px);
}

.card img{
  width:100%;
  height:200px;
  object-fit:contain;
  margin-bottom:10px;
}

/* CTA */
.cta{
  background:#111;
  color:#fff;
  padding:60px 0;
}

.cta-box{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* FOOTER */
.footer{
  background:#000;
  color:#fff;
  padding:30px 0;
  text-align:center;
}

/* RESPONSIVE */
@media(max-width:768px){
  .hero{
    flex-direction:column;
    text-align:center;
  }

  .hero-img{
    width:100%;
    margin-top:20px;
  }
}