/* Multi-page theme tuned to your logo */
:root{
  --brand:#197847;
  --brand-dark:#0f482a;
  --brand-light:#75ae90;
  --text:#f5f7f6;
  --muted:#cfe6da;
  --bg:#08120e;
  --panel:#0c1f18;
  --edge:rgba(255,255,255,.08);
  --accent:#f0c36a;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,'Helvetica Neue',Arial,sans-serif;color:var(--text);background:var(--bg);}
a{color:#d7f0e6;text-decoration:none}
.container{width:min(1100px,90%);margin:0 auto}
.site-header{position:sticky;top:0;background:linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.25));backdrop-filter:blur(6px);z-index:20;border-bottom:1px solid var(--edge)}
.nav-wrap{display:flex;align-items:center;justify-content:space-between;height:82px}
.logo img{height:64px;display:block} /* bigger logo */
.nav{display:flex;gap:1rem;align-items:center}
.nav a{padding:.4rem .6rem;color:var(--muted)}
.nav a.active{color:#fff}
.btn{background:var(--accent);color:#111;padding:.7rem 1rem;border-radius:10px;font-weight:700;border:2px solid var(--accent)}
.btn-outline{background:transparent;color:#eafff6;border:2px solid rgba(255,255,255,.25)}
.btn-ghost{background:transparent;border:2px solid rgba(255,255,255,.15);color:#eafff6}
.hamburger{display:none;flex-direction:column;gap:5px;background:transparent;border:0}
.hamburger span{display:block;width:24px;height:2px;background:#eafff6}

.hero{background: radial-gradient(600px 300px at 15% 10%, rgba(255,255,255,.06), transparent), linear-gradient(180deg, var(--brand-dark), var(--brand));padding:72px 0;border-bottom:1px solid var(--edge)}
.hero-inner{display:grid;grid-template-columns:1.2fr .8fr;gap:2rem;align-items:center}
.hero h1{font-size:2.4rem;margin:.2rem 0 1rem}
.hero p{color:var(--muted);line-height:1.6}
.pill-list{display:flex;flex-wrap:wrap;gap:.5rem}
.pill-list li{list-style:none;background:rgba(255,255,255,.06);border:1px solid var(--edge);padding:.5rem .7rem;border-radius:999px}
.hero-card{background:var(--panel);border:1px solid var(--edge);padding:1rem;border-radius:14px}

.section{padding:64px 0}
.section.alt{background:linear-gradient(180deg, var(--bg), var(--brand-dark));border-top:1px solid var(--edge);border-bottom:1px solid var(--edge)}
h1,h2{margin:0 0 1rem}
h2{font-size:1.8rem}
.grid{display:grid;gap:1rem}
.grid.two{grid-template-columns:repeat(2,1fr)}
.grid.three{grid-template-columns:repeat(3,1fr)}
.grid.four{grid-template-columns:repeat(4,1fr)}
.card{background:var(--panel);border:1px solid var(--edge);border-radius:14px;padding:1rem}
.card ul{margin:.2rem 0 0 1rem}
.chip{background:var(--panel);border:1px solid var(--edge);padding:.6rem .8rem;border-radius:999px;text-align:center}
.contact-card .contact-list{list-style:none;padding:0;margin:0}
.contact-card li{padding:.25rem 0;color:var(--muted)}
.cta-stack{margin-top:1rem}

label{display:block;font-size:.9rem;color:var(--muted);margin:.4rem 0}
input,textarea{width:100%;margin-top:.35rem;background:#0b1f1a;border:1px solid var(--edge);border-radius:10px;color:#eafff6;padding:.6rem .7rem}
input:focus,textarea:focus{outline:2px solid var(--brand-light)}

.site-footer{border-top:1px solid var(--edge);padding:28px 0;background:var(--brand-dark)}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem}
.footer-links{display:flex;gap:1rem}
.small{color:var(--muted);font-size:.85rem}

@media (max-width: 900px){
  .hero-inner{grid-template-columns:1fr}
  .grid.two{grid-template-columns:1fr}
  .grid.three{grid-template-columns:1fr}
  .grid.four{grid-template-columns:repeat(2,1fr)}
  .nav{display:none;position:absolute;top:82px;right:0;background:var(--brand-dark);border-left:1px solid var(--edge);border-bottom:1px solid var(--edge);padding:1rem;flex-direction:column;min-width:220px}
  .hamburger{display:flex}
  .nav.open{display:flex}
}
