:root{
  --bg:#ffffff;
  --text:#111827;
  --muted:#4b5563;
  --border:#e5e7eb;
  --card:#f9fafb;
  --link:#1d4ed8;
  --shadow:0 8px 26px rgba(0,0,0,.08);
  --radius:16px;
  --max:1100px;
  --headerH:150px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}

a{color:var(--link); text-decoration:none}
a:hover{text-decoration:underline}

.container{
  width: min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:var(--headerH);
  background:rgba(255,255,255,.94);
  border-bottom:1px solid var(--border);
  backdrop-filter:saturate(1.2) blur(8px);
  z-index:1000;
}

.header-inner{
  height:100%;
  display:grid;
  grid-template-columns: 1fr auto 180px;
  gap:16px;
  align-items:center;
}

.brand{
  padding-left:20px;
  min-width:0;
}

.brand-link{
  display:block;
  color:var(--text);
  font-size:15px;
  line-height:1.15;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.site-nav{
  display:flex;
  gap:14px;
  padding:0 8px;
  justify-content:center;
  align-items:center;
}

.nav-link{
  color:var(--text);
  font-size:14px;
  padding:8px 10px;
  border-radius:10px;
}

.nav-link:hover{
  background:var(--card);
  text-decoration:none;
}

.nav-link.active{
  background:var(--card);
  border:1px solid var(--border);
}

.logo-wrap{
  padding-right:20px;
  width:180px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.site-logo{
  width:156px;
  height:156px;
  object-fit:contain;
}

.page{
  padding-top: calc(var(--headerH) + 28px);
  padding-bottom: 140px;
}

.h1{
  font-size:34px;
  margin:0 0 10px 0;
}

.lead{
  color:var(--muted);
  font-size:16px;
  line-height:1.55;
  margin:0 0 18px 0;
}

.section{
  margin-top:26px;
}

.section-title{
  font-size:18px;
  margin:0 0 10px 0;
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}

.badge-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.badge{
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:999px;
  padding:10px 12px;
  font-size:14px;
  color:var(--text);
}

.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}

.btn{
  display:inline-block;
  border-radius:12px;
  padding:10px 14px;
  border:1px solid var(--border);
  background:#ffffff;
  color:var(--text);
  font-size:14px;
}

.btn.primary{
  background:var(--text);
  color:#ffffff;
  border-color:var(--text);
}

.btn:hover{
  text-decoration:none;
  opacity:.95;
}

.list{
  margin:0;
  padding-left:18px;
  color:var(--text);
}

.p{
  margin:0 0 10px 0;
  color:var(--text);
  line-height:1.6;
}

.muted{
  color:var(--muted);
}


.what-we-do-banner{
  width:100%;
  height:auto;
  border-radius:16px;
  border:1px solid var(--border);
  margin:12px 0 16px 0;
  box-shadow:var(--shadow);
}

.leader-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}

.person{
  display:flex;
  gap:12px;
  align-items:center;
}

.person img{
  width:110px;
  height:110px;
  border-radius:16px;
  object-fit:cover;
  border:1px solid var(--border);
  background:#ffffff;
}

.person .name{
  font-size:15px;
  margin:0;
}

.person .role{
  font-size:13px;
  margin:4px 0 0 0;
  color:var(--muted);
}

.form{
  display:grid;
  gap:10px;
}

.input, .textarea, .select{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#ffffff;
  font-size:14px;
}

.textarea{min-height:140px; resize:vertical}

.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

.notice{
  margin-top:10px;
  color:var(--muted);
  font-size:13px;
}

.site-footer{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  background:rgba(255,255,255,.96);
  border-top:1px solid var(--border);
  backdrop-filter:saturate(1.2) blur(8px);
  z-index:900;
}

.footer-inner{
  width: min(var(--max), calc(100% - 40px));
  margin:0 auto;
  padding:14px 0;
}

.footer-line{
  font-size:13px;
  color:var(--muted);
  line-height:1.35;
}

.footer-link{
  color:var(--muted);
}

.hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  align-items:stretch;
}

.hero-card{
  padding:22px;
}

.hero-side{
  display:grid;
  gap:12px;
}

.placeholder{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--card);
  padding:16px;
}

@media (max-width: 980px){
  .header-inner{grid-template-columns: 1fr auto}
  .site-nav{display:none}
  .hero{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .leader-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  :root{--headerH:78px}
}

/* About page */
.hero-about .hero-grid{grid-template-columns:1.15fr .85fr}
.hero-media img{width:100%;height:auto;border-radius:22px;box-shadow:var(--shadow);border:1px solid var(--border)}
.kpi-row{display:grid;gap:12px;margin-top:18px}
@media (min-width: 880px){
  .kpi-row{grid-template-columns:repeat(3,1fr)}
}
.kpi{background:var(--card);border:1px solid var(--border);border-radius:14px;padding:14px 14px}
.kpi-label{font-size:12px;letter-spacing:.06em;text-transform:uppercase;color:var(--muted);margin-bottom:6px}
.kpi-value{font-size:14px;line-height:1.35}

.about-grid{display:grid;gap:18px;align-items:start}
@media (min-width: 980px){
  .about-grid{grid-template-columns:280px 1fr}
  .toc{position:sticky;top:calc(var(--headerH) + 18px)}
}
.toc-card{background:var(--card);border:1px solid var(--border);border-radius:16px;padding:16px;box-shadow:var(--shadow)}
.toc-title{font-size:14px;color:var(--text);margin-bottom:10px}
.toc-link{display:block;padding:8px 10px;border-radius:10px;color:var(--text);text-decoration:none}
.toc-link:hover{background:#eef2ff;color:var(--link)}
.about-content{display:block}
.about-section{background:var(--bg);border:1px solid var(--border);border-radius:16px;padding:18px;margin-bottom:14px;box-shadow:0 6px 18px rgba(0,0,0,.05)}
.callout{background:#eef2ff;border:1px solid #c7d2fe;border-radius:14px;padding:14px}
.list{margin:10px 0 0 18px;color:var(--text)}
.list li{margin:6px 0}
