
:root{
  --bg-dark:#1f2424;
  --bg-light:#F3EDE3;
  --text:#222;
  --text-light:#fafaf8;
  --olive:#6E8B5E;
  --stone:#4A4A4A;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Lato,system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Arial,sans-serif;color:var(--text);background:var(--bg-light)}
h1,h2,h3{font-family:Montserrat,Arial,sans-serif;color:var(--stone);line-height:1.2;margin:0 0 .5rem}
p{line-height:1.6;margin:.5rem 0 1rem}
.container{width:min(1100px,92%);margin:0 auto;padding:3rem 0}
.btn{display:inline-block;background:var(--olive);color:white;padding:.9rem 1.2rem;border-radius:.6rem;text-decoration:none;font-weight:700}
.btn:hover{filter:brightness(.95)}
.navbar{position:sticky;top:0;background:white;border-bottom:1px solid #eee;z-index:10}
.navbar .inner{display:flex;align-items:center;justify-content:space-between;padding:.8rem 0}
.navbar a{color:var(--stone);text-decoration:none;margin-left:1rem;font-weight:600}
.hero{background:linear-gradient(180deg,#171b1b 0%, #1f2424 60%, #232a29 100%);color:var(--text-light)}
.hero-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:2rem;align-items:center}
.hero h1{font-family:Montserrat,Arial,sans-serif;font-weight:800;font-size:clamp(2rem,5vw,3.4rem);color:#fff;margin-bottom:1rem}
.hero p{color:#d7dfd5;font-size:1.1rem}
.hero .cta{margin-top:1rem}
.card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem}
.card{background:white;border:1px solid #eee;border-radius:14px;padding:1.2rem}
.card h3{margin-bottom:.4rem}
.section-dark{background:var(--bg-dark);color:var(--text-light)}
.section-dark h2{color:#fff}
.footer{background:#121616;color:#cfd6cf}
.footer a{color:#fff}
img.responsive{width:100%;height:auto;border-radius:12px}
.figure{margin:2rem 0}
.line{height:3px;background:var(--olive);width:90px;border-radius:3px;margin:.5rem 0 1rem}
@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr}
  .card-grid{grid-template-columns:1fr}
}
