:root{
  --sand:#C7A76C;
  --cream:#F7F2E8;
  --brown:#5C4631;
  --muted:#7A6652;
  --white:#ffffff;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:var(--cream);
  color:var(--brown);
  line-height:1.6;
}

.container{
  max-width:1100px;
  padding:0 20px;
  margin:0 auto;
}

.site-header{
  background:var(--cream);
  border-bottom:1px solid rgba(0,0,0,0.05);
}
.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 0;
}
.logo{
  font-size:28px;
  font-weight:700;
  color:var(--sand);
  letter-spacing:2px;
}
.tagline{
  display:block;
  font-size:12px;
  color:var(--muted);
}

.nav a{
  margin-left:16px;
  text-decoration:none;
  color:var(--brown);
  font-weight:600;
}

.hero{
  padding:80px 0;
  text-align:center;
}
.hero h1{
  font-size:42px;
  margin-bottom:16px;
}
.hero-sub{
  max-width:700px;
  margin:0 auto 12px;
  color:var(--muted);
}
.hero-trust{
  font-size:14px;
  margin-bottom:24px;
}
.hero-cta .btn{
  margin:0 8px;
}

.section{
  padding:64px 0;
}
.section h2{
  text-align:center;
  margin-bottom:32px;
}

.hhh-grid,
.product-grid,
.proof-grid{
  display:grid;
  gap:24px;
}
.hhh-grid{grid-template-columns:repeat(3,1fr);}
.product-grid{grid-template-columns:repeat(2,1fr);}
.proof-grid{grid-template-columns:repeat(3,1fr);}

.hhh-item,
.product-card{
  background:var(--white);
  padding:24px;
  border-radius:10px;
}

.product-meta{
  font-size:14px;
  color:var(--muted);
}

.coming-soon{
  text-align:center;
  margin-top:24px;
  color:var(--muted);
}

.purity-list{
  max-width:420px;
  margin:16px auto 24px;
}

.story p{
  max-width:720px;
  margin:0 auto 16px;
  text-align:center;
}
.origin{
  font-weight:600;
}

blockquote{
  background:var(--white);
  padding:20px;
  border-radius:8px;
  font-style:italic;
}

.final-cta{
  text-align:center;
  background:rgba(199,167,108,0.1);
}

.site-footer{
  background:var(--cream);
  border-top:1px solid rgba(0,0,0,0.05);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  padding:24px 0;
}
.footer-links a{
  margin-left:16px;
  text-decoration:none;
  color:var(--muted);
}
.footer-bottom{
  text-align:center;
  font-size:14px;
  color:var(--muted);
  padding-bottom:16px;
}

.btn{
  display:inline-block;
  padding:10px 18px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
}
.btn-primary{
  background:var(--sand);
  color:var(--white);
}
.btn-secondary{
  border:1px solid var(--sand);
  color:var(--brown);
}

@media(max-width:768px){
  .hhh-grid,
  .product-grid,
  .proof-grid{
    grid-template-columns:1fr;
  }
  .hero h1{font-size:32px;}
}
