:root{
  --bg:#0F1F1E;
  --panel:#142423;
  --gold:#B09964;
  --paper:#F6F3EC;
  --ink:#142021;
  --muted:#5E6A67;
  --line:#E6DED0;
  --onDark:#F6F4EF;
  --wa:#25D366;
  --radius:26px;
  --shadow:0 26px 80px rgba(0,0,0,.22);
}

*{box-sizing:border-box;margin:0;padding:0}
html,body{min-height:100%;background:var(--bg)}
body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Inter,Arial,Helvetica,sans-serif;
  line-height:1.6;color:var(--ink)
}
a{color:inherit;text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%;height:auto;display:block}

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

/* PAGE FRAME */
.page{
  max-width:1200px;
  margin:22px auto;
  background:var(--paper);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}

/* HEADER (NAV ONLY) */
.header{
  background:linear-gradient(180deg,#0F1F1E,#142423);
  border-bottom:1px solid rgba(176,153,100,.22);
}
.header-inner{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  padding:14px 0;
}

/* HIDE BRAND COMPLETELY */
.brand{display:none}

/* NAV */
.nav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.nav a{
  font-weight:900;
  font-size:13px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(176,153,100,.25);
  background:rgba(20,36,35,.35);
  color:rgba(246,244,239,.9);
}
.nav a.active{
  border-color:rgba(176,153,100,.7);
  background:rgba(20,36,35,.55);
}
.btn-wa{
  background:var(--wa);
  color:#07130c;
  border-color:transparent;
}

/* HERO WITH BIG LOGO */
.hero{
  position:relative;
  padding:50px 0 60px;
  background:
    radial-gradient(900px 360px at 15% 10%, rgba(176,153,100,.16), transparent 60%),
    linear-gradient(135deg, rgba(15,31,30,.98), rgba(20,36,35,.98));
  color:var(--onDark);
  border-bottom:1px solid rgba(255,255,255,.1);
  text-align:center;
}

/* BIG LOGO CENTER */
.hero::before{
  content:"";
  display:block;
  width:min(700px, 92%);
  aspect-ratio:1/1;
  margin:0 auto 22px;
  background:url("logo.png") center / contain no-repeat;
  filter:drop-shadow(0 18px 38px rgba(0,0,0,.45));
}

.kicker{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(246,244,239,.72);
  font-weight:900;
}
.h1{
  font-size:clamp(30px,4.5vw,48px);
  line-height:1.08;
  margin:10px 0;
  color:#fff;
}
.lead{
  font-size:clamp(15px,1.8vw,18px);
  color:rgba(246,244,239,.78);
  max-width:760px;
  margin:0 auto 18px;
}
.hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
  border:1px solid rgba(176,153,100,.3);
  background:rgba(20,36,35,.35);
  color:rgba(246,244,239,.95);
}
.btn-gold{
  background:var(--gold);
  color:#0D1716;
  border-color:transparent;
}

/* SECTIONS */
.section{padding:44px 0}
.section.white{
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.h2{
  font-size:clamp(22px,3.2vw,34px);
  line-height:1.15;
  margin:0 0 10px;
}
.sub{
  margin:0 0 18px;
  color:var(--muted);
  max-width:860px;
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
@media(max-width:900px){
  .grid-3{grid-template-columns:1fr}
}

/* CARDS */
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  box-shadow:0 10px 28px rgba(28,41,42,.1);
}
.card h3{
  margin:0 0 8px;
  font-size:16px;
  font-weight:900;
}
.card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

/* FOOTER */
.footer{
  padding:22px 0;
  background:linear-gradient(180deg,#142423,#0F1F1E);
  color:rgba(246,244,239,.75);
  border-top:1px solid rgba(176,153,100,.18);
  font-size:13px;
}
.footer a{
  color:rgba(246,244,239,.9);
  text-decoration:underline;
  text-underline-offset:3px;
}
.footer-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}