
:root{
  --navy:#102C3E;
  --green:#219653;
  --text:#0f172a;
  --muted:#f1f5f9;
  --card:#ffffff;
  --shadow:0 8px 24px rgba(16,44,62,.08);
  --radius:16px;
}
*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,'DejaVu Sans',sans-serif;
  color:var(--text);
  background:#fff;
}
a{color:var(--green);text-decoration:none}
a:hover{text-decoration:underline}
.wrap{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  background:#fff;
  border-bottom:1px solid #e5e7eb;
  z-index:20;
}
.header-inner{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
  min-width:0;
}
.brand .emblem{
  width:44px;
  height:44px;
  flex-shrink:0;
}
.brand .wordmark{
  height:44px;
  width:auto;
  max-width:360px;
  object-fit:contain;
  flex-shrink:1;
}
.topnav a{
  margin-left:18px;
  color:var(--navy);
  font-weight:600;
  white-space:nowrap;
}

/* HERO */
.hero{
  background:linear-gradient(180deg,#fff 0,#f7fafc 100%);
  padding:56px 0;
}
.hero-inner{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:24px;
  align-items:center;
}
.hero h1{
  color:var(--navy);
  font-size:44px;
  line-height:1.1;
  margin:0 0 12px;
}
.hero p{
  font-size:18px;
  opacity:.9;
  margin:0 0 16px;
}
.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.btn{
  display:inline-block;
  padding:10px 16px;
  border-radius:999px;
  font-weight:700;
  border:2px solid var(--green);
}
.btn.primary{
  background:var(--green);
  color:#fff;
}
.btn.outline{
  color:var(--green);
  background:#fff;
}

/* SECTIONS */
.section{
  padding:56px 0;
}
.section.muted{
  background:var(--muted);
}
h2{
  color:var(--navy);
  margin:0 0 16px;
}
.pillars{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin:16px 0 0;
  padding:0;
  list-style:disc inside;
}

/* TEAM CARDS */
.cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
.card{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}
.card h3{
  margin:0 0 4px;
  color:var(--navy);
}
.card h4{
  margin:0 0 10px;
  font-weight:600;
  color:#475569;
  font-size:14px;
}
.card .contact a{
  font-weight:600;
}

/* FOOTER */
.site-footer{
  border-top:1px solid #e5e7eb;
  padding:18px 0;
  margin-top:24px;
  color:#475569;
  font-size:14px;
  text-align:left;
}

/* RESPONSIVE */
@media (max-width:860px){
  .hero-inner{
    grid-template-columns:1fr;
  }
  .pillars{
    grid-template-columns:1fr;
  }
  .cards{
    grid-template-columns:1fr;
  }
  .brand .wordmark{
    max-width:260px;
    height:40px;
  }
}
