:root{
  --bg:#f7f7f7;
  --accent:#008c57;
  --dark:#0f1720;
  --muted:#6b7280;
  --container:1100px;
  --header-bg:#25303b;
  --footer-bg:#2d2d2d;
}
*{box-sizing:border-box}
body{font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,'Helvetica Neue',Arial;line-height:1.5;color:var(--dark);background:var(--bg);margin:0}
.container{max-width:var(--container);margin:0 auto;padding:1rem}
.site-header{background:var(--header-bg);border-bottom:1px solid rgba(255,255,255,0.08)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:1.1rem 0}
.brand{display:flex;align-items:center;gap:1rem;text-decoration:none;color:#fff}
.logo{height:72px;width:auto;display:block}
.brand-text{font-weight:700;display:block}
.site-url{display:block;font-size:0.85rem;color:rgba(255,255,255,0.72);margin-top:0.15rem}
.social a{margin-left:1rem;color:rgba(255,255,255,0.82);text-decoration:none}

.hero{background:linear-gradient(180deg, #ffffff 0%, #fcf5f5 100%);padding:3.5rem 0}
.emergency{background:transparent;margin-bottom:1.25rem;display:flex;justify-content:center}
.emergency-inner{display:flex;gap:1rem;flex-wrap:wrap}
.emergency-pill{background:#008c57;border-radius:999px;padding:1rem 1.25rem;display:flex;align-items:center;gap:0.75rem;box-shadow:0 18px 45px rgba(0,140,87,0.18)}
.pill-label{text-transform:uppercase;letter-spacing:0.08em;font-size:0.78rem;opacity:0.92;color:#fff}
.emergency-number{display:inline-flex;align-items:center;justify-content:center;color:#fff;text-decoration:none;font-size:1.05rem;font-weight:700}
.emergency a{color:#fff;text-decoration:none}
.hero h1{font-size:2rem;margin:0 0 0.5rem}
.lead{color:var(--muted);max-width:64ch}
.cta-row{margin-top:1rem}
.btn{display:inline-block;padding:0.55rem 1rem;border-radius:8px;background:var(--accent);color:#fff;text-decoration:none;margin-right:0.5rem}
.btn.ghost{background:transparent;color:var(--accent);border:1px solid rgba(0,140,87,0.18)}

.tasks{padding:2.5rem 0}
.tasks h2{margin-top:0;color:var(--accent)}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem;margin-top:1rem}
.grid article{background:#fff;border-radius:10px;padding:1rem;border:1px solid #efefef}
.grid h3{margin:0 0 0.5rem;font-size:1.05rem;color:var(--accent)}
.grid p{margin:0;color:var(--muted)}

.team{padding:2.5rem 0}
.team h2{margin-top:0;color:var(--accent)}
.team-image{margin-top:1rem;border-radius:18px;overflow:hidden;box-shadow:0 16px 45px rgba(15,23,32,0.12)}
.team-image img{width:100%;height:auto;display:block}
.team-note{margin-top:0.75rem;color:var(--muted);max-width:60ch}

.site-footer{border-top:1px solid rgba(255,255,255,0.12);background:var(--footer-bg);padding:1rem 0;margin-top:2rem;color:#eee}
.footer-inner{display:flex;justify-content:space-between;align-items:center}
.social.small a{margin-left:0.75rem;color:rgba(255,255,255,0.78);text-decoration:none}

@media (max-width:640px){
  .header-inner{padding:0.75rem 0}
  .logo{height:58px}
  .hero{padding:2rem 0}
  .hero h1{font-size:1.5rem}
}
