body{
  margin:0;
  font-family:Arial,sans-serif;
  background:#fffaf2;
  color:#214f3d;
}
.hero{
  min-height:85vh;
  display:grid;
  align-items:center;
  padding:90px 7%;
  position:relative;
  overflow:hidden;
}
.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(10,20,15,.34),rgba(10,20,15,.48)),
    radial-gradient(circle at 70% 20%, rgba(255,214,120,.25), transparent 40%);
}
.hero-inner{
  position:relative;
  z-index:2;
  max-width:980px;
}
.kicker{
  display:inline-block;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.25);
  color:#fff6dd;
  border-radius:999px;
  padding:10px 16px;
  font-weight:900;
  backdrop-filter:blur(12px);
}
.hero h1{
  font-size:clamp(52px,8vw,108px);
  line-height:.92;
  color:white;
  margin:18px 0;
}
.hero p{
  color:#f2f4ef;
  font-size:22px;
  line-height:1.65;
  max-width:850px;
}
.btn{
  display:inline-block;
  margin-top:18px;
  margin-right:12px;
  padding:16px 24px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
}
.btn-primary{
  background:#d6a24f;
  color:#1f1708;
}
.btn-secondary{
  border:1px solid rgba(255,255,255,.35);
  color:white;
  backdrop-filter:blur(12px);
}

.section{
  padding:88px 7%;
}
.alt{
  background:#fff4dc;
}
.dark{
  background:linear-gradient(135deg,#10291f,#07130f);
  color:white;
}
.section h2{
  font-size:clamp(38px,5vw,72px);
  line-height:1;
  margin:16px 0;
}
.section p{
  font-size:20px;
  line-height:1.7;
  max-width:980px;
}
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:24px;
  margin-top:36px;
}
.card{
  background:white;
  border:1px solid #eadcc0;
  border-radius:30px;
  padding:28px;
  box-shadow:0 18px 55px rgba(0,0,0,.06);
}
.dark .card{
  background:rgba(255,255,255,.08);
  color:white;
  border-color:rgba(255,255,255,.15);
}
.card h3{
  margin-top:0;
  font-size:26px;
}
.audio-toggle{
  position:fixed;
  bottom:24px;
  right:24px;
  z-index:99999;
  border:0;
  border-radius:999px;
  padding:16px 22px;
  background:#214f3d;
  color:white;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 14px 40px rgba(0,0,0,.18);
}
.dark .audio-toggle{
  background:#d6a24f;
  color:#1d1608;
}
