
:root{
  --green:#1f7a39;
  --green-dark:#145a2c;
  --cream:#faf8f5;
  --ink:#0b1b13;
  --accent:#cfe9d6;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--ink);background:var(--cream);scroll-behavior:smooth}
a{color:inherit;text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:0 20px}
header{position:sticky;top:0;background:#fff7;backdrop-filter:saturate(180%) blur(8px);border-bottom:1px solid #e6e6e6;z-index:10}
nav{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.brand{display:flex;align-items:center;gap:12px}
.brand-logo{width:65px;height:auto;object-fit:contain}
.brand h1{font-size:18px;margin:0;line-height:1.1}
.pill{display:inline-block;padding:10px 16px;border-radius:999px;background:var(--green);color:white;font-weight:600}
.menu a{padding:8px 10px;border-radius:8px}
.menu a:hover{background:#00000010}
.hero{display:grid;grid-template-columns:1.1fr 1fr;gap:28px;align-items:center;padding:56px 0}
.hero .tag{display:inline-block;background:#c0e6c9;padding:6px 10px;border-radius:999px;font-weight:600;color:#145a2c;letter-spacing:.3px}
.hero h2{font-size:44px;line-height:1.05;margin:14px 0 10px}
.hero p{font-size:18px;color:#334}
.cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:16px}
.cta .btn{padding:12px 16px;border-radius:12px;font-weight:700;border:2px solid var(--green-dark)}
.btn-primary{background:var(--green);color:white;border-color:var(--green);}
.btn-primary:hover{background:var(--green-dark)}
.btn-outline:hover{background:#00000008}
.hero-visual{border-radius:18px;overflow:hidden;box-shadow:0 10px 30px #0001;border:1px solid #0002}
.hero-visual img{width:100%;height:100%;display:block;object-fit:cover}
section{padding:64px 0}
h3.section-title{font-size:28px;margin:0 0 12px}
p.section-sub{margin-top:0;color:#445}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:22px}
.card{background:white;border:1px solid #00000015;border-radius:18px;padding:18px;box-shadow:0 8px 18px #00000008}
.card h4{margin:4px 0 6px}
.badge{display:inline-block;padding:6px 10px;border-radius:999px;background:#00000008;font-weight:600;font-size:12px;color:#234}
.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:18px}
.gallery img{width:100%;height:260px;object-fit:cover;border-radius:14px;border:1px solid #0001;box-shadow:0 6px 16px #00000008}
.review-embed{background:white;border:1px solid #00000015;border-radius:18px;padding:18px;box-shadow:0 8px 18px #00000008}
.footer{background:var(--green-dark);color:#eef;padding:28px 0;margin-top:30px}
.footer a{color:white;text-decoration:underline}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.chip{display:inline-flex;gap:8px;align-items:center;background:#00000008;padding:8px 12px;border-radius:999px;font-weight:600}
.services-list{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-top:10px}
.services-list li{background:white;border:1px solid #0001;padding:10px 12px;border-radius:10px}
.story-wrap{background:var(--accent);}
.story{display:grid;grid-template-columns:1.2fr 1fr;gap:24px;align-items:center}
.story img{width:100%;height:360px;object-fit:cover;border-radius:14px;border:1px solid #0001;box-shadow:0 6px 16px #00000014}
@media (max-width: 900px){
  .hero{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr 1fr}
  .grid-2{grid-template-columns:1fr}
  .story{grid-template-columns:1fr}
  .story img{height:260px}
}
@media (max-width: 560px){
  .gallery{grid-template-columns:1fr}
  .hero h2{font-size:34px}
}
