
:root{
  --cream:#F4EFE8;
  --text:#2A2A2A;
  --accent:#8C2B2B;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:'Inter',sans-serif;
  background:var(--cream);
  color:var(--text);
}

.nav{
  display:flex;
  justify-content:space-between;
  padding:28px 64px;
}

nav a{
  margin-left:32px;
  text-decoration:none;
  color:var(--text);
}

.hero{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  padding:160px 8%;
  gap:80px;
  align-items:center;
}

.hero h1{
  font-family:'Libre Baskerville',serif;
  font-size:56px;
  line-height:1.25;
}

.hero-btn{
  margin-top:48px;
  display:inline-block;
  padding:16px 44px;
  border-radius:999px;
  border:1px solid var(--accent);
  color:var(--accent);
  text-decoration:none;
  transition:.3s;
}

.hero-btn:hover{
  background:var(--accent);
  color:#fff;
}

.hero-image img{
  width:100%;
  max-width:560px;
  filter:drop-shadow(0 40px 80px rgba(0,0,0,.15));
}

section{
  padding:140px 8%;
}

.about, .products{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:100px;
  align-items:center;
}

.about img, .products img{
  width:100%;
  border-radius:14px;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:40px;
}

.product-grid span{
  display:block;
  margin-top:12px;
}

footer{
  padding:60px;
  text-align:center;
}

.reveal{
  opacity:0;
  transform:translateY(30px);
  transition:1.4s ease;
}

.reveal.show{
  opacity:1;
  transform:none;
}

.whatsapp,.call{
  position:fixed;
  bottom:24px;
  padding:14px 22px;
  border-radius:30px;
  color:#fff;
  text-decoration:none;
}

.whatsapp{left:24px;background:#25d366;}
.call{right:24px;background:#000;}
