/* ================= BUILD Framework — Design Tokens ================= */
:root{
  --cream:#DED0A6;
  --cream-2:#D2C28E;
  --forest:#16302A;
  --forest-2:#0F241F;
  --forest-tint:#1D3D34;
  --gold:#C08A2E;
  --gold-light:#D9A94A;
  --white:#FFFFFF;
  --ink:#1E2823;
  --gray:#5C6660;
  --gray-light:#8A928C;
  --border:#C9B888;
  --radius-sm:8px;
  --radius-md:14px;
  --radius-lg:22px;
  --maxw:1240px;
  --shadow-card:0 10px 30px -12px rgba(22,48,42,.18);
}

*{box-sizing:border-box;margin:0;padding:0;}
nav.main-nav li,.mobile-nav li{list-style:none;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--cream);
  color:var(--ink);
  font-family:'Inter',sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;}
button{font-family:inherit;}

.wrap{max-width:var(--maxw);margin:0 auto;padding:0 32px;}

h1,h2,h3,h4{
  font-family:'Poppins',sans-serif;
  color:var(--forest);
  line-height:1.12;
}

.eyebrow{
  display:flex;align-items:center;gap:10px;
  color:var(--gold);
  font-size:12px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  margin-bottom:14px;
}
.eyebrow::before{content:"";width:22px;height:2px;background:var(--gold);display:inline-block;}
.eyebrow.center{justify-content:center;}
.eyebrow.center::before{margin-right:2px;}

.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:15px 28px;border-radius:8px;
  font-size:13px;font-weight:700;letter-spacing:.05em;text-transform:uppercase;
  cursor:pointer;border:1.5px solid transparent;
  transition:transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
  white-space:nowrap;
}
.btn svg{transition:transform .18s ease;}
.btn:hover svg{transform:translateX(3px);}
.btn-forest{background:var(--forest);color:var(--white);}
.btn-forest:hover{background:var(--forest-2);box-shadow:0 8px 20px -6px rgba(22,48,42,.45);}
.btn-outline{background:transparent;color:var(--forest);border-color:var(--forest);}
.btn-outline:hover{background:var(--forest);color:var(--white);}
.btn-gold{background:var(--gold);color:var(--forest-2);}
.btn-gold:hover{background:var(--gold-light);}

.link-arrow{
  display:inline-flex;align-items:center;gap:6px;
  color:var(--gold);font-size:12px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
}
.link-arrow svg{transition:transform .18s ease;}
.link-arrow:hover svg{transform:translateX(4px);}

/* ================= TOP BAR ================= */
.topbar{background:var(--forest-2);color:#D8DED9;padding:9px 0;font-size:12.5px;}
.topbar .wrap{display:flex;align-items:center;justify-content:space-between;}
.topbar-right{display:flex;align-items:center;gap:18px;}
.social-mini{display:flex;gap:10px;}
.social-mini a{
  width:26px;height:26px;border-radius:50%;background:rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;transition:background .15s ease;
}
.social-mini a:hover{background:var(--gold);color:var(--forest-2);}
.social-mini svg{width:13px;height:13px;}
.btn-mini{
  background:var(--gold);color:var(--forest-2);
  font-size:11px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  padding:8px 16px;border-radius:6px;
}
.btn-mini:hover{background:var(--gold-light);}

/* ================= HEADER ================= */
header{
  position:sticky;top:0;z-index:200;
  background:rgba(222,208,166,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
  transition:box-shadow .2s ease;
}
header.scrolled{box-shadow:0 6px 24px -14px rgba(22,48,42,.35);}
header .wrap{display:flex;align-items:center;justify-content:space-between;height:88px;}
.logo{display:flex;align-items:center;gap:12px;}
.logo-mark{
  width:44px;height:44px;flex:none;
  background:
    linear-gradient(135deg, transparent 46%, var(--gold) 46%, var(--gold) 54%, transparent 54%),
    linear-gradient(45deg, transparent 46%, var(--forest) 46%, var(--forest) 54%, transparent 54%);
  background-color:var(--white);
  border:2px solid var(--forest);
  border-radius:4px;
}
.logo-text{line-height:1;}
.logo-text .b1{font-family:'Poppins',sans-serif;font-weight:800;font-size:22px;color:var(--forest);letter-spacing:.01em;}
.logo-text .b1 span{color:var(--forest);}
.logo-text .b2{font-size:9px;letter-spacing:.3em;color:var(--gold);text-transform:uppercase;margin-top:4px;font-weight:700;}

nav.main-nav{display:flex;gap:34px;}
nav.main-nav a{
  position:relative;
  font-size:13.5px;font-weight:600;color:var(--ink);
  padding:6px 0;
}
nav.main-nav a::after{
  content:"";position:absolute;left:0;right:0;bottom:-4px;height:2px;background:var(--gold);
  transform:scaleX(0);transform-origin:left;transition:transform .2s ease;
}
nav.main-nav a:hover{color:var(--forest);}
nav.main-nav a:hover::after{transform:scaleX(1);}
nav.main-nav a.active{color:var(--forest);font-weight:700;}
nav.main-nav a.active::after{transform:scaleX(1);}

.header-right{display:flex;align-items:center;gap:22px;}
.icon-btn{
  width:38px;height:38px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  border:1.5px solid var(--border);color:var(--forest);
  cursor:pointer;transition:border-color .15s ease,background .15s ease;
  background:transparent;
}
.icon-btn:hover{border-color:var(--forest);background:var(--white);}
.icon-btn svg{width:16px;height:16px;}

.burger{display:none;flex-direction:column;gap:5px;cursor:pointer;width:38px;height:38px;align-items:center;justify-content:center;}
.burger span{width:20px;height:2px;background:var(--forest);display:block;transition:transform .25s ease, opacity .25s ease;}
.burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.burger.open span:nth-child(2){opacity:0;}
.burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

.mobile-nav{
  display:none;
  position:fixed;inset:88px 0 0 0;
  background:var(--cream);
  z-index:190;
  padding:36px 32px;
  flex-direction:column;gap:6px;
  transform:translateY(-12px);opacity:0;
  transition:transform .25s ease, opacity .25s ease;
  pointer-events:none;
}
.mobile-nav.open{transform:translateY(0);opacity:1;pointer-events:auto;}
.mobile-nav a{
  font-family:'Poppins',sans-serif;font-weight:700;font-size:22px;color:var(--forest);
  padding:14px 0;border-bottom:1px solid var(--border);
}
.mobile-nav .btn{margin-top:20px;justify-content:center;}

/* ================= HERO ================= */
.hero{
  background:var(--cream);
  min-height:640px;
  display:flex;
  align-items:center;
  position:relative;
}
.hero .wrap{
  width:100%;
  display:grid;grid-template-columns:1fr 1.15fr;gap:56px;align-items:center;
}
.hero-copy h1{font-size:clamp(38px,4.4vw,54px);font-weight:800;}
.hero-copy h1 .gold{color:var(--gold);}
.hero-copy p{
  color:var(--gray);font-size:16px;line-height:1.7;max-width:460px;margin:24px 0 34px;
}
.hero-btns{display:flex;gap:14px;flex-wrap:wrap;}

.hero-visual{position:relative;}
.hero-photo{
  border-radius:var(--radius-lg);
  overflow:hidden;aspect-ratio:5/4;
  box-shadow:var(--shadow-card);
}
.hero-photo img{width:100%;height:100%;object-fit:cover;}

.stat-bar{
  position:relative;
  margin-top:-64px;
  margin-left:6%;
  background:var(--forest);
  border-radius:var(--radius-md);
  display:grid;grid-template-columns:repeat(4,1fr);
  box-shadow:0 20px 40px -16px rgba(15,36,31,.5);
  overflow:hidden;
}
.stat{
  padding:26px 18px;text-align:center;color:var(--white);
  border-right:1px solid rgba(255,255,255,.12);
}
.stat:last-child{border-right:none;}
.stat svg{width:26px;height:26px;color:var(--gold);margin-bottom:10px;}
.stat .num{font-family:'Poppins',sans-serif;font-weight:800;font-size:22px;}
.stat .label{font-size:11.5px;color:#C9D2CC;margin-top:3px;line-height:1.35;}

/* ================= FRAMEWORK SECTION ================= */
.framework{padding:110px 0;background:var(--cream);}
.framework .wrap{display:grid;grid-template-columns:.85fr 1.5fr;gap:60px;}
.framework-head h2{font-size:30px;font-weight:800;margin-bottom:26px;}
.step-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:24px;}
.step-card{text-align:left;}
.step-ic{
  width:52px;height:52px;border-radius:50%;
  background:var(--cream-2);border:1.5px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  color:var(--forest);margin-bottom:18px;
}
.step-ic svg{width:22px;height:22px;}
.step-card h3{font-size:13px;font-weight:800;letter-spacing:.04em;text-transform:uppercase;margin-bottom:8px;color:var(--forest);}
.step-card p{font-size:13px;color:var(--gray);line-height:1.55;}

/* ================= WHO WE SERVE ================= */
.serve{
  position:relative;
  background:var(--forest);
  padding:80px 0;
  overflow:hidden;
}
.serve::before{
  content:"";position:absolute;inset:0;opacity:.05;
  background-image:repeating-linear-gradient(45deg, transparent, transparent 26px, #fff 26px, #fff 27px);
}
.serve .wrap{position:relative;}
.serve .eyebrow{color:var(--gold);margin-bottom:44px;}
.serve-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
}
.serve-item{
  padding:0 30px;text-align:center;color:var(--white);
  border-right:1px solid rgba(255,255,255,.14);
}
.serve-item:last-child{border-right:none;}
.serve-item .sic{color:var(--gold);margin-bottom:16px;}
.serve-item .sic svg{width:30px;height:30px;}
.serve-item h3{color:var(--white);font-size:18px;font-weight:700;margin-bottom:12px;}
.serve-item p{font-size:13.5px;color:#C9D2CC;line-height:1.6;}

/* ================= FEATURED PROGRAMS ================= */
.programs{padding:110px 0;background:var(--cream);}
.programs .wrap{display:grid;grid-template-columns:1fr 340px;gap:56px;align-items:start;}
.programs-head{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:32px;}
.programs-head h2{font-size:16px;letter-spacing:.02em;}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.card{
  background:var(--white);border-radius:var(--radius-md);overflow:hidden;
  box-shadow:var(--shadow-card);
  transition:transform .25s ease, box-shadow .25s ease;
}
.card:hover{transform:translateY(-6px);box-shadow:0 20px 40px -16px rgba(22,48,42,.28);}
.card-photo{aspect-ratio:4/3;overflow:hidden;}
.card-photo img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease;}
.card:hover .card-photo img{transform:scale(1.06);}
.card-body{padding:22px 22px 26px;}
.card-body h3{font-size:18px;font-weight:700;margin-bottom:8px;}
.card-body p{font-size:13.5px;color:var(--gray);line-height:1.55;margin-bottom:16px;min-height:42px;}

.resources h3{font-size:13px;color:var(--forest);font-weight:800;letter-spacing:.1em;text-transform:uppercase;margin-bottom:6px;}
.res-list{margin-top:18px;}
.res-item{
  display:flex;align-items:flex-start;gap:14px;
  padding:18px 0;border-top:1px solid var(--border);
  cursor:pointer;
}
.res-item:last-child{border-bottom:1px solid var(--border);}
.res-ic{
  width:36px;height:36px;border-radius:9px;background:var(--cream-2);
  display:flex;align-items:center;justify-content:center;flex:none;color:var(--forest);
}
.res-ic svg{width:17px;height:17px;}
.res-item .rtxt{flex:1;}
.res-item h4{font-size:14px;font-weight:700;margin-bottom:3px;}
.res-item p{font-size:12px;color:var(--gray);}
.res-item .chev{color:var(--gray-light);align-self:center;transition:transform .2s ease, color .2s ease;}
.res-item:hover .chev{transform:translateX(4px);color:var(--gold);}

/* ================= TRUSTED BY ================= */
.trusted{padding:0 0 70px;background:var(--cream);}
.trusted .eyebrow.center{justify-content:center;margin-bottom:36px;}
.trusted-logos{
  display:flex;align-items:center;justify-content:center;gap:56px;flex-wrap:wrap;
  opacity:.9;
}
.trusted-logos .wm{font-family:'Poppins',sans-serif;font-weight:800;font-size:20px;color:var(--ink);}
.trusted-logos .wm.giz{color:#D22630;}
.trusted-logos .wm.irembo{color:#1E7A4C;}
.trusted-logos .wm.aws{color:#111;font-weight:700;}
.trusted-logos .wm.google{font-weight:700;}
.trusted-logos .wm.google span:nth-child(1){color:#4285F4;}
.trusted-logos .wm.google span:nth-child(2){color:#EA4335;}
.trusted-logos .wm.google span:nth-child(3){color:#FBBC05;}
.trusted-logos .wm.google span:nth-child(4){color:#4285F4;}
.trusted-logos .wm.google span:nth-child(5){color:#34A853;}
.trusted-logos .wm.google span:nth-child(6){color:#EA4335;}
.trusted-logos .alu{font-family:'Poppins',sans-serif;font-weight:800;font-size:13px;line-height:1.25;color:var(--ink);text-align:left;}

/* ================= FOOTER ================= */
footer{background:var(--forest);padding:64px 0 24px;color:#C9D2CC;}
.footer-top{
  display:grid;grid-template-columns:1.5fr 1fr 1fr 1.3fr;gap:40px;padding-bottom:44px;
}
.footer-brand .logo-text .b1{color:var(--white);}
.footer-brand p{font-size:13px;margin-top:14px;line-height:1.6;max-width:220px;color:#B7C0BA;}
.footer-col h5{color:var(--gold);font-size:12px;letter-spacing:.1em;text-transform:uppercase;margin-bottom:18px;}
.footer-col li{margin-bottom:12px;font-size:13.5px;}
.footer-col a:hover{color:var(--gold);}
.newsletter p{font-size:13px;margin-bottom:16px;line-height:1.6;color:#B7C0BA;}
.subscribe{display:flex;border-radius:8px;overflow:hidden;border:1px solid rgba(255,255,255,.18);margin-bottom:18px;}
.subscribe input{
  flex:1;background:rgba(255,255,255,.06);border:none;padding:12px 14px;font-size:13px;color:var(--white);outline:none;
}
.subscribe input::placeholder{color:#8A968F;}
.subscribe button{
  background:var(--gold);border:none;width:46px;display:flex;align-items:center;justify-content:center;cursor:pointer;
  transition:background .15s ease;
}
.subscribe button:hover{background:var(--gold-light);}
.subscribe-msg{font-size:12px;color:var(--gold-light);min-height:16px;}
.footer-social{display:flex;gap:10px;}
.footer-social a{
  width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;transition:background .15s ease;
}
.footer-social a:hover{background:var(--gold);color:var(--forest-2);}
.footer-social svg{width:15px;height:15px;}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.14);padding-top:22px;
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;
  font-size:12px;color:#8A968F;
}
.footer-bottom .legal{display:flex;gap:22px;}
.footer-bottom .legal a:hover{color:var(--gold);}

/* ================= HILLS SILHOUETTE DIVIDERS ================= */
.hills-divider{
  position:relative;
  width:100%;
  line-height:0;
  background:var(--cream);
}
.hills-divider svg{width:100%;height:auto;display:block;}
.hills-divider.footer-hills{margin-bottom:-2px;}
.hills-divider.hero-hills{height:210px;}
.hills-divider.hero-hills svg{height:100%;}
@media (max-width:860px){.hills-divider.hero-hills{height:150px;}}
@media (max-width:640px){.hills-divider.hero-hills{height:110px;}}

/* ================= SCROLL REVEAL ================= */
[data-reveal]{opacity:0;transform:translateY(22px);transition:opacity .7s cubic-bezier(.2,.65,.3,1), transform .7s cubic-bezier(.2,.65,.3,1);}
[data-reveal].in-view{opacity:1;transform:translateY(0);}

/* ================= RESPONSIVE ================= */
@media (max-width:1080px){
  .hero{padding:48px 0;min-height:auto;}
  .hero .wrap{grid-template-columns:1fr;}
  .hero-visual{order:-1;max-width:560px;margin:0 auto;}
  .stat-bar{margin-left:0;}
  .framework .wrap{grid-template-columns:1fr;}
  .step-grid{grid-template-columns:repeat(3,1fr);}
  .serve-grid{grid-template-columns:repeat(2,1fr);gap:36px 0;}
  .serve-item{border-right:none;border-bottom:1px solid rgba(255,255,255,.14);padding-bottom:30px;}
  .serve-item:nth-child(2n){border-right:none;}
  .programs .wrap{grid-template-columns:1fr;}
  .cards{max-width:640px;}
}
@media (max-width:860px){
  nav.main-nav{display:none;}
  .burger{display:flex;}
  .mobile-nav{display:flex;}
  .step-grid{grid-template-columns:repeat(2,1fr);}
  .cards{grid-template-columns:1fr;max-width:420px;}
  .footer-top{grid-template-columns:1fr 1fr;}
  .stat-bar{grid-template-columns:repeat(2,1fr);}
  .stat:nth-child(2){border-right:none;}
}
@media (max-width:640px){
  .wrap{padding:0 20px;}
  header .wrap{height:76px;}
  .mobile-nav{inset:76px 0 0 0;}
  .topbar .wrap{flex-wrap:wrap;gap:8px;justify-content:center;text-align:center;}
  .hero{padding-top:36px;}
  .hero-btns .btn{flex:1;justify-content:center;}
  .step-grid{grid-template-columns:1fr 1fr;}
  .trusted-logos{gap:30px;}
  .footer-top{grid-template-columns:1fr;gap:34px;}
}
