<!doctype html>
<html class="no-js" lang="en">
    <head>
        






<script>
// hfaDataLayer
(()=>{"use strict";var e={d:(t,o)=>{for(var r in o)e.o(o,r)&&!e.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:o[r]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{hfaDataLayer:()=>r});let o=function(){};(o.prototype=new Array).collected=[],o.prototype.unloaded={},o.prototype.collect=function(e){if(!(e in o.prototype.collected)&&(o.prototype.collected.push(e),window.hfa)){const e=o.prototype.unload.call(this);e&&window.hfa.filter_hfadatalayer(e)}},o.prototype.unload=function(){const e=Array.prototype.shift.call(o.prototype.collected);return!!e&&(o.prototype.unloaded[e.unixtime]=e,e)},o.prototype.push=function(e){const t=Date.now();e.unixtime=t,Array.prototype.push.call(this,e),o.prototype.collect.call(this,e)};const r=new o;var l=window;for(var n in t)l[n]=t[n];t.__esModule&&Object.defineProperty(l,"__esModule",{value:!0})})();
// End hfaDataLayer

/**
 * This function is called in the onload attribute of all video_iframe instances It is
 * required for oilib.js versions after 21.07.16. Since oilib.js is called in the footer
 * and iframe onload events will occure before oilib has loaded, it is necessary to
 * define this function here
 */
oiVideoOnLoad = function(el) {
    el.dataset.iframeIsLoaded = true;
}



    window.dataLayer = window.dataLayer || [];
    
    window.dataLayer.push({"Environment": "production", "GoogleAnalytics": {"GA4id": "G-7P2DZY39BZ"}, "PageType": "BlogPostList"});
    

    
    window.oi_preload = {"oilib_version": "21.08.07", "map_key": "AIzaSyARTGOszeuylSqcgXjf168VCq0c-g9SMt8", "map_styles": [{"elementType": "geometry", "stylers": [{"color": "#f5f5f5"}]}, {"elementType": "labels.icon", "stylers": [{"visibility": "off"}]}, {"elementType": "labels.text.fill", "stylers": [{"color": "#616161"}]}, {"elementType": "labels.text.stroke", "stylers": [{"color": "#f5f5f5"}]}, {"featureType": "administrative", "elementType": "geometry.stroke", "stylers": [{"color": "#4c4c4c"}]}, {"featureType": "administrative.country", "elementType": "geometry.stroke", "stylers": [{"color": "#a8a8a8"}, {"visibility": "on"}]}, {"featureType": "administrative.land_parcel", "elementType": "labels.text.fill", "stylers": [{"color": "#bdbdbd"}]}, {"featureType": "poi", "elementType": "geometry", "stylers": [{"color": "#eeeeee"}]}, {"featureType": "poi", "elementType": "labels.text.fill", "stylers": [{"color": "#757575"}]}, {"featureType": "poi.park", "elementType": "geometry", "stylers": [{"color": "#e5e5e5"}]}, {"featureType": "poi.park", "elementType": "labels.text.fill", "stylers": [{"color": "#9e9e9e"}]}, {"featureType": "road", "elementType": "geometry", "stylers": [{"color": "#ffffff"}]}, {"featureType": "road.arterial", "elementType": "labels.text.fill", "stylers": [{"color": "#757575"}]}, {"featureType": "road.highway", "elementType": "geometry", "stylers": [{"color": "#dadada"}]}, {"featureType": "road.highway", "elementType": "labels.text.fill", "stylers": [{"color": "#616161"}]}, {"featureType": "road.local", "elementType": "labels.text.fill", "stylers": [{"color": "#9e9e9e"}]}, {"featureType": "transit.line", "elementType": "geometry", "stylers": [{"color": "#e5e5e5"}]}, {"featureType": "transit.station", "elementType": "geometry", "stylers": [{"color": "#eeeeee"}]}, {"featureType": "water", "elementType": "geometry", "stylers": [{"color": "#c9c9c9"}]}, {"featureType": "water", "elementType": "geometry.fill", "stylers": [{"color": "#cbd7d4"}]}, {"featureType": "water", "elementType": "labels.text.fill", "stylers": [{"color": "#9e9e9e"}]}], "dashboard_slug": "my-portal", "hfsid": 125, "oilib_path": "https://static.keystonecustomhome.com/assets/js/", "theme_environment": "production", "ga": {"GA4id": "G-7P2DZY39BZ"}};
    


</script>





<script type="text/javascript">

    /**
     * RU_VARNISH = True
     *
     * Immediate xhr request for retail user data so it can be included in Google
     * Analytics and Facebook Pixel data.
     */
    const fetchRetailUser = () => {
        return fetch("/xhr/user/", {
            headers: new Headers({
                'Accept': 'application/json',
                'X-Requested-With': 'XMLHttpRequest',
            })
        })
        .then((response) => response.json())
        .catch((e) => { console.log(e) })
        .then((data) => {
            let userdata = {"oiuser_init": true}
            if (data.data.retail_user) {
                window.dataLayer.push({
                    "RetailUser": "Yes",
                    "FacebookAMD": data.data.fbamd,
                    // https://developers.google.com/analytics/devguides/collection/gtagjs/cookies-user-id#set_user_id
                    "user_id": data.data.id,
                })
                if (data.data.user_type == "Team") {
                    window.dataLayer.push({
                        "TrafficType": "internal",
                    })
                }
                Object.assign(userdata, data.data)
                window.oi_preload.user_id = data.data.id
            }
            else {
                window.dataLayer.push({
                    "RetailUser": "No",
                })
                Object.assign(userdata, {
                    id: "anonymous",
                    faves: [],
                    user_type: false,
                })
            }
            return userdata;
        });
    };

    window.addEventListener("oiuser_changed", (e) => {
        const is_login_event = (!Boolean(window.oi_preload.user_id) && e.detail.user.authenticated);
        const is_logout_event = (Boolean(window.oi_preload.user_id) && !e.detail.user.authenticated);
        if (is_login_event) {
            if (window.dataLayer) {
                window.dataLayer.push({
                    "user_id": e.detail.user.id.toString(),
                    "RetailUser": "Yes",
                })
            }
            window.oi_preload.user_id = e.detail.user.id;
        }
        if (is_logout_event) {
            if (window.dataLayer) {
                window.dataLayer.push({
                    "user_id": "",
                    "RetailUser": "No",
                })
            }
            delete window.oi_preload.user_id;
        }
    });

    const initialUserFetch = fetchRetailUser();
    const ganalyticsLoaded = initialUserFetch.then((userdata) => {
        

        
            window.dataLayer=window.dataLayer||[];
            window.gtag=function(){dataLayer.push(arguments);}
            gtag('js',new Date());
            if (Number.isInteger(userdata.id)) {
                gtag('set', 'user_id', userdata.id.toString());
            }
            
                gtag('config', window.oi_preload.ga.GA4id, {
                    send_page_view: false,
                    transport_url: 'https://www.keystonecustomhome.com/firstparty/',
                });
            
        
        
            // Google Tag Gateway
            (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
            new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
            j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
            '/firstparty/?id='+i+dl;f.parentNode.insertBefore(j,f);
            })(window,document,'script','dataLayer','');
        

        
        return userdata
    })
</script>








<!-- A Google-specific tag to improve presence in Google Discover -->
<meta name="robots" content="max-image-preview:large" />





        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <title id="oi-page-title">Keystone Custom Homes | Blog</title>
        <meta name="description" content="The Keystone Custom Homes Blog. Discover new construction homes for sale in PA, MD, &amp; NC from an award-winning custom home builder. Create your custom...">
        <link rel="canonical" href="https://www.keystonecustomhome.com/blog/" />
        <meta id="oi-og-title" property="og:title" content="Keystone Custom Homes | Blog" />
        <meta property="og:site_name" content="Keystone Custom Homes" />
        <meta property="og:image" content="https://static.keystonecustomhome.com/keystone/images/keystone_ogimage.jpg" />
        <meta property="og:image:width" content="1920" />
        <meta property="og:image:height" content="1080" />
        <meta property="og:url" content="https://www.keystonecustomhome.com/blog/" />
        <meta property="og:type" content="website" />
        
        <meta property="og:description" content="The Keystone Custom Homes Blog. Discover new construction homes for sale in PA, MD, &amp; NC from an award-winning custom home builder. Create your custom..." />
        <meta name="twitter:card" content="summary_large_image" />
        <meta name="twitter:site" content="https://www.keystonecustomhome.com/blog/" />
        <meta id="oi-twitter-title" name="twitter:title" content="Keystone Custom Homes | Blog" />
        <meta name="twitter:description" content="The Keystone Custom Homes Blog. Discover new construction homes for sale in PA, MD, &amp; NC from an award-winning custom home builder. Create your custom..." />
        <meta name="twitter:image" content="https://static.keystonecustomhome.com/keystone/images/keystone_ogimage.jpg" />
        <meta name="twitter:domain" content="https://www.keystonecustomhome.com" />
        <link rel="apple-touch-icon" sizes="57x57" href="https://static.keystonecustomhome.com/keystone/images/favicons/apple-icon-57x57.png?v=1d6f8d2">
        <link rel="apple-touch-icon" sizes="60x60" href="https://static.keystonecustomhome.com/keystone/images/favicons/apple-icon-60x60.png?v=a5aa989">
        <link rel="apple-touch-icon" sizes="72x72" href="https://static.keystonecustomhome.com/keystone/images/favicons/apple-icon-72x72.png?v=5210daa">
        <link rel="apple-touch-icon" sizes="76x76" href="https://static.keystonecustomhome.com/keystone/images/favicons/apple-icon-76x76.png?v=9e53d3a">
        <link rel="apple-touch-icon" sizes="114x114" href="https://static.keystonecustomhome.com/keystone/images/favicons/apple-icon-114x114.png?v=73c348b">
        <link rel="apple-touch-icon" sizes="120x120" href="https://static.keystonecustomhome.com/keystone/images/favicons/apple-icon-120x120.png?v=6229e4f">
        <link rel="apple-touch-icon" sizes="144x144" href="https://static.keystonecustomhome.com/keystone/images/favicons/apple-icon-144x144.png?v=ad3384e">
        <link rel="apple-touch-icon" sizes="152x152" href="https://static.keystonecustomhome.com/keystone/images/favicons/apple-icon-152x152.png?v=9cce3ea">
        <link rel="apple-touch-icon" sizes="180x180" href="https://static.keystonecustomhome.com/keystone/images/favicons/apple-icon-180x180.png?v=aabbc2d">
        <link rel="icon" type="image/png" sizes="192x192"  href="https://static.keystonecustomhome.com/keystone/images/favicons/android-icon-192x192.png?v=0a98edf">
        <link rel="icon" type="image/png" sizes="32x32" href="https://static.keystonecustomhome.com/keystone/images/favicons/favicon-32x32.png?v=35c39eb">
        <link rel="icon" type="image/png" sizes="96x96" href="https://static.keystonecustomhome.com/keystone/images/favicons/favicon-96x96.png?v=ab307f6">
        <link rel="icon" type="image/png" sizes="16x16" href="https://static.keystonecustomhome.com/keystone/images/favicons/favicon-16x16.png?v=9197c9f">
        <link rel="manifest" href="https://static.keystonecustomhome.com/keystone/images/favicons/manifest.json?v=7929225">
        <meta name="msapplication-TileColor" content="#ffffff">
        <meta name="msapplication-TileImage" content="https://static.keystonecustomhome.com/keystone/images/favicons/ms-icon-144x144.png?v=ad3384e">
        <meta name="theme-color" content="#ffffff">
        <!-- Styles loaded via enqueue_style -->
    <link href="https://static.keystonecustomhome.com/keystone/css/vendor.min.css?v=9a6f51e" rel="stylesheet" type="text/css" />
    <link href="https://static.keystonecustomhome.com/keystone/css/style.min.css?v=bf9fae3" rel="stylesheet" type="text/css" />


        

        <!-- Client Scripts-->
        
            
        
        <!-- End Client Scripts -->
        
		<script>// Define a convenience method and use it
		const oiReady = (callback) => {
			if (document.readyState != "loading") callback();
			else document.addEventListener("DOMContentLoaded", callback);
		};
		oiReady(() => {
			
const blogFormEl = document.getElementById("blogSearchForm");
const blogSearchEl = document.getElementById("blogSearch");

blogSearchEl.addEventListener("keydown", (e) => {
    if (e.keyCode === 13) {
        e.preventDefault();
        submitSearch();
    }
});

blogFormEl.addEventListener("submit", (e) => {
    e.preventDefault();
    submitSearch();
});

function submitSearch() {
    let searchValue = blogSearchEl.value;
    window.location.href = `/blog/search/?q=${searchValue}`;
}

		});
		</script>
        
        <script type='application/ld+json'>{"@context": "https://schema.org", "@type": "Organization", "name": "Keystone Custom Homes", "url": "https://www.keystonecustomhome.com", "logo": {"@type": "ImageObject", "name": "Keystone Custom Homes Logo", "contentUrl": "https://media.keystonecustomhome.com/333/2026/3/31/k_logo.jpg?width=1200&height=1200&fit=bounds&ois=002967f"}, "isicV4": "4100", "sameAs": ["https://www.facebook.com/keystonecustomhomes/", "https://www.instagram.com/kchhomes/", "https://www.youtube.com/user/KeystoneCustomHomes", "https://www.houzz.com/pro/keystonecustomhomespa", "https://www.pinterest.com/kchomes/", "https://www.linkedin.com/company/keystone-custom-homes/"]}</script>
        
        <script>
            (function (w,d,o,u,a,m) {
                w[o]=w[o]||function(){(w[o].q=w[o].q||[]).push(arguments);
                },w[o].e=1*new Date();w[o].u=u;a=d.createElement('script'),
                m=d.getElementsByTagName('script')[0];a.async=1;
                a.src=u+'/mcfx.js';m.parentNode.insertBefore(a, m);
            })(window, document, 'mcfx', 'https://kch.keystonecustomhome.com');
            mcfx('create', {siteId:5303,modules:["view","forms","reviews"],urlComparedBy:"uri"});
        </script>
		



    

    

    

    




    
        
    
        
    
        
    
        
    






<!-- Facebook Pixel Code -->

<script>
    

    const fbpixelLoaded = initialUserFetch.then((userdata) => {
        
        !function(f,b,e,v,n,t,s)
        {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
        n.callMethod.apply(n,arguments):n.queue.push(arguments)};
        if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
        n.agent='fmc-878120572226241';
        n.queue=[];t=b.createElement(e);t.async=!0;
        t.src=v;s=b.getElementsByTagName(e)[0];
        s.parentNode.insertBefore(t,s)}(window, document,'script',
        'https://connect.facebook.net/en_US/fbevents.js');
        
        const amdDLV = (dataLayer) ? dataLayer[0].FacebookAMD||{} : {}
        const amd = userdata.fbamd || amdDLV
        
            
                fbq('init', '1744731879076353', amd);
            
        
        
        
        return userdata
    })
</script>

<!-- End Facebook Pixel Code -->


<meta name="generator" content="Homefiniti" />

    </head>
    <body class="blog-list blog">
        

        <nav id="site-nav" class="nav-solid">
    <div class="container hp-sub-header-container mx-w-1100">
        <div class="d-flex justify-content-between align-items-center" id="main-navigation">
            <ul class="py-1 mb-0 ps-0">
                <li>
                    <a href="/" class="d-inline-block" title="Home Page"><img src="https://static.keystonecustomhome.com/keystone/images/keystone-logo.png?v=dceda56" alt="Keystone Custom Homes logo" class="logo-class position-relative" loading="eager"></a>
                </li>
            </ul>
            <ul class="sub-header-nav ps-0 mb-0">
                <li>
                    <div class="menu-icon">
                        <input class="menu-icon-cheeckbox" type="checkbox" id="menu-btn-nd">
                        <label class="menu-text text-white text-end f-14 me-2" for="menu-btn-nd">MENU&nbsp;
                            <div class="menu-text-icon z-1">
                                <span></span>
                                <span></span>
                                <span></span>
                            </div>
                        </label>
                        <div id="subheader-navigation-nav" class="header navigation-nav position-fixed vh-100 bg-primary text-white">
                            <ul class="navigation-list position-absolute text-start">
                                
                                    <li class="mb-4"><a class="text-white display-8" href="/find-your-home/">Find Your Home</a></li>
                                    
                                        <li class="mb-1"><a class="text-white f-14 opacity-60" href="/find-your-home/">Where We Build</a></li>
                                    
                                        <li class="mb-1"><a class="text-white f-14 opacity-60" href="/quick-move-in/">Move-In Ready Homes</a></li>
                                    
                                        <li class="mb-1"><a class="text-white f-14 opacity-60" href="/model-homes/">Model Homes</a></li>
                                    
                                        <li class="mb-1"><a class="text-white f-14 opacity-60" href="/find-your-home/home-models-search/">Floorplan Search</a></li>
                                    
                                        <li class="mb-1"><a class="text-white f-14 opacity-60" href="/on-your-lot/">On Your Lot</a></li>
                                    
                                        <li class="mb-1"><a class="text-white f-14 opacity-60" href="/find-your-home/media-gallery/photos/">Photo Gallery</a></li>
                                    
                                        <li class="mb-1"><a class="text-white f-14 opacity-60" href="/virtual-tours/">Virtual Tours</a></li>
                                    
                                        <li class="mb-1"><a class="text-white f-14 opacity-60" href="/video-gallery/">Video Gallery</a></li>
                                    
                                    <hr class="navigation-hr my-4 opacity-20">
                                
                                
                                    <li class="mb-4"><a class="text-white display-8" href="/building-process/">Personalize Your Home</a></li>
                                    
                                        <li class="mb-1"><a class="text-white f-14 opacity-60" href="/building-process/">Building Process</a></li>
                                    
                                        <li class="mb-1"><a class="text-white f-14 opacity-60" href="/my-key-choices/">My KeyChoices</a></li>
                                    
                                        <li class="mb-1"><a class="text-white f-14 opacity-60" href="/design-studio/">Design Studio</a></li>
                                    
                                    <hr class="navigation-hr my-4 opacity-20">
                                
                                
                                    <li class="mb-4"><a class="text-white display-8" href="/about-us/">Why Keystone</a></li>
                                    
                                        <li class="mb-1"><a class="text-white f-14 opacity-60" href="/about-us/">About Us</a></li>
                                    
                                        <li class="mb-1"><a class="text-white f-14 opacity-60" href="/faqs/">FAQs</a></li>
                                    
                                        <li class="mb-1"><a class="text-white f-14 opacity-60" href="/why-keystone/">Why Keystone</a></li>
                                    
                                        <li class="mb-1"><a class="text-white f-14 opacity-60" href="/build-your-home/">How We Build</a></li>
                                    
                                        <li class="mb-1"><a class="text-white f-14 opacity-60" href="/testimonials/">Testimonials</a></li>
                                    
                                        <li class="mb-1"><a class="text-white f-14 opacity-60" href="/for-home-owners/">New Homebuyer Resources</a></li>
                                    
                                        <li class="mb-1"><a class="text-white f-14 opacity-60" href="/blog/">Keystone Blog</a></li>
                                    
                                        <li class="mb-1"><a class="text-white f-14 opacity-60" href="/careers/">Careers</a></li>
                                    
                                    
                                    
                                            <li class="mb-1 d-block d-md-none"><a class="text-white f-14 opacity-60" href="/land-acquisition/">Land Acquisition</a></li>
                                        
                                            <li class="mb-1 d-block d-md-none"><a class="text-white f-14 opacity-60" href="/trade-partners/">Trade Partners</a></li>
                                        
                                    
                                    <hr class="navigation-hr my-4 opacity-20">
                                
                                
                                    <li class="mb-3 text-white f-14"><a href="tel:7173689831" class="text-white oi-click-to-call">717-368-9831</a></li>
                                
                                
                                <li class="mb-3">
                                    <a href="#" data-bs-toggle="modal" data-bs-target="#oscModal" class="text-white f-14">
                                        Contact Us
                                    </a>
                                </li>
                                
                                <li class="nav-item" data-oi-user-showto="anon" style="display:none">
                                    <a href="#" class="join oi-login-link text-white f-14">Login/Join</a>
                                </li>
                                <li class="nav-item" data-oi-user-showto="auth" style="display:none">
                                    <a href="/my-portal/" class="text-white f-14">My Dashboard</a>
                                </li>

                                <li class="mb-3">&nbsp;</li>
                            </ul>
                        </div>
                    </div>
                </li>
            </ul>
        </div>
    </div>
</nav>
        


	
		<section class="offset-nav">
			<div class="oi-aspect four-one page-hero">
				<img src="https://media.keystonecustomhome.com/333/2022/10/12/KitchenVig_small.jpg?width=1920&amp;height=1282&amp;fit=bounds&amp;ois=03c9d75" srcset="https://media.keystonecustomhome.com/333/2022/10/12/KitchenVig_small.jpg?width=300&amp;height=200&amp;fit=bounds&amp;ois=dd8370c 300w, https://media.keystonecustomhome.com/333/2022/10/12/KitchenVig_small.jpg?width=400&amp;height=267&amp;fit=bounds&amp;ois=8e6c764 400w, https://media.keystonecustomhome.com/333/2022/10/12/KitchenVig_small.jpg?width=1000&amp;height=667&amp;fit=bounds&amp;ois=8e0e344 1000w, https://media.keystonecustomhome.com/333/2022/10/12/KitchenVig_small.jpg?width=1920&amp;height=1282&amp;fit=bounds&amp;ois=03c9d75 1920w" sizes="(min-width: 1400px) 3840px, 100vw" loading="eager" class="oi-aspect-img" alt="Modern kitchen with white cabinets, black island, marble countertops, and glass pendant lights">
				<div class="oi-aspect-content">
					<div class="container mx-w-1100">
						<div class="row">
							<div class="col-12">
								<p class="blog-list-hero-title">Keystone Blog</p>
							</div>
						</div>
					</div>
				</div>
			</div>
		</section>
	


<section class="py-7">
    <div class="container mx-w-1170">
        <div class="row g-0">
            <div class="col-12 col-lg-8">
                
                
                
                <div class="my-7">
                    <h2 class="featured-title lh-50 fw-light mb-6">Most Recent Posts</h2>
                </div>
                
                
                <div class="mb-7 px-4">
    <div class="row post-card ">
        
            <div class="col-12 col-md-5 ps-0">
                <div class="oi-aspect sixteen-nine h-100">
                    <img src="https://media.keystonecustomhome.com/333/2026/5/14/keystone_4_of_18.png?width=937&amp;height=750&amp;fit=bounds&amp;ois=fa2ce98" srcset="https://media.keystonecustomhome.com/333/2026/5/14/keystone_4_of_18.png?width=300&amp;height=240&amp;fit=bounds&amp;ois=863fbfc 300w, https://media.keystonecustomhome.com/333/2026/5/14/keystone_4_of_18.png?width=375&amp;height=300&amp;fit=bounds&amp;ois=ceaadf7 400w, https://media.keystonecustomhome.com/333/2026/5/14/keystone_4_of_18.png?width=937&amp;height=750&amp;fit=bounds&amp;ois=fa2ce98 1000w, https://media.keystonecustomhome.com/333/2026/5/14/keystone_4_of_18.png?width=1800&amp;height=1440&amp;fit=bounds&amp;ois=99905d9 1920w" sizes="(min-width: 1400px) 2000px, 100vw" loading="lazy" class="oi-aspect-img" alt="Four men talking at an indoor real estate or home builder networking event with display boards in the background.">
                    <div class="post-date position-absolute r-0 bg-orange text-white f-18 px-4 py-3 text-center lh-19">
                        <div>May</div>
                        <div>15</div>
                        <div>2026</div>
                    </div>
                </div>
            </div>
        
        <div class="col-12 col-md-7">
            <div class="px-4 py-3 py-xl-5">
                <p class="text-blog-blue f-22 lh-36">2026 Charlotte Trade Partner Breakfast</p>
                
                    <p class="text-primary f-17">Category:
                        
                            <a href="/blog/category/events/" class="d-inline-block text-primary">Events</a>
                        
                    </p>
                
                
                <a href="https://www.keystonecustomhome.com/blog/2026-charlotte-trade-partner-breakfast/" class="text-orange-light  f-22 ls-1 mt-4 mb-0">
                    <span class="me-3">READ POST</span>
                    <svg version="1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 127 125" width="22px"><path d="M63.8.2c-28.2 0-52 18.9-59.5 44.6h5.2C16.9 21.9 38.4 5.2 63.8 5.2c31.4 0 57 25.6 57 57s-25.6 57-57 57c-25.4 0-46.9-16.7-54.3-39.6H4.3c7.5 25.7 31.4 44.6 59.5 44.6 34.2 0 62-27.8 62-62 0-34.1-27.8-62-62-62z"></path><path d="M51.3 35.3l-3.1 4 26.1 20.5H1.9v5h72.4L48.2 85.3l3.1 3.9 34.3-26.9"></path></svg>
                </a>
            </div>
        </div>
    </div>
    <script type='application/ld+json'>{"@context": "https://schema.org", "@type": "NewsArticle", "mainEntityOfPage": {"@type": "WebPage", "@id": "https://www.keystonecustomhome.com/blog/2026-charlotte-trade-partner-breakfast/"}, "headline": "2026 Charlotte Trade Partner Breakfast", "image": ["https://media.keystonecustomhome.com/333/2026/5/14/keystone_4_of_18.png"], "datePublished": "2026-05-15T05:00:00+00:00", "dateModified": "2026-05-14T21:45:24.018273+00:00", "publisher": {"@type": "Organization", "name": "Keystone Custom Homes"}}</script>
</div>

                
                
                
                <div class="mb-7 px-4">
    <div class="row post-card ">
        
            <div class="col-12 col-md-5 ps-0">
                <div class="oi-aspect sixteen-nine h-100">
                    <img src="https://media.keystonecustomhome.com/333/2026/5/14/nicokam_260509_105_PP-Perkasie.jpg?width=937&amp;height=750&amp;fit=bounds&amp;ois=e4f717b" srcset="https://media.keystonecustomhome.com/333/2026/5/14/nicokam_260509_105_PP-Perkasie.jpg?width=300&amp;height=240&amp;fit=bounds&amp;ois=ecac93b 300w, https://media.keystonecustomhome.com/333/2026/5/14/nicokam_260509_105_PP-Perkasie.jpg?width=375&amp;height=300&amp;fit=bounds&amp;ois=4c94293 400w, https://media.keystonecustomhome.com/333/2026/5/14/nicokam_260509_105_PP-Perkasie.jpg?width=937&amp;height=750&amp;fit=bounds&amp;ois=e4f717b 1000w, https://media.keystonecustomhome.com/333/2026/5/14/nicokam_260509_105_PP-Perkasie.jpg?width=1800&amp;height=1440&amp;fit=bounds&amp;ois=d23d52e 1920w" sizes="(min-width: 1400px) 2000px, 100vw" loading="lazy" class="oi-aspect-img" alt="Couple celebrating next to a Keystone Custom Homes sold sign for homesite 18 with colorful confetti falling">
                    <div class="post-date position-absolute r-0 bg-orange text-white f-18 px-4 py-3 text-center lh-19">
                        <div>May</div>
                        <div>14</div>
                        <div>2026</div>
                    </div>
                </div>
            </div>
        
        <div class="col-12 col-md-7">
            <div class="px-4 py-3 py-xl-5">
                <p class="text-blog-blue f-22 lh-36">Enclave at Everleigh Woods Paving Party</p>
                
                    <p class="text-primary f-17">Category:
                        
                            <a href="/blog/category/events/" class="d-inline-block text-primary">Events</a>
                        
                    </p>
                
                
                <a href="https://www.keystonecustomhome.com/blog/enclave-at-everleigh-woods-paving-party/" class="text-orange-light  f-22 ls-1 mt-4 mb-0">
                    <span class="me-3">READ POST</span>
                    <svg version="1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 127 125" width="22px"><path d="M63.8.2c-28.2 0-52 18.9-59.5 44.6h5.2C16.9 21.9 38.4 5.2 63.8 5.2c31.4 0 57 25.6 57 57s-25.6 57-57 57c-25.4 0-46.9-16.7-54.3-39.6H4.3c7.5 25.7 31.4 44.6 59.5 44.6 34.2 0 62-27.8 62-62 0-34.1-27.8-62-62-62z"></path><path d="M51.3 35.3l-3.1 4 26.1 20.5H1.9v5h72.4L48.2 85.3l3.1 3.9 34.3-26.9"></path></svg>
                </a>
            </div>
        </div>
    </div>
    <script type='application/ld+json'>{"@context": "https://schema.org", "@type": "NewsArticle", "mainEntityOfPage": {"@type": "WebPage", "@id": "https://www.keystonecustomhome.com/blog/enclave-at-everleigh-woods-paving-party/"}, "headline": "Enclave at Everleigh Woods Paving Party", "image": ["https://media.keystonecustomhome.com/333/2026/5/14/nicokam_260509_105_PP-Perkasie.jpg"], "datePublished": "2026-05-14T05:00:00+00:00", "dateModified": "2026-05-14T20:54:04.192983+00:00", "publisher": {"@type": "Organization", "name": "Keystone Custom Homes"}}</script>
</div>

                
                
                
                <div class="mb-7 px-4">
    <div class="row post-card ">
        
            <div class="col-12 col-md-5 ps-0">
                <div class="oi-aspect sixteen-nine h-100">
                    <img src="https://media.keystonecustomhome.com/333/2026/5/12/Keystone_Custom_Management___ARBOR_GATE-158.jpg?width=1000&amp;height=666&amp;fit=bounds&amp;ois=32b6f64" srcset="https://media.keystonecustomhome.com/333/2026/5/12/Keystone_Custom_Management___ARBOR_GATE-158.jpg?width=300&amp;height=200&amp;fit=bounds&amp;ois=f28970c 300w, https://media.keystonecustomhome.com/333/2026/5/12/Keystone_Custom_Management___ARBOR_GATE-158.jpg?width=400&amp;height=266&amp;fit=bounds&amp;ois=9f975e2 400w, https://media.keystonecustomhome.com/333/2026/5/12/Keystone_Custom_Management___ARBOR_GATE-158.jpg?width=1000&amp;height=666&amp;fit=bounds&amp;ois=32b6f64 1000w, https://media.keystonecustomhome.com/333/2026/5/12/Keystone_Custom_Management___ARBOR_GATE-158.jpg?width=1920&amp;height=1280&amp;fit=bounds&amp;ois=f507f44 1920w" sizes="(min-width: 1400px) 2000px, 100vw" loading="lazy" class="oi-aspect-img" alt="Smiling man holding a flower bouquet at an outdoor home builder event with a white model home in the background.">
                    <div class="post-date position-absolute r-0 bg-orange text-white f-18 px-4 py-3 text-center lh-19">
                        <div>May</div>
                        <div>12</div>
                        <div>2026</div>
                    </div>
                </div>
            </div>
        
        <div class="col-12 col-md-7">
            <div class="px-4 py-3 py-xl-5">
                <p class="text-blog-blue f-22 lh-36">Arbor Gate In Bloom!</p>
                
                    <p class="text-primary f-17">Category:
                        
                            <a href="/blog/category/events/" class="d-inline-block text-primary">Events</a>
                        
                    </p>
                
                
                <a href="https://www.keystonecustomhome.com/blog/arbor-gate-in-bloom/" class="text-orange-light  f-22 ls-1 mt-4 mb-0">
                    <span class="me-3">READ POST</span>
                    <svg version="1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 127 125" width="22px"><path d="M63.8.2c-28.2 0-52 18.9-59.5 44.6h5.2C16.9 21.9 38.4 5.2 63.8 5.2c31.4 0 57 25.6 57 57s-25.6 57-57 57c-25.4 0-46.9-16.7-54.3-39.6H4.3c7.5 25.7 31.4 44.6 59.5 44.6 34.2 0 62-27.8 62-62 0-34.1-27.8-62-62-62z"></path><path d="M51.3 35.3l-3.1 4 26.1 20.5H1.9v5h72.4L48.2 85.3l3.1 3.9 34.3-26.9"></path></svg>
                </a>
            </div>
        </div>
    </div>
    <script type='application/ld+json'>{"@context": "https://schema.org", "@type": "NewsArticle", "mainEntityOfPage": {"@type": "WebPage", "@id": "https://www.keystonecustomhome.com/blog/arbor-gate-in-bloom/"}, "headline": "Arbor Gate In Bloom!", "image": ["https://media.keystonecustomhome.com/333/2026/5/12/Keystone_Custom_Management___ARBOR_GATE-158.jpg"], "datePublished": "2026-05-12T05:00:00+00:00", "dateModified": "2026-05-13T01:44:18.134845+00:00", "publisher": {"@type": "Organization", "name": "Keystone Custom Homes"}}</script>
</div>

                
                
                
                <div class="mb-7 px-4">
    <div class="row post-card ">
        
            <div class="col-12 col-md-5 ps-0">
                <div class="oi-aspect sixteen-nine h-100">
                    <img src="https://media.keystonecustomhome.com/333/2026/5/6/Keystone_Custom_Management___Windermere_Farms-55.jpg?width=1000&amp;height=666&amp;fit=bounds&amp;ois=2b70c83" srcset="https://media.keystonecustomhome.com/333/2026/5/6/Keystone_Custom_Management___Windermere_Farms-55.jpg?width=300&amp;height=200&amp;fit=bounds&amp;ois=4514436 300w, https://media.keystonecustomhome.com/333/2026/5/6/Keystone_Custom_Management___Windermere_Farms-55.jpg?width=400&amp;height=266&amp;fit=bounds&amp;ois=cd4fc6f 400w, https://media.keystonecustomhome.com/333/2026/5/6/Keystone_Custom_Management___Windermere_Farms-55.jpg?width=1000&amp;height=666&amp;fit=bounds&amp;ois=2b70c83 1000w, https://media.keystonecustomhome.com/333/2026/5/6/Keystone_Custom_Management___Windermere_Farms-55.jpg?width=1920&amp;height=1280&amp;fit=bounds&amp;ois=844bd85 1920w" sizes="(min-width: 1400px) 2000px, 100vw" loading="lazy" class="oi-aspect-img" alt="Four people gathered under a canopy tent at a construction site with pastries on a table nearby.">
                    <div class="post-date position-absolute r-0 bg-orange text-white f-18 px-4 py-3 text-center lh-19">
                        <div>May</div>
                        <div>08</div>
                        <div>2026</div>
                    </div>
                </div>
            </div>
        
        <div class="col-12 col-md-7">
            <div class="px-4 py-3 py-xl-5">
                <p class="text-blog-blue f-22 lh-36">Windermere Farms Paving Party</p>
                
                    <p class="text-primary f-17">Category:
                        
                            <a href="/blog/category/events/" class="d-inline-block text-primary">Events</a>
                        
                    </p>
                
                
                <a href="https://www.keystonecustomhome.com/blog/windermere-farms-paving-party/" class="text-orange-light  f-22 ls-1 mt-4 mb-0">
                    <span class="me-3">READ POST</span>
                    <svg version="1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 127 125" width="22px"><path d="M63.8.2c-28.2 0-52 18.9-59.5 44.6h5.2C16.9 21.9 38.4 5.2 63.8 5.2c31.4 0 57 25.6 57 57s-25.6 57-57 57c-25.4 0-46.9-16.7-54.3-39.6H4.3c7.5 25.7 31.4 44.6 59.5 44.6 34.2 0 62-27.8 62-62 0-34.1-27.8-62-62-62z"></path><path d="M51.3 35.3l-3.1 4 26.1 20.5H1.9v5h72.4L48.2 85.3l3.1 3.9 34.3-26.9"></path></svg>
                </a>
            </div>
        </div>
    </div>
    <script type='application/ld+json'>{"@context": "https://schema.org", "@type": "NewsArticle", "mainEntityOfPage": {"@type": "WebPage", "@id": "https://www.keystonecustomhome.com/blog/windermere-farms-paving-party/"}, "headline": "Windermere Farms Paving Party", "image": ["https://media.keystonecustomhome.com/333/2026/5/6/Keystone_Custom_Management___Windermere_Farms-55.jpg"], "datePublished": "2026-05-08T05:00:00+00:00", "dateModified": "2026-05-08T13:15:00.826138+00:00", "publisher": {"@type": "Organization", "name": "Keystone Custom Homes"}}</script>
</div>

                
                
                
                <div class="mb-7 px-4">
    <div class="row post-card ">
        
            <div class="col-12 col-md-5 ps-0">
                <div class="oi-aspect sixteen-nine h-100">
                    <img src="https://media.keystonecustomhome.com/333/2026/5/5/28-1058_1.jpg?width=1000&amp;height=666&amp;fit=bounds&amp;ois=1654d44" srcset="https://media.keystonecustomhome.com/333/2026/5/5/28-1058_1.jpg?width=300&amp;height=199&amp;fit=bounds&amp;ois=937423e 300w, https://media.keystonecustomhome.com/333/2026/5/5/28-1058_1.jpg?width=400&amp;height=266&amp;fit=bounds&amp;ois=8bc0514 400w, https://media.keystonecustomhome.com/333/2026/5/5/28-1058_1.jpg?width=1000&amp;height=666&amp;fit=bounds&amp;ois=1654d44 1000w, https://media.keystonecustomhome.com/333/2026/5/5/28-1058_1.jpg?width=1920&amp;height=1279&amp;fit=bounds&amp;ois=d330bb3 1920w" sizes="(min-width: 1400px) 2000px, 100vw" loading="lazy" class="oi-aspect-img" alt="Two-story home with stone and shingle exterior, two-car garage, and covered front porch">
                    <div class="post-date position-absolute r-0 bg-orange text-white f-18 px-4 py-3 text-center lh-19">
                        <div>May</div>
                        <div>07</div>
                        <div>2026</div>
                    </div>
                </div>
            </div>
        
        <div class="col-12 col-md-7">
            <div class="px-4 py-3 py-xl-5">
                <p class="text-blog-blue f-22 lh-36">Philadelphia Rural Living</p>
                
                    <p class="text-primary f-17">Category:
                        
                            <a href="/blog/category/awards/" class="d-inline-block text-primary">Awards</a>
                        
                    </p>
                
                
                <a href="https://www.keystonecustomhome.com/blog/philadelphia-rural-living/" class="text-orange-light  f-22 ls-1 mt-4 mb-0">
                    <span class="me-3">READ POST</span>
                    <svg version="1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 127 125" width="22px"><path d="M63.8.2c-28.2 0-52 18.9-59.5 44.6h5.2C16.9 21.9 38.4 5.2 63.8 5.2c31.4 0 57 25.6 57 57s-25.6 57-57 57c-25.4 0-46.9-16.7-54.3-39.6H4.3c7.5 25.7 31.4 44.6 59.5 44.6 34.2 0 62-27.8 62-62 0-34.1-27.8-62-62-62z"></path><path d="M51.3 35.3l-3.1 4 26.1 20.5H1.9v5h72.4L48.2 85.3l3.1 3.9 34.3-26.9"></path></svg>
                </a>
            </div>
        </div>
    </div>
    <script type='application/ld+json'>{"@context": "https://schema.org", "@type": "NewsArticle", "mainEntityOfPage": {"@type": "WebPage", "@id": "https://www.keystonecustomhome.com/blog/philadelphia-rural-living/"}, "headline": "Philadelphia Rural Living", "image": ["https://media.keystonecustomhome.com/333/2026/5/5/28-1058_1.jpg"], "datePublished": "2026-05-07T05:00:00+00:00", "dateModified": "2026-05-12T13:53:21.837734+00:00", "publisher": {"@type": "Organization", "name": "Keystone Custom Homes"}}</script>
</div>

                
                
                
                <div class="mb-7 px-4">
    <div class="row post-card ">
        
            <div class="col-12 col-md-5 ps-0">
                <div class="oi-aspect sixteen-nine h-100">
                    <img src="https://media.keystonecustomhome.com/333/2026/5/5/01-moving-to-lake-norman-your-guide-to-life-on-north-carolinas-favorite-lake.jpg?width=1000&amp;height=500&amp;fit=bounds&amp;ois=a8bebad" srcset="https://media.keystonecustomhome.com/333/2026/5/5/01-moving-to-lake-norman-your-guide-to-life-on-north-carolinas-favorite-lake.jpg?width=300&amp;height=150&amp;fit=bounds&amp;ois=cf6e3aa 300w, https://media.keystonecustomhome.com/333/2026/5/5/01-moving-to-lake-norman-your-guide-to-life-on-north-carolinas-favorite-lake.jpg?width=400&amp;height=200&amp;fit=bounds&amp;ois=a28dba5 400w, https://media.keystonecustomhome.com/333/2026/5/5/01-moving-to-lake-norman-your-guide-to-life-on-north-carolinas-favorite-lake.jpg?width=1000&amp;height=500&amp;fit=bounds&amp;ois=a8bebad 1000w, https://media.keystonecustomhome.com/333/2026/5/5/01-moving-to-lake-norman-your-guide-to-life-on-north-carolinas-favorite-lake.jpg?width=1200&amp;height=600&amp;fit=bounds&amp;ois=9402e22 1920w" sizes="(min-width: 1400px) 2000px, 100vw" loading="lazy" class="oi-aspect-img" alt="Aerial view of a lakeside residential community surrounded by trees and open green space">
                    <div class="post-date position-absolute r-0 bg-orange text-white f-18 px-4 py-3 text-center lh-19">
                        <div>May</div>
                        <div>05</div>
                        <div>2026</div>
                    </div>
                </div>
            </div>
        
        <div class="col-12 col-md-7">
            <div class="px-4 py-3 py-xl-5">
                <p class="text-blog-blue f-22 lh-36">Moving to Lake Norman: Your Guide to Life on North Carolina's Favorite Lake</p>
                
                
                <a href="https://www.keystonecustomhome.com/blog/moving-to-lake-norman/" class="text-orange-light  f-22 ls-1 mt-4 mb-0">
                    <span class="me-3">READ POST</span>
                    <svg version="1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 127 125" width="22px"><path d="M63.8.2c-28.2 0-52 18.9-59.5 44.6h5.2C16.9 21.9 38.4 5.2 63.8 5.2c31.4 0 57 25.6 57 57s-25.6 57-57 57c-25.4 0-46.9-16.7-54.3-39.6H4.3c7.5 25.7 31.4 44.6 59.5 44.6 34.2 0 62-27.8 62-62 0-34.1-27.8-62-62-62z"></path><path d="M51.3 35.3l-3.1 4 26.1 20.5H1.9v5h72.4L48.2 85.3l3.1 3.9 34.3-26.9"></path></svg>
                </a>
            </div>
        </div>
    </div>
    <script type='application/ld+json'>{"@context": "https://schema.org", "@type": "NewsArticle", "mainEntityOfPage": {"@type": "WebPage", "@id": "https://www.keystonecustomhome.com/blog/moving-to-lake-norman/"}, "headline": "Moving to Lake Norman: Your Guide to Life on North Carolina's Favorite Lake", "image": ["https://media.keystonecustomhome.com/333/2026/5/5/01-moving-to-lake-norman-your-guide-to-life-on-north-carolinas-favorite-lake.jpg"], "datePublished": "2026-05-05T05:00:00+00:00", "dateModified": "2026-05-12T12:56:17.401210+00:00", "publisher": {"@type": "Organization", "name": "Keystone Custom Homes"}}</script>
</div>

                
                
                
                <div class="mb-7 px-4">
    <div class="row post-card ">
        
            <div class="col-12 col-md-5 ps-0">
                <div class="oi-aspect sixteen-nine h-100">
                    <img src="https://media.keystonecustomhome.com/333/2026/5/7/BPAL_JGPhoto356.jpg?width=1000&amp;height=667&amp;fit=bounds&amp;ois=7baf13e" srcset="https://media.keystonecustomhome.com/333/2026/5/7/BPAL_JGPhoto356.jpg?width=300&amp;height=200&amp;fit=bounds&amp;ois=df45003 300w, https://media.keystonecustomhome.com/333/2026/5/7/BPAL_JGPhoto356.jpg?width=400&amp;height=266&amp;fit=bounds&amp;ois=38dc048 400w, https://media.keystonecustomhome.com/333/2026/5/7/BPAL_JGPhoto356.jpg?width=1000&amp;height=667&amp;fit=bounds&amp;ois=7baf13e 1000w, https://media.keystonecustomhome.com/333/2026/5/7/BPAL_JGPhoto356.jpg?width=1920&amp;height=1280&amp;fit=bounds&amp;ois=cf4c6f8 1920w" sizes="(min-width: 1400px) 2000px, 100vw" loading="lazy" class="oi-aspect-img" alt="Four people holding crystal awards at the Best in PA Living Awards ceremony backdrop.">
                    <div class="post-date position-absolute r-0 bg-orange text-white f-18 px-4 py-3 text-center lh-19">
                        <div>May</div>
                        <div>05</div>
                        <div>2026</div>
                    </div>
                </div>
            </div>
        
        <div class="col-12 col-md-7">
            <div class="px-4 py-3 py-xl-5">
                <p class="text-blog-blue f-22 lh-36">Keystone Brings Home 4 Best in Living Awards</p>
                
                    <p class="text-primary f-17">Category:
                        
                            <a href="/blog/category/awards/" class="d-inline-block text-primary">Awards</a>
                        
                    </p>
                
                
                <a href="https://www.keystonecustomhome.com/blog/keystone-brings-home-4-best-in-living-awards/" class="text-orange-light  f-22 ls-1 mt-4 mb-0">
                    <span class="me-3">READ POST</span>
                    <svg version="1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 127 125" width="22px"><path d="M63.8.2c-28.2 0-52 18.9-59.5 44.6h5.2C16.9 21.9 38.4 5.2 63.8 5.2c31.4 0 57 25.6 57 57s-25.6 57-57 57c-25.4 0-46.9-16.7-54.3-39.6H4.3c7.5 25.7 31.4 44.6 59.5 44.6 34.2 0 62-27.8 62-62 0-34.1-27.8-62-62-62z"></path><path d="M51.3 35.3l-3.1 4 26.1 20.5H1.9v5h72.4L48.2 85.3l3.1 3.9 34.3-26.9"></path></svg>
                </a>
            </div>
        </div>
    </div>
    <script type='application/ld+json'>{"@context": "https://schema.org", "@type": "NewsArticle", "mainEntityOfPage": {"@type": "WebPage", "@id": "https://www.keystonecustomhome.com/blog/keystone-brings-home-4-best-in-living-awards/"}, "headline": "Keystone Brings Home 4 Best in Living Awards", "image": ["https://media.keystonecustomhome.com/333/2026/5/7/BPAL_JGPhoto356.jpg"], "datePublished": "2026-05-05T04:00:00+00:00", "dateModified": "2026-05-07T15:07:30.752661+00:00", "publisher": {"@type": "Organization", "name": "Keystone Custom Homes"}}</script>
</div>

                
                
                
                <div class="mb-7 px-4">
    <div class="row post-card ">
        
            <div class="col-12 col-md-5 ps-0">
                <div class="oi-aspect sixteen-nine h-100">
                    <img src="https://media.keystonecustomhome.com/333/2026/4/27/nicokam_241028_721_K-Days-2.jpg?width=1000&amp;height=665&amp;fit=bounds&amp;ois=68847d9" srcset="https://media.keystonecustomhome.com/333/2026/4/27/nicokam_241028_721_K-Days-2.jpg?width=300&amp;height=199&amp;fit=bounds&amp;ois=5b77a2a 300w, https://media.keystonecustomhome.com/333/2026/4/27/nicokam_241028_721_K-Days-2.jpg?width=400&amp;height=266&amp;fit=bounds&amp;ois=7ed3a4d 400w, https://media.keystonecustomhome.com/333/2026/4/27/nicokam_241028_721_K-Days-2.jpg?width=1000&amp;height=665&amp;fit=bounds&amp;ois=68847d9 1000w, https://media.keystonecustomhome.com/333/2026/4/27/nicokam_241028_721_K-Days-2.jpg?width=1920&amp;height=1277&amp;fit=bounds&amp;ois=2adb933 1920w" sizes="(min-width: 1400px) 2000px, 100vw" loading="lazy" class="oi-aspect-img" alt="Five men wearing conference lanyards pose together inside a large indoor sports facility during an event.">
                    <div class="post-date position-absolute r-0 bg-orange text-white f-18 px-4 py-3 text-center lh-19">
                        <div>Apr</div>
                        <div>29</div>
                        <div>2026</div>
                    </div>
                </div>
            </div>
        
        <div class="col-12 col-md-7">
            <div class="px-4 py-3 py-xl-5">
                <p class="text-blog-blue f-22 lh-36">Meet the Team: Tyler Harris</p>
                
                    <p class="text-primary f-17">Category:
                        
                            <a href="/blog/category/meet-the-kch-team/" class="d-inline-block text-primary">Meet the KCH Team</a>
                        
                    </p>
                
                
                <a href="https://www.keystonecustomhome.com/blog/meet-the-team-tyler-harris/" class="text-orange-light  f-22 ls-1 mt-4 mb-0">
                    <span class="me-3">READ POST</span>
                    <svg version="1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 127 125" width="22px"><path d="M63.8.2c-28.2 0-52 18.9-59.5 44.6h5.2C16.9 21.9 38.4 5.2 63.8 5.2c31.4 0 57 25.6 57 57s-25.6 57-57 57c-25.4 0-46.9-16.7-54.3-39.6H4.3c7.5 25.7 31.4 44.6 59.5 44.6 34.2 0 62-27.8 62-62 0-34.1-27.8-62-62-62z"></path><path d="M51.3 35.3l-3.1 4 26.1 20.5H1.9v5h72.4L48.2 85.3l3.1 3.9 34.3-26.9"></path></svg>
                </a>
            </div>
        </div>
    </div>
    <script type='application/ld+json'>{"@context": "https://schema.org", "@type": "NewsArticle", "mainEntityOfPage": {"@type": "WebPage", "@id": "https://www.keystonecustomhome.com/blog/meet-the-team-tyler-harris/"}, "headline": "Meet the Team: Tyler Harris", "image": ["https://media.keystonecustomhome.com/333/2026/4/27/nicokam_241028_721_K-Days-2.jpg"], "datePublished": "2026-04-29T05:00:00+00:00", "dateModified": "2026-04-29T14:22:53.474331+00:00", "publisher": {"@type": "Organization", "name": "Keystone Custom Homes"}}</script>
</div>

                
                
                
                <div class="mb-7 px-4">
    <div class="row post-card ">
        
            <div class="col-12 col-md-5 ps-0">
                <div class="oi-aspect sixteen-nine h-100">
                    <img src="https://media.keystonecustomhome.com/333/2026/4/28/IMG_8538.jpeg?width=1000&amp;height=750&amp;fit=bounds&amp;ois=589bce0" srcset="https://media.keystonecustomhome.com/333/2026/4/28/IMG_8538.jpeg?width=300&amp;height=225&amp;fit=bounds&amp;ois=03a70cd 300w, https://media.keystonecustomhome.com/333/2026/4/28/IMG_8538.jpeg?width=400&amp;height=300&amp;fit=bounds&amp;ois=abda5ea 400w, https://media.keystonecustomhome.com/333/2026/4/28/IMG_8538.jpeg?width=1000&amp;height=750&amp;fit=bounds&amp;ois=589bce0 1000w, https://media.keystonecustomhome.com/333/2026/4/28/IMG_8538.jpeg?width=1920&amp;height=1440&amp;fit=bounds&amp;ois=6e8b4ca 1920w" sizes="(min-width: 1400px) 2000px, 100vw" loading="lazy" class="oi-aspect-img" alt="Family of four gathered around a kitchen island, with a young boy writing on name tags while others watch.">
                    <div class="post-date position-absolute r-0 bg-orange text-white f-18 px-4 py-3 text-center lh-19">
                        <div>Apr</div>
                        <div>28</div>
                        <div>2026</div>
                    </div>
                </div>
            </div>
        
        <div class="col-12 col-md-7">
            <div class="px-4 py-3 py-xl-5">
                <p class="text-blog-blue f-22 lh-36">Welcoming Spring at Legacy Farms</p>
                
                    <p class="text-primary f-17">Category:
                        
                            <a href="/blog/category/events/" class="d-inline-block text-primary">Events</a>
                        
                    </p>
                
                
                <a href="https://www.keystonecustomhome.com/blog/welcoming-spring-at-legacy-farms/" class="text-orange-light  f-22 ls-1 mt-4 mb-0">
                    <span class="me-3">READ POST</span>
                    <svg version="1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 127 125" width="22px"><path d="M63.8.2c-28.2 0-52 18.9-59.5 44.6h5.2C16.9 21.9 38.4 5.2 63.8 5.2c31.4 0 57 25.6 57 57s-25.6 57-57 57c-25.4 0-46.9-16.7-54.3-39.6H4.3c7.5 25.7 31.4 44.6 59.5 44.6 34.2 0 62-27.8 62-62 0-34.1-27.8-62-62-62z"></path><path d="M51.3 35.3l-3.1 4 26.1 20.5H1.9v5h72.4L48.2 85.3l3.1 3.9 34.3-26.9"></path></svg>
                </a>
            </div>
        </div>
    </div>
    <script type='application/ld+json'>{"@context": "https://schema.org", "@type": "NewsArticle", "mainEntityOfPage": {"@type": "WebPage", "@id": "https://www.keystonecustomhome.com/blog/welcoming-spring-at-legacy-farms/"}, "headline": "Welcoming Spring at Legacy Farms", "image": ["https://media.keystonecustomhome.com/333/2026/4/28/IMG_8538.jpeg"], "datePublished": "2026-04-28T05:00:00+00:00", "dateModified": "2026-04-29T15:38:47.155012+00:00", "publisher": {"@type": "Organization", "name": "Keystone Custom Homes"}}</script>
</div>

                
                
                
                <div class="mb-7 px-4">
    <div class="row post-card ">
        
            <div class="col-12 col-md-5 ps-0">
                <div class="oi-aspect sixteen-nine h-100">
                    <img src="https://media.keystonecustomhome.com/333/2024/11/26/Keystone_9.9.240057.jpg?width=1000&amp;height=666&amp;fit=bounds&amp;ois=0fb0349" srcset="https://media.keystonecustomhome.com/333/2024/11/26/Keystone_9.9.240057.jpg?width=300&amp;height=200&amp;fit=bounds&amp;ois=43afca1 300w, https://media.keystonecustomhome.com/333/2024/11/26/Keystone_9.9.240057.jpg?width=400&amp;height=266&amp;fit=bounds&amp;ois=b91ea65 400w, https://media.keystonecustomhome.com/333/2024/11/26/Keystone_9.9.240057.jpg?width=1000&amp;height=666&amp;fit=bounds&amp;ois=0fb0349 1000w, https://media.keystonecustomhome.com/333/2024/11/26/Keystone_9.9.240057.jpg?width=1600&amp;height=1067&amp;fit=bounds&amp;ois=5250d39 1920w" sizes="(min-width: 1400px) 2000px, 100vw" loading="lazy" class="oi-aspect-img" alt="Open-concept dining area and kitchen with green cabinets, wicker chandelier, and stainless steel appliances">
                    <div class="post-date position-absolute r-0 bg-orange text-white f-18 px-4 py-3 text-center lh-19">
                        <div>Apr</div>
                        <div>28</div>
                        <div>2026</div>
                    </div>
                </div>
            </div>
        
        <div class="col-12 col-md-7">
            <div class="px-4 py-3 py-xl-5">
                <p class="text-blog-blue f-22 lh-36">5 Common Myths About Building a Custom Home</p>
                
                
                <a href="https://www.keystonecustomhome.com/blog/common-myths-about-building-a-custom-home/" class="text-orange-light  f-22 ls-1 mt-4 mb-0">
                    <span class="me-3">READ POST</span>
                    <svg version="1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 127 125" width="22px"><path d="M63.8.2c-28.2 0-52 18.9-59.5 44.6h5.2C16.9 21.9 38.4 5.2 63.8 5.2c31.4 0 57 25.6 57 57s-25.6 57-57 57c-25.4 0-46.9-16.7-54.3-39.6H4.3c7.5 25.7 31.4 44.6 59.5 44.6 34.2 0 62-27.8 62-62 0-34.1-27.8-62-62-62z"></path><path d="M51.3 35.3l-3.1 4 26.1 20.5H1.9v5h72.4L48.2 85.3l3.1 3.9 34.3-26.9"></path></svg>
                </a>
            </div>
        </div>
    </div>
    <script type='application/ld+json'>{"@context": "https://schema.org", "@type": "NewsArticle", "mainEntityOfPage": {"@type": "WebPage", "@id": "https://www.keystonecustomhome.com/blog/common-myths-about-building-a-custom-home/"}, "headline": "5 Common Myths About Building a Custom Home", "image": ["https://media.keystonecustomhome.com/333/2024/11/26/Keystone_9.9.240057.jpg"], "datePublished": "2026-04-28T05:00:00+00:00", "dateModified": "2026-05-12T13:48:05.810998+00:00", "publisher": {"@type": "Organization", "name": "Keystone Custom Homes"}}</script>
</div>

                
                
                <div class="row">
                    <div class="col-12 mt-5">
                        <ul class="pagination justify-content-between w-100">
    
    <li class="page-item has_next">
        <a class="page-link " href="/blog/?i=0&amp;page=2"><svg version="1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 127 125"><path d="M63.8.2c-28.2 0-52 18.9-59.5 44.6h5.2C16.9 21.9 38.4 5.2 63.8 5.2c31.4 0 57 25.6 57 57s-25.6 57-57 57c-25.4 0-46.9-16.7-54.3-39.6H4.3c7.5 25.7 31.4 44.6 59.5 44.6 34.2 0 62-27.8 62-62 0-34.1-27.8-62-62-62z"></path><path d="M51.3 35.3l-3.1 4 26.1 20.5H1.9v5h72.4L48.2 85.3l3.1 3.9 34.3-26.9"></path></svg><span class="f-20 align-middle">OLDER POSTS</span></a>
    </li>
    
    
    
</ul>
                    </div>
                </div>
                
            </div>
            <div class="col-12 col-lg-4 mt-lg-0 mt-6 blog-sidebar">
    <div class="ps-lg-6">
        <div id="search-2" class="widget widget-search">
            <form id="blogSearchForm">
                <button type="submit">
                    <i class="fa fa-search" aria-hidden="true"></i>
                </button>
                <span class="screen-reader-text">Search for:</span>
                <input type="search" id="blogSearch" class="blog-input-field px-4 py-3 float-end ls-2"  placeholder="Search the Blog" name="q" title="Search for:">
            </form>
        </div>
        <div class="social-title mt-6">
            <h2 class="f-30 text-secondary text-center f-trebuchet">Stay Connected</h2>
            <div class="textwidget widget-text">
                <ul class="d-flex justify-content-center mt-5">
                    
                    <li class="pe-4 pe-lg-5 px-lg-0 px-4"><a class="f-32 oi-social-profile-click fab fa-facebook-square" href="https://www.facebook.com/keystonecustomhomes/" target="_blank"></a></li>
                    
                    
                    <li class="pe-4 pe-lg-5 px-lg-0 px-4"><a class="f-32 oi-social-profile-click fab fa-youtube" href="https://www.youtube.com/user/KeystoneCustomHomes" target="_blank"></a></li>
                    
                    
                    <li class="pe-4 pe-lg-5 px-lg-0 px-4"><a class="f-32 oi-social-profile-click fab fa-instagram" href="https://www.instagram.com/kchhomes/" target="_blank"></a></li>
                    
                    
                    <li class="pe-4 pe-lg-5 px-lg-0 px-4"><a class="f-32 oi-social-profile-click fab fa-pinterest-square" href="https://www.pinterest.com/kchomes/" target="_blank"></a></li>
                    
                    
                    <li class="pe-4 pe-lg-5 px-lg-0 px-4"><a class="f-32 oi-social-profile-click fab fa-houzz" href="" target="_blank"></a></li>
                    
                </ul>
            </div>
        </div>
        
        <div class="accordion mt-6" id="accordionBlog">
            
            <div class="accordion-item">
                <h2 class="accordion-header" id="RecentPosts">
                    <button class="accordion-button text-primary f-25 p-5" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
                        Recent Posts
                    </button>
                </h2>
                <div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="RecentPosts" data-bs-parent="#accordionBlog">
                    <div class="accordion-body p-5">
                        
                        <li class="f-18 mb-4 pb-3">
                            <a href="https://www.keystonecustomhome.com/blog/2026-charlotte-trade-partner-breakfast/" title="">
                                <div class="fw-bold">2026 Charlotte Trade Partner Breakfast</div>
                                <div class="text-secondary">May 2026</div>
                            </a>
                            <script type='application/ld+json'>{"@context": "https://schema.org", "@type": "NewsArticle", "mainEntityOfPage": {"@type": "WebPage", "@id": "https://www.keystonecustomhome.com/blog/2026-charlotte-trade-partner-breakfast/"}, "headline": "2026 Charlotte Trade Partner Breakfast", "image": ["https://media.keystonecustomhome.com/333/2026/5/14/keystone_4_of_18.png"], "datePublished": "2026-05-15T05:00:00+00:00", "dateModified": "2026-05-14T21:45:24.018273+00:00", "publisher": {"@type": "Organization", "name": "Keystone Custom Homes"}}</script>
                        </li>
                        
                        <li class="f-18 mb-4 pb-3">
                            <a href="https://www.keystonecustomhome.com/blog/enclave-at-everleigh-woods-paving-party/" title="">
                                <div class="fw-bold">Enclave at Everleigh Woods Paving Party</div>
                                <div class="text-secondary">May 2026</div>
                            </a>
                            <script type='application/ld+json'>{"@context": "https://schema.org", "@type": "NewsArticle", "mainEntityOfPage": {"@type": "WebPage", "@id": "https://www.keystonecustomhome.com/blog/enclave-at-everleigh-woods-paving-party/"}, "headline": "Enclave at Everleigh Woods Paving Party", "image": ["https://media.keystonecustomhome.com/333/2026/5/14/nicokam_260509_105_PP-Perkasie.jpg"], "datePublished": "2026-05-14T05:00:00+00:00", "dateModified": "2026-05-14T20:54:04.192983+00:00", "publisher": {"@type": "Organization", "name": "Keystone Custom Homes"}}</script>
                        </li>
                        
                        <li class="f-18 mb-4 pb-3">
                            <a href="https://www.keystonecustomhome.com/blog/arbor-gate-in-bloom/" title="">
                                <div class="fw-bold">Arbor Gate In Bloom!</div>
                                <div class="text-secondary">May 2026</div>
                            </a>
                            <script type='application/ld+json'>{"@context": "https://schema.org", "@type": "NewsArticle", "mainEntityOfPage": {"@type": "WebPage", "@id": "https://www.keystonecustomhome.com/blog/arbor-gate-in-bloom/"}, "headline": "Arbor Gate In Bloom!", "image": ["https://media.keystonecustomhome.com/333/2026/5/12/Keystone_Custom_Management___ARBOR_GATE-158.jpg"], "datePublished": "2026-05-12T05:00:00+00:00", "dateModified": "2026-05-13T01:44:18.134845+00:00", "publisher": {"@type": "Organization", "name": "Keystone Custom Homes"}}</script>
                        </li>
                        
                        <li class="f-18 mb-4 pb-3">
                            <a href="https://www.keystonecustomhome.com/blog/windermere-farms-paving-party/" title="">
                                <div class="fw-bold">Windermere Farms Paving Party</div>
                                <div class="text-secondary">May 2026</div>
                            </a>
                            <script type='application/ld+json'>{"@context": "https://schema.org", "@type": "NewsArticle", "mainEntityOfPage": {"@type": "WebPage", "@id": "https://www.keystonecustomhome.com/blog/windermere-farms-paving-party/"}, "headline": "Windermere Farms Paving Party", "image": ["https://media.keystonecustomhome.com/333/2026/5/6/Keystone_Custom_Management___Windermere_Farms-55.jpg"], "datePublished": "2026-05-08T05:00:00+00:00", "dateModified": "2026-05-08T13:15:00.826138+00:00", "publisher": {"@type": "Organization", "name": "Keystone Custom Homes"}}</script>
                        </li>
                        
                        <li class="f-18">
                            <a href="https://www.keystonecustomhome.com/blog/philadelphia-rural-living/" title="">
                                <div class="fw-bold">Philadelphia Rural Living</div>
                                <div class="text-secondary">May 2026</div>
                            </a>
                            <script type='application/ld+json'>{"@context": "https://schema.org", "@type": "NewsArticle", "mainEntityOfPage": {"@type": "WebPage", "@id": "https://www.keystonecustomhome.com/blog/philadelphia-rural-living/"}, "headline": "Philadelphia Rural Living", "image": ["https://media.keystonecustomhome.com/333/2026/5/5/28-1058_1.jpg"], "datePublished": "2026-05-07T05:00:00+00:00", "dateModified": "2026-05-12T13:53:21.837734+00:00", "publisher": {"@type": "Organization", "name": "Keystone Custom Homes"}}</script>
                        </li>
                        
                    </div>
                </div>
            </div>
            
            
            <div class="accordion-item">
                <h2 class="accordion-header" id="Categories">
                    <button class="accordion-button text-primary f-25 p-5 collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseCategories" aria-expanded="false" aria-controls="collapseCategories">
                        Categories
                    </button>
                </h2>
                <div id="collapseCategories" class="accordion-collapse collapse" aria-labelledby="Categories" data-bs-parent="#accordionBlog">
                    <div class="accordion-body p-5">
                        <ul class="px-0">
                            
                            <li class="f-18 mb-4 pb-3">
                                <a href="/blog/category/awards/" title="Awards">Awards </a>
                            </li>
                            
                            <li class="f-18 mb-4 pb-3">
                                <a href="/blog/category/design/" title="Design">Design </a>
                            </li>
                            
                            <li class="f-18 mb-4 pb-3">
                                <a href="/blog/category/events/" title="Events">Events </a>
                            </li>
                            
                            <li class="f-18 mb-4 pb-3">
                                <a href="/blog/category/financing/" title="Financing">Financing </a>
                            </li>
                            
                            <li class="f-18 mb-4 pb-3">
                                <a href="/blog/category/floorplans/" title="Floorplans">Floorplans </a>
                            </li>
                            
                            <li class="f-18 mb-4 pb-3">
                                <a href="/blog/category/giving-back/" title="Giving Back">Giving Back </a>
                            </li>
                            
                            <li class="f-18 mb-4 pb-3">
                                <a href="/blog/category/green-building/" title="Green Building">Green Building </a>
                            </li>
                            
                            <li class="f-18 mb-4 pb-3">
                                <a href="/blog/category/lifestyle/" title="Lifestyle">Lifestyle </a>
                            </li>
                            
                            <li class="f-18 mb-4 pb-3">
                                <a href="/blog/category/meet-the-kch-team/" title="Meet the KCH Team">Meet the KCH Team </a>
                            </li>
                            
                            <li class="f-18 mb-4 pb-3">
                                <a href="/blog/category/new-community/" title="New Community">New Community </a>
                            </li>
                            
                            <li class="f-18 mb-4 pb-3">
                                <a href="/blog/category/new-homes/" title="New Homes">New Homes </a>
                            </li>
                            
                            <li class="f-18 mb-4 pb-3">
                                <a href="/blog/category/news/" title="News">News </a>
                            </li>
                            
                            <li class="f-18 mb-4 pb-3">
                                <a href="/blog/category/realtor/" title="Realtor">Realtor </a>
                            </li>
                            
                            <li class="f-18 mb-4 pb-3">
                                <a href="/blog/category/testimonials/" title="Testimonials">Testimonials </a>
                            </li>
                            
                            <li class="f-18">
                                <a href="/blog/category/tips/" title="Tips">Tips </a>
                            </li>
                            
                        </ul>
                    </div>
                </div>
            </div>
            
            
            <div class="accordion-item">
                <h2 class="accordion-header" id="Archives">
                    <button class="accordion-button text-primary f-25 p-5 collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseArchive" aria-expanded="false" aria-controls="collapseArchive">
                        Archives
                    </button>
                </h2>
                <div id="collapseArchive" class="accordion-collapse collapse" aria-labelledby="Archives" data-bs-parent="#accordionBlog">
                    <div class="accordion-body p-5">
                        <div class="accordion" id="Year">
                            <div class="accordion-item border-0">
                                
                                <h2 class="accordion-header" id="year_archive_2026">
                                    <button class="accordion-button text-primary f-20 collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseYear_archive_2026" aria-expanded="false" aria-controls="collapseYear_archive_2026">
                                        2026
                                    </button>
                                </h2>
                                <div id="collapseYear_archive_2026" class="accordion-collapse collapse" aria-labelledby="Year" data-bs-parent="#Year">
                                    <div class="accordion-body ps-4">
                                        
                                        <a class="d-block py-3" href="/blog/2026/1/"><span class="f-18">January</span>
                                            &nbsp;<span class="f-13">(4)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2026/2/"><span class="f-18">February</span>
                                            &nbsp;<span class="f-13">(5)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2026/3/"><span class="f-18">March</span>
                                            &nbsp;<span class="f-13">(4)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2026/4/"><span class="f-18">April</span>
                                            &nbsp;<span class="f-13">(9)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2026/5/"><span class="f-18">May</span>
                                            &nbsp;<span class="f-13">(7)</span>
                                        </a>
                                        
                                    </div>
                                </div>
                                
                                <h2 class="accordion-header" id="year_archive_2025">
                                    <button class="accordion-button text-primary f-20 collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseYear_archive_2025" aria-expanded="false" aria-controls="collapseYear_archive_2025">
                                        2025
                                    </button>
                                </h2>
                                <div id="collapseYear_archive_2025" class="accordion-collapse collapse" aria-labelledby="Year" data-bs-parent="#Year">
                                    <div class="accordion-body ps-4">
                                        
                                        <a class="d-block py-3" href="/blog/2025/1/"><span class="f-18">January</span>
                                            &nbsp;<span class="f-13">(3)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2025/2/"><span class="f-18">February</span>
                                            &nbsp;<span class="f-13">(3)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2025/3/"><span class="f-18">March</span>
                                            &nbsp;<span class="f-13">(5)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2025/4/"><span class="f-18">April</span>
                                            &nbsp;<span class="f-13">(6)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2025/5/"><span class="f-18">May</span>
                                            &nbsp;<span class="f-13">(7)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2025/6/"><span class="f-18">June</span>
                                            &nbsp;<span class="f-13">(2)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2025/7/"><span class="f-18">July</span>
                                            &nbsp;<span class="f-13">(1)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2025/8/"><span class="f-18">August</span>
                                            &nbsp;<span class="f-13">(2)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2025/9/"><span class="f-18">September</span>
                                            &nbsp;<span class="f-13">(3)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2025/10/"><span class="f-18">October</span>
                                            &nbsp;<span class="f-13">(6)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2025/11/"><span class="f-18">November</span>
                                            &nbsp;<span class="f-13">(1)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2025/12/"><span class="f-18">December</span>
                                            &nbsp;<span class="f-13">(9)</span>
                                        </a>
                                        
                                    </div>
                                </div>
                                
                                <h2 class="accordion-header" id="year_archive_2024">
                                    <button class="accordion-button text-primary f-20 collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseYear_archive_2024" aria-expanded="false" aria-controls="collapseYear_archive_2024">
                                        2024
                                    </button>
                                </h2>
                                <div id="collapseYear_archive_2024" class="accordion-collapse collapse" aria-labelledby="Year" data-bs-parent="#Year">
                                    <div class="accordion-body ps-4">
                                        
                                        <a class="d-block py-3" href="/blog/2024/1/"><span class="f-18">January</span>
                                            &nbsp;<span class="f-13">(4)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2024/2/"><span class="f-18">February</span>
                                            &nbsp;<span class="f-13">(1)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2024/3/"><span class="f-18">March</span>
                                            &nbsp;<span class="f-13">(3)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2024/4/"><span class="f-18">April</span>
                                            &nbsp;<span class="f-13">(3)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2024/5/"><span class="f-18">May</span>
                                            &nbsp;<span class="f-13">(1)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2024/6/"><span class="f-18">June</span>
                                            &nbsp;<span class="f-13">(1)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2024/7/"><span class="f-18">July</span>
                                            &nbsp;<span class="f-13">(2)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2024/8/"><span class="f-18">August</span>
                                            &nbsp;<span class="f-13">(1)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2024/10/"><span class="f-18">October</span>
                                            &nbsp;<span class="f-13">(2)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2024/12/"><span class="f-18">December</span>
                                            &nbsp;<span class="f-13">(2)</span>
                                        </a>
                                        
                                    </div>
                                </div>
                                
                                <h2 class="accordion-header" id="year_archive_2023">
                                    <button class="accordion-button text-primary f-20 collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseYear_archive_2023" aria-expanded="false" aria-controls="collapseYear_archive_2023">
                                        2023
                                    </button>
                                </h2>
                                <div id="collapseYear_archive_2023" class="accordion-collapse collapse" aria-labelledby="Year" data-bs-parent="#Year">
                                    <div class="accordion-body ps-4">
                                        
                                        <a class="d-block py-3" href="/blog/2023/1/"><span class="f-18">January</span>
                                            &nbsp;<span class="f-13">(1)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2023/5/"><span class="f-18">May</span>
                                            &nbsp;<span class="f-13">(4)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2023/6/"><span class="f-18">June</span>
                                            &nbsp;<span class="f-13">(3)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2023/7/"><span class="f-18">July</span>
                                            &nbsp;<span class="f-13">(4)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2023/8/"><span class="f-18">August</span>
                                            &nbsp;<span class="f-13">(6)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2023/9/"><span class="f-18">September</span>
                                            &nbsp;<span class="f-13">(4)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2023/10/"><span class="f-18">October</span>
                                            &nbsp;<span class="f-13">(2)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2023/11/"><span class="f-18">November</span>
                                            &nbsp;<span class="f-13">(5)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2023/12/"><span class="f-18">December</span>
                                            &nbsp;<span class="f-13">(1)</span>
                                        </a>
                                        
                                    </div>
                                </div>
                                
                                <h2 class="accordion-header" id="year_archive_2022">
                                    <button class="accordion-button text-primary f-20 collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseYear_archive_2022" aria-expanded="false" aria-controls="collapseYear_archive_2022">
                                        2022
                                    </button>
                                </h2>
                                <div id="collapseYear_archive_2022" class="accordion-collapse collapse" aria-labelledby="Year" data-bs-parent="#Year">
                                    <div class="accordion-body ps-4">
                                        
                                        <a class="d-block py-3" href="/blog/2022/6/"><span class="f-18">June</span>
                                            &nbsp;<span class="f-13">(1)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2022/7/"><span class="f-18">July</span>
                                            &nbsp;<span class="f-13">(1)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2022/8/"><span class="f-18">August</span>
                                            &nbsp;<span class="f-13">(1)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2022/9/"><span class="f-18">September</span>
                                            &nbsp;<span class="f-13">(1)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2022/10/"><span class="f-18">October</span>
                                            &nbsp;<span class="f-13">(1)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2022/11/"><span class="f-18">November</span>
                                            &nbsp;<span class="f-13">(3)</span>
                                        </a>
                                        
                                    </div>
                                </div>
                                
                                <h2 class="accordion-header" id="year_archive_2021">
                                    <button class="accordion-button text-primary f-20 collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseYear_archive_2021" aria-expanded="false" aria-controls="collapseYear_archive_2021">
                                        2021
                                    </button>
                                </h2>
                                <div id="collapseYear_archive_2021" class="accordion-collapse collapse" aria-labelledby="Year" data-bs-parent="#Year">
                                    <div class="accordion-body ps-4">
                                        
                                        <a class="d-block py-3" href="/blog/2021/1/"><span class="f-18">January</span>
                                            &nbsp;<span class="f-13">(1)</span>
                                        </a>
                                        
                                    </div>
                                </div>
                                
                                <h2 class="accordion-header" id="year_archive_2020">
                                    <button class="accordion-button text-primary f-20 collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseYear_archive_2020" aria-expanded="false" aria-controls="collapseYear_archive_2020">
                                        2020
                                    </button>
                                </h2>
                                <div id="collapseYear_archive_2020" class="accordion-collapse collapse" aria-labelledby="Year" data-bs-parent="#Year">
                                    <div class="accordion-body ps-4">
                                        
                                        <a class="d-block py-3" href="/blog/2020/3/"><span class="f-18">March</span>
                                            &nbsp;<span class="f-13">(1)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2020/4/"><span class="f-18">April</span>
                                            &nbsp;<span class="f-13">(1)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2020/6/"><span class="f-18">June</span>
                                            &nbsp;<span class="f-13">(2)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2020/11/"><span class="f-18">November</span>
                                            &nbsp;<span class="f-13">(1)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2020/12/"><span class="f-18">December</span>
                                            &nbsp;<span class="f-13">(2)</span>
                                        </a>
                                        
                                    </div>
                                </div>
                                
                                <h2 class="accordion-header" id="year_archive_2019">
                                    <button class="accordion-button text-primary f-20 collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseYear_archive_2019" aria-expanded="false" aria-controls="collapseYear_archive_2019">
                                        2019
                                    </button>
                                </h2>
                                <div id="collapseYear_archive_2019" class="accordion-collapse collapse" aria-labelledby="Year" data-bs-parent="#Year">
                                    <div class="accordion-body ps-4">
                                        
                                        <a class="d-block py-3" href="/blog/2019/1/"><span class="f-18">January</span>
                                            &nbsp;<span class="f-13">(3)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2019/2/"><span class="f-18">February</span>
                                            &nbsp;<span class="f-13">(1)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2019/4/"><span class="f-18">April</span>
                                            &nbsp;<span class="f-13">(7)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2019/6/"><span class="f-18">June</span>
                                            &nbsp;<span class="f-13">(1)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2019/10/"><span class="f-18">October</span>
                                            &nbsp;<span class="f-13">(1)</span>
                                        </a>
                                        
                                    </div>
                                </div>
                                
                                <h2 class="accordion-header" id="year_archive_2018">
                                    <button class="accordion-button text-primary f-20 collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseYear_archive_2018" aria-expanded="false" aria-controls="collapseYear_archive_2018">
                                        2018
                                    </button>
                                </h2>
                                <div id="collapseYear_archive_2018" class="accordion-collapse collapse" aria-labelledby="Year" data-bs-parent="#Year">
                                    <div class="accordion-body ps-4">
                                        
                                        <a class="d-block py-3" href="/blog/2018/1/"><span class="f-18">January</span>
                                            &nbsp;<span class="f-13">(2)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2018/2/"><span class="f-18">February</span>
                                            &nbsp;<span class="f-13">(4)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2018/5/"><span class="f-18">May</span>
                                            &nbsp;<span class="f-13">(1)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2018/8/"><span class="f-18">August</span>
                                            &nbsp;<span class="f-13">(1)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2018/10/"><span class="f-18">October</span>
                                            &nbsp;<span class="f-13">(2)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2018/12/"><span class="f-18">December</span>
                                            &nbsp;<span class="f-13">(1)</span>
                                        </a>
                                        
                                    </div>
                                </div>
                                
                                <h2 class="accordion-header last" id="year_archive_2017">
                                    <button class="accordion-button text-primary f-20 collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseYear_archive_2017" aria-expanded="false" aria-controls="collapseYear_archive_2017">
                                        2017
                                    </button>
                                </h2>
                                <div id="collapseYear_archive_2017" class="accordion-collapse collapse" aria-labelledby="Year" data-bs-parent="#Year">
                                    <div class="accordion-body ps-4">
                                        
                                        <a class="d-block py-3" href="/blog/2017/9/"><span class="f-18">September</span>
                                            &nbsp;<span class="f-13">(1)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2017/10/"><span class="f-18">October</span>
                                            &nbsp;<span class="f-13">(1)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2017/11/"><span class="f-18">November</span>
                                            &nbsp;<span class="f-13">(3)</span>
                                        </a>
                                        
                                        <a class="d-block py-3" href="/blog/2017/12/"><span class="f-18">December</span>
                                            &nbsp;<span class="f-13">(3)</span>
                                        </a>
                                        
                                    </div>
                                </div>
                                
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            
        </div>
        
        
        <div class="featured-posts mt-7">
            <div class="px-4">
                <h2 class="text-primary f-36 lh-50 fw-light mb-4">Popular Posts</h2>
            </div>
            <div class="row">
                
                <div class="col-12 px-4 mb-6">
                    <a id="19134" class="post-card-featured" href="https://www.keystonecustomhome.com/blog/keystone-wins-4-max-awards/">
    <div class="box overflow-hidden oi-aspect seven-six f-trebuchet">
        
        <img src="https://media.keystonecustomhome.com/333/2025/9/11/104MoonlightDrBelAirMD_180.jpg?width=1000&amp;height=666&amp;fit=bounds&amp;ois=c6a0b66" srcset="https://media.keystonecustomhome.com/333/2025/9/11/104MoonlightDrBelAirMD_180.jpg?width=300&amp;height=199&amp;fit=bounds&amp;ois=ce3ee2a 300w, https://media.keystonecustomhome.com/333/2025/9/11/104MoonlightDrBelAirMD_180.jpg?width=400&amp;height=266&amp;fit=bounds&amp;ois=70ae595 400w, https://media.keystonecustomhome.com/333/2025/9/11/104MoonlightDrBelAirMD_180.jpg?width=1000&amp;height=666&amp;fit=bounds&amp;ois=c6a0b66 1000w, https://media.keystonecustomhome.com/333/2025/9/11/104MoonlightDrBelAirMD_180.jpg?width=1920&amp;height=1279&amp;fit=bounds&amp;ois=7fb2984 1920w" sizes="(min-width: 1400px) 2000px, 100vw" loading="lazy" class="oi-aspect-img" alt="Two-story farmhouse with white and gray exterior, steep gabled roof, and covered front porch">
        
        <div class="post-date position-absolute l-0 bg-orange text-white px-4 py-3 text-center f-26 lh-26">
            <div>Apr</div>
            <div>23</div>
        </div>
        <div class="position-absolute text-white post-title">
            <h2 class="f-24 lh-25 fw-semi-bold p-2 m-0 p-3">Keystone Wins 4 MAX Awards</h2>
            <span class="float-end btn text-white bg-orange f-trebuchet mt-3 f-22">READ</span>
        </div>
        <script type='application/ld+json'>{"@context": "https://schema.org", "@type": "NewsArticle", "mainEntityOfPage": {"@type": "WebPage", "@id": "https://www.keystonecustomhome.com/blog/keystone-wins-4-max-awards/"}, "headline": "Keystone Wins 4 MAX Awards", "image": ["https://media.keystonecustomhome.com/333/2025/9/11/104MoonlightDrBelAirMD_180.jpg"], "datePublished": "2026-04-23T05:00:00+00:00", "dateModified": "2026-04-27T20:55:57.784411+00:00", "publisher": {"@type": "Organization", "name": "Keystone Custom Homes"}}</script>
    </div>
</a>

                </div>
                
                <div class="col-12 px-4 mb-6">
                    <a id="18870" class="post-card-featured" href="https://www.keystonecustomhome.com/blog/meet-the-team-alan-banks/">
    <div class="box overflow-hidden oi-aspect seven-six f-trebuchet">
        
        <img src="https://media.keystonecustomhome.com/333/2026/3/24/blog_top_banners_3xkpn6l.png?width=1000&amp;height=664&amp;fit=bounds&amp;b=be04f55&amp;ois=3d4e3ab" srcset="https://media.keystonecustomhome.com/333/2026/3/24/blog_top_banners_3xkpn6l.png?width=300&amp;height=199&amp;fit=bounds&amp;b=be04f55&amp;ois=cb7c7a5 300w, https://media.keystonecustomhome.com/333/2026/3/24/blog_top_banners_3xkpn6l.png?width=400&amp;height=265&amp;fit=bounds&amp;b=be04f55&amp;ois=94ed1d9 400w, https://media.keystonecustomhome.com/333/2026/3/24/blog_top_banners_3xkpn6l.png?width=1000&amp;height=664&amp;fit=bounds&amp;b=be04f55&amp;ois=3d4e3ab 1000w, https://media.keystonecustomhome.com/333/2026/3/24/blog_top_banners_3xkpn6l.png?width=1175&amp;height=781&amp;fit=bounds&amp;b=be04f55&amp;ois=3a0a8dc 1920w" sizes="(min-width: 1400px) 2000px, 100vw" loading="lazy" class="oi-aspect-img" alt="Keystone Homes representative speaking at a podium with microphone and presentation screen behind him">
        
        <div class="post-date position-absolute l-0 bg-orange text-white px-4 py-3 text-center f-26 lh-26">
            <div>Mar</div>
            <div>27</div>
        </div>
        <div class="position-absolute text-white post-title">
            <h2 class="f-24 lh-25 fw-semi-bold p-2 m-0 p-3">Meet the Team: Alan Banks</h2>
            <span class="float-end btn text-white bg-orange f-trebuchet mt-3 f-22">READ</span>
        </div>
        <script type='application/ld+json'>{"@context": "https://schema.org", "@type": "NewsArticle", "mainEntityOfPage": {"@type": "WebPage", "@id": "https://www.keystonecustomhome.com/blog/meet-the-team-alan-banks/"}, "headline": "Meet the Team: Alan Banks", "image": ["https://media.keystonecustomhome.com/333/2026/3/24/blog_top_banners_3xkpn6l.png"], "datePublished": "2026-03-27T17:00:00+00:00", "dateModified": "2026-03-27T14:55:22.260665+00:00", "publisher": {"@type": "Organization", "name": "Keystone Custom Homes"}}</script>
    </div>
</a>

                </div>
                
                <div class="col-12 px-4 mb-6">
                    <a id="18891" class="post-card-featured" href="https://www.keystonecustomhome.com/blog/kellerton-paving-party/">
    <div class="box overflow-hidden oi-aspect seven-six f-trebuchet">
        
        <img src="https://media.keystonecustomhome.com/333/2026/3/26/nicokam_260321_171_KCH-Kellerton.jpg?width=499&amp;height=750&amp;fit=bounds&amp;ois=16fecef" srcset="https://media.keystonecustomhome.com/333/2026/3/26/nicokam_260321_171_KCH-Kellerton.jpg?width=200&amp;height=300&amp;fit=bounds&amp;ois=489aaa6 300w, https://media.keystonecustomhome.com/333/2026/3/26/nicokam_260321_171_KCH-Kellerton.jpg?width=199&amp;height=300&amp;fit=bounds&amp;ois=c73c6e2 400w, https://media.keystonecustomhome.com/333/2026/3/26/nicokam_260321_171_KCH-Kellerton.jpg?width=499&amp;height=750&amp;fit=bounds&amp;ois=16fecef 1000w, https://media.keystonecustomhome.com/333/2026/3/26/nicokam_260321_171_KCH-Kellerton.jpg?width=958&amp;height=1440&amp;fit=bounds&amp;ois=4584e74 1920w" sizes="(min-width: 1400px) 2000px, 100vw" loading="lazy" class="oi-aspect-img" alt="Family celebrating home purchase with confetti at Keystone Custom Homes sold sign for homesite 628">
        
        <div class="post-date position-absolute l-0 bg-orange text-white px-4 py-3 text-center f-26 lh-26">
            <div>Mar</div>
            <div>26</div>
        </div>
        <div class="position-absolute text-white post-title">
            <h2 class="f-24 lh-25 fw-semi-bold p-2 m-0 p-3">Kellerton Paving Party</h2>
            <span class="float-end btn text-white bg-orange f-trebuchet mt-3 f-22">READ</span>
        </div>
        <script type='application/ld+json'>{"@context": "https://schema.org", "@type": "NewsArticle", "mainEntityOfPage": {"@type": "WebPage", "@id": "https://www.keystonecustomhome.com/blog/kellerton-paving-party/"}, "headline": "Kellerton Paving Party", "image": ["https://media.keystonecustomhome.com/333/2026/3/26/nicokam_260321_171_KCH-Kellerton.jpg"], "datePublished": "2026-03-26T05:00:00+00:00", "dateModified": "2026-03-27T20:33:37.587527+00:00", "publisher": {"@type": "Organization", "name": "Keystone Custom Homes"}}</script>
    </div>
</a>

                </div>
                
            </div>
        </div>
        
    </div>
</div>

        </div>
    </div>
</section>

        

<!-- ONBOARDING MODAL -->
<div class="modal fade onboarding-modal" id="oi-onboarding-modal" tabindex="-1" role="dialog" aria-labelledby="oi-onboarding-modal-aria-label">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header bg-secondary">
                <h4 class="display-4 modal-title text-white" id="oi-onboarding-modal-aria-label">Congratulations!</h4>
                <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
            </div>
            <div class="modal-body p-5">
                <div class="container">
                    <div class="row mb-3">
                        <div class="col-12 text-center">
                            <div class="wysiwyg f-16">
                            <p>Welcome to your MyKeystone account! Save your favorites, get personalized recommendations, and more!
</p>
                            </div>
                        </div>
                    </div>
                    <div class="row mb-4">
                        <div class="col-12 text-center px-4">
                            <img src="https://static.keystonecustomhome.com/keystone/images/onboarding-graphic.png?v=5ec0f71" class="onboarding-graphic mx-auto" loading="lazy" alt="Continue to the Dashboard" />
                        </div>
                    </div>
                    <div class="row">
                        <div class="col-12 text-center">
                            <a class="btn btn-primary mb-4 px-5 py-4 text-uppercase f-14" href="/my-portal/">Continue to the Dashboard</i></a>
                            <p class="btn d-block f-14" data-bs-dismiss="modal" aria-label="Close"><strong>No, I Want to Keep Viewing Homes  <i class="fas fa-angle-right"></i></strong></p>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>

<!-- WELCOME MODAL -->
<div class="modal fade" id="oi-welcome-modal" tabindex="-1" role="dialog" aria-labelledby="oi-welcome-modal-aria-label">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header bg-secondary pb-0 text-center">
                <h4 class="display-5 modal-title text-white" id="oi-welcome-modal-aria-label">Welcome Back</h4>
                <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
            </div>
            <div class="modal-body p-5">
                <div class="container">
                    <div class="row">
                        <div class="col-12 text-center">
                            <div class="wysiwyg f-16">
                            <p>Welcome back to your MyKeystone account! Revisit your favorites and see your recommendations.</p>
                            </div>
                            <a class="btn btn-primary mb-4 px-5 py-4 text-uppercase f-14" href="/my-portal/">Continue to your Dashboard</i></a>
                            <p class="btn d-block f-14" data-bs-dismiss="modal" aria-label="Close"><strong>No, I Want to Keep Viewing Homes  <i class="fas fa-angle-right"></i></strong></p>
                        </div>
                    </div>
               </div>
            </div>
        </div>
    </div>
</div>

<!-- LOGIN JOIN MODAL -->
<div class="modal fade f-16" id="oi-login-join-modal" tabindex="-1" role="dialog" aria-labelledby="oi-login-join-modal-title">
    <div class="modal-dialog modal-lg" role="document">
        <div class="modal-content">
            <div class="modal-header bg-secondary pb-0 border-bottom-0 pt-6">
                <ul class="nav nav-tabs border-0" id="oi-login-join-tabs" role="tablist">
                    <li role="presentation" class="nav-item">
                        <a href="#oi-login-pane" id="oi-login-nav-tab" class="oi-login-nav-tab nav-link active f-20 text-uppercase fw-bold py-4 px-6 f-trebuchet" aria-controls="oi-login-pane" role="tab" data-bs-toggle="list">Login</a>
                    </li>
                    <li role="presentation" class="nav-item">
                        <a href="#oi-join-pane" id="oi-join-nav-tab" class="oi-join-nav-tab nav-link f-20 text-uppercase fw-bold py-4 px-6 f-trebuchet" aria-controls="oi-join-pane" role="tab" data-bs-toggle="list">Join</a>
                    </li>
                </ul>
                <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
            </div>
            <div class="modal-body px-5">
                <div class="tab-content" id="oi-login-join-content">
                    <div role="tabpanel" class="oi-login-join-pane tab-pane fade" id="oi-join-pane">
                        <div class="modal-title login-text">
                            <div class="row">
                                <div class="col-12 text-center">
                                    <h4 id="oi-login-join-modal-title" class="display-3">Account Signup</h4>
                                    <div class="wysiwyg f-16">
                                        <p>Signup for a MyKeystone account today and start saving your favorites, view personalized recommendations and more.</p>
                                    </div>
                                </div>
                            </div>
                            
                            <form id="oi-join-form" class="form-light form-sm-labels oi-retail-user-reg common-form pt-5" data-oi-form-autoload="ajax" data-oi-event="oi-retail-user-reg" method="post" action="/sign-up/">
                                <div id="oi-join-form_message" class="oi-form-message mb-4" style="display: none;"></div>
                                <input type="hidden" name="masterplan" value="">
                                <div class="row g-3 mb-3">
                                    <div class="form-group col-12 col-lg-6 required first_name">
                                        <label class="form-label" for="oi-join-form__first_name">First Name<span class="text-danger">*</span></label>
                                        <input id="oi-join-form__first_name" class="form-control default required" type="text" name="first_name" placeholder="First Name*" required>
                                        <span class="form-group-message"></span>
                                    </div>
                                    <div class="form-group col-12 col-lg-6 required last_name">
                                        <label class="form-label" for="oi-join-form__last_name">Last Name<span class="text-danger">*</span></label>
                                        <input id="oi-join-form__last_name" class="form-control default required" type="text" name="last_name" placeholder="Last Name*" required>
                                        <span class="form-group-message"></span>
                                    </div>
                                </div>
                                <div class="row g-3 mb-3">
                                    <div class="form-group col-12 col-lg-6 required email">
                                        <label class="form-label" for="oi-join-form__email">Email<span class="text-danger">*</span></label>
                                        <input id="oi-join-form__email" class="form-control default required" type="email" name="email" placeholder="Email*" required>
                                        <span class="form-group-message"></span>
                                    </div>
                                    <div class="form-group col-12 col-lg-6 required phone">
                                        <label class="form-label" for="oi-join-form__phone">Phone<span class="text-danger">*</span></label>
                                        <input id="oi-join-form__phone" class="form-control default required" type="tel" name="phone" placeholder="Phone*" required>
                                        <span class="form-group-message"></span>
                                    </div>
                                </div>
                                <div class="row g-3 mb-3">
                                    <div class="form-group col-12 col-lg-6 required password">
                                        <label class="form-label" for="oi-join-form__password">Password<span class="text-danger">*</span></label>
                                        <input id="oi-join-form__password" class="form-control default required" type="password" name="password" placeholder="Password*" required>
                                        <span class="form-group-message"></span>
                                    </div>
                                    <div class="form-group col-12 col-lg-6 required confirm_password">
                                        <label class="form-label" for="oi-join-form__confirm_password">Confirm Password<span class="text-danger">*</span></label>
                                        <input id="oi-join-form__confirm_password" class="form-control default required" type="password" name="confirm_password" placeholder="Confirm Password*" required>
                                        <span class="form-group-message"></span>
                                    </div>
                                </div>
                                <div class="row g-3 mb-3">
                                    <fieldset class="form-group col-12 user_type text-center">
                                        <legend class="form-label" class="pr-3">Are you using a Realtor?</legend>
                                        <label class="px-2">
                                            <span class="align-middle me-2">Yes</span>
                                            <input class="align-middle" type="radio" id="oi-join-form__realtor_yes" name="using_realtor" value="yes" />
                                        </label>
                                        <label class="px-2">
                                            <span class="align-middle me-2">No</span>
                                            <input class="align-middle" type="radio" id="oi-join-form__realtor_no" name="using_realtor" value="no" checked />
                                        </label>
                                        <span class="form-group-message"></span>
                                    </fieldset>
                                </div>
                                <div class="row g-3 mb-3">
                                    <fieldset class="form-group col-12 user_type text-center">
                                        <legend class="form-label" class="pr-3">Are you a Broker/Agent?</legend>
                                        <label class="px-2">
                                            <span class="align-middle me-2">Yes</span>
                                            <input class="align-middle" type="radio" id="oi-join-form__agent_yes" name="user_type" value="Realtor" />
                                        </label>
                                        <label class="px-2">
                                            <span class="align-middle me-2">No</span>
                                            <input class="align-middle" type="radio" id="oi-join-form__agent_no" name="user_type" value="Prospect" checked />
                                        </label>
                                        <span class="form-group-message"></span>
                                    </fieldset>
                                </div>
                                <div>
                                    
                                    
                                    
                                    <input type="hidden" name="primary_phone" class="primary_phone" id="keystonesignupform__primary_phone">
                                    
                                    
                                    
                                    <input type="hidden" name="item_of_interest_id" class="item_of_interest_id" id="keystonesignupform__item_of_interest_id">
                                    
                                    
                                    
                                    <input type="hidden" name="page_url" class="page_url" id="keystonesignupform__page_url">
                                    
                                    
                                    
                                    <input type="hidden" name="oi_form_id" value="keystonesignupform" class="oi_form_id" id="keystonesignupform__oi_form_id">
                                    
                                    
                                    
                                    <input type="hidden" name="ga4_client_id" class="ga4_client_id" id="keystonesignupform__ga4_client_id">
                                    
                                    
                                    
                                    <input type="hidden" name="floorplan_of_interest" class="floorplan_of_interest" id="keystonesignupform__floorplan_of_interest">
                                    
                                    
                                    
                                    <input type="hidden" name="item_of_interest_type" value="location" class="item_of_interest_type" id="keystonesignupform__item_of_interest_type">
                                    
                                    
                                    
                                </div>
                                <div class="row g-3 mb-3">
                                    <div class="col-12 text-center">
                                        <button type="submit" class="btn btn-primary px-5 py-3 f-16 text-uppercase">Get Started</button>
                                    </div>
                                </div>
                            </form>
                        </div>
                    </div>
                    <div role="tabpanel" class="oi-login-join-pane tab-pane fade show active" id="oi-login-pane">
                       <div class="container">
                            <div class="row">
                                <div class="col-12 text-center">
                                    <h4 class="display-3">Welcome Back</h4>
                                    <div class="wysiwyg f-16">
                                        <p>Don't have an account? <a class="oi-join-link text-dark text-underline" href="#">Signup here.</a></p>
                                    </div>
                                </div>
                            </div>
                            <div class="row justify-content-center">
                                <div class="col-12 col-lg-9 col-xl-8">
                                    <form id="oi-login-form" class="form-light contact-info form-sm-labels common-form" data-oi-form-autoload="ajax" method="post" action="/login/">
                                        <div id="oi-login-form_message" class="mb-4 oi-form-message" style="display: none;"></div>
                                        <div class="row mb-3">
                                            <div class="form-group col required emailfield emailinput email">
                                                <label class="form-label" for="oi-login-form__email">Email<span class="text-danger">*</span></label>
                                                <input id="oi-login-form__email" class="form-control default required" type="email" name="email" placeholder="Email" required>
                                                <span class="form-group-message"></span>
                                            </div>
                                        </div>
                                        <div class="row mb-3">
                                            <div class="form-group col required charfield passwordinput password">
                                                <label class="form-label" for="oi-login-form__password">Password<span class="text-danger">*</span></label>
                                                <input id="oi-login-form__password" class="form-control default required" type="password" name="password" placeholder="Password" required>
                                                <span class="form-group-message"></span>
                                            </div>
                                        </div>
                                        <div class="row mb-3">
                                            <div class="col text-center">
                                                <button type="submit" class="btn btn-primary mb-3 px-5 py-3 f-16 text-uppercase">Login</button>
                                                <a id="oi-forgot-password-link" class="d-block small oi-forgot-password-link" data-bs-toggle="modal" data-bs-target="#oi-password-forgot-modal"><strong>Forgot Your Password?</strong></a>
                                            </div>
                                        </div>
                                    </form>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>

            

            <div class="modal-footer bg-secondary text-white d-block text-center">
                <div class="social-login">
                    
                    
                    <a href="/login/google/redirect/">
                        <div class="gp pt-1 pb-1">
                            <i class="fab fa-google text-white"></i>
                            <span class="text-white">Sign In with Google</span>
                        </div>
                    </a>
                    
                </div>
                <div class="wysiwyg f-16 small">
                    <p>Are you having trouble accessing your account?
<br>
<a href="/contact-us/" class="text-orange text-underline" target="_blank">Contact us here</a> for assistance.</p>
                </div>
            </div>
        </div>
    </div>
</div>

<!-- PASSWORD FORGOT MODAL -->
<div class="modal fade f-16" id="oi-password-forgot-modal" tabindex="-1" aria-describedby="oi-password-forgot-modal-aria-desc" aria-labelledby="oi-password-forgot-modal-aria-label">
    <div class="modal-dialog modal-dialog-centered" role="document">
        <div class="modal-content">
            <div class="modal-header bg-secondary">
                <h4 class="display-6 text-white modal-title" id="oi-password-forgot-modal-aria-label">Forgot Your Password?</h4>
                <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
            </div>
            <div class="modal-body px-5 pt-5">
                <div class="container">
                    <p id="oi-password-forgot-modal-aria-desc" class="small">Enter your email address and we’ll send you a link to reset your password.</p>
                    <form id="oi-password-forgot-form" class="form-light form-sm-labels pb-3 common-form" data-oi-form-autoload="ajax" action="/password/forgot/" method="post">
                        <div class="mb-4">
                            <div id="oi-password-forgot-form_message" class="oi-form-message" style="display: none;"></div>
                        </div>
                        <div class="form-group mb-3 required emailfield emailinput email">
                            <label class="form-label" for="oi-password-forgot-form__email">Please enter your email.<span class="text-danger">*</span></label>
                            <input id="oi-password-forgot-form__email" class="form-control default required" type="email" name="email" placeholder="Enter Your Email Address" required>
                            <span class="form-group-message"></span>
                        </div>
                        <div class="mt-5 text-center mb-3">
                            <button type="submit" class="btn btn-primary px-5 py-3 f-16 text-uppercase">Get My Password</button>
                        </div>
                    </form>
                </div>
            </div>
            <div class="modal-footer bg-secondary text-white text-center">
                <div class="wysiwyg f-16 small mx-auto">
                    <p>Are you having trouble accessing your account?
<br>
<a href="/contact-us/" class="text-orange text-underline" target="_blank">Contact us here</a> for assistance.</p>
                </div>
            </div>
        </div>
    </div>
</div>

<!-- PASSWORD CHANGE MODAL -->
<div class="modal fade" id="oi-password-change-modal" tabindex="-1" aria-describedby="oi-password-change-modal-aria-desc" aria-labelledby="oi-password-change-modal-aria-label">
    <div class="modal-dialog modal-dialog-centered" role="document">
        <div class="modal-content">
            <div class="modal-header bg-secondary pb-0">
                <h4 class="display-3 modal-title" id="oi-password-change-modal-aria-label">Change Your Password</h4>
                <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
            </div>
            <div class="modal-body">
                <p id="oi-password-change-modal-aria-desc" class="small">Enter your email address and we’ll send you a link to reset your password.</p>
                <form class="form-light form-sm-labels common-form" id="oi-password-change-form" data-oi-form-autoload="ajax" action="/password/change/" method="post">
                    <div class="mb-4">
                        <div id="oi-password-change-form_message" class="oi-form-message mb-4" style="display: none;"></div>
                    </div>
                    <div class="form-group mb-3 required">
                        <label class="form-label" for="oi-password-change-form__current_password">Please enter you current password.<span class="text-danger">*</span></label>
                        <input id="oi-password-change-form__current_password" type="password" class="form-control default" placeholder="Your Current Password *" name="current_password">
                        <span class="form-group-message"></span>
                    </div>
                    <div class="form-group mb-3 required">
                        <label class="form-label" for="oi-password-change-form__new_password">Select a new password.<span class="text-danger">*</span><br/>
                            <span class="small">passwords must be at least six (6) characters in length.</span>
                        </label>
                        <input id="oi-password-change-form__new_password" type="password" class="form-control default" placeholder="New Password *" name="new_password" minlength="6">
                        <span class="form-group-message"></span>
                    </div>
                    <div class="form-group mb-3 required">
                        <input id="oi-password-change-form__confirm_password" type="password" class="form-control default" placeholder="Confirm New Password *" name="confirm_password" minlength="6" aria-label="Reenter your new password.">
                        <span class="form-group-message"></span>
                    </div>
                    <div class="mb-3 text-center">
                        <button type="submit" class="btn btn-primary">Change Password</button>
                    </div>
                </form>
            </div>
        </div>
    </div>
</div>
<!-- CONFIRMATION MODAL -->
<div id="oi-confirmation-modal" class="confirmation-modal modal fade f-16" tabindex="-1" role="dialog" aria-labelledby="confirmation-modal-aria-label" style="display: none;">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header bg-secondary">
                <div class="modal-title h1 text-white" id="oi-confirmation-modal-aria-label"></div>
                <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
            </div>
            <div class="modal-body p-5">
                <div class="container">
                    <div class="row mb-3">
                        <div class="col-12 text-center">
                            <p class="message"></p>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>

        <footer class="footer-nd position-relative bg-primary z-2 pt-xl-7 pb-7 pb-md-0">
	<div class="container mx-w-1220 pt-2">
		<div class="row">
			<div class="col-xl-3 col-12">
				<div class="logo d-none d-xl-block">
					<a href="/">
						<img src="https://static.keystonecustomhome.com/keystone/images/keystone-logo.png?v=dceda56" class="footer-logo" alt="Keystone Custom Homes logo" loading="lazy">
					</a>
				</div>
				<div class="contact-us">
					<ul class="d-flex pt-xl-4 mt-xl-3 mb-0 ps-2 py-xl-0 py-5 justify-content-center justify-content-xl-start align-items-center">
						<a href="/">
							<img src="https://static.keystonecustomhome.com/keystone/images/keystone_footer_30.png?v=d236fb2" class="d-block d-xl-none px-xl-0 px-4" alt="Keystone Custom Homes logo" loading="lazy" aria-hidden="true">
						</a>
						
						<li class="pe-4 pe-lg-5 px-lg-0 px-4"><a class="text-white display-10 oi-social-profile-click fab fa-facebook-f" href="https://www.facebook.com/keystonecustomhomes/" aria-label="Keystone Custom Homes on Facebook (opens in new window)" target="_blank"></a></li>
						
						
						<li class="pe-4 pe-lg-5 px-lg-0 px-4"><a class="text-white display-10 oi-social-profile-click fab fa-youtube" href="https://www.youtube.com/user/KeystoneCustomHomes" aria-label="Keystone Custom Homes on YouTube (opens in new window)"  target="_blank"></a></li>
						
						
						<li class="pe-4 pe-lg-5 px-lg-0 px-4"><a class="text-white display-10 oi-social-profile-click fab fa-instagram" href="https://www.instagram.com/kchhomes/" aria-label="Keystone Custom Homes on Instagram (opens in new window)"  target="_blank"></a></li>
						
						
						<li class="pe-4 pe-lg-5 px-lg-0 px-4"><a class="text-white display-10 oi-social-profile-click fab fa-pinterest-p" href="https://www.pinterest.com/kchomes/" aria-label="Keystone Custom Homes on Pinterest (opens in new window)"  target="_blank"></a></li>
						
						
						<li class="pe-4 pe-lg-5 px-lg-0 px-4"><a class="text-white display-10 oi-social-profile-click fab fa-houzz" href="https://www.houzz.com/pro/keystonecustomhomespa" aria-label="Keystone Custom Homes on Houzz (opens in new window)"  target="_blank"></a></li>
						
					</ul>
				</div>
			</div>
			
			<div class="col-sm-2 d-none d-xl-block">
				<div class="links">
					<h4 class="display-8 text-uppercase text-white">Find your home</h4>
					<ul class="mn-height ps-0">
						
						<li><a href="/find-your-home/">Where We Build</a></li>
						
						<li><a href="/quick-move-in/">Move-In Ready Homes</a></li>
						
						<li><a href="/find-your-home/home-models-search/">Floorplan Search</a></li>
						
						<li><a href="/on-your-lot/">On Your Lot</a></li>
						
						<li><a href="/find-your-home/media-gallery/photos/">New Home Gallery</a></li>
						
					</ul>
				</div>
			</div>
			
			
			<div class="col-sm-2 d-none d-xl-block">
				<div class="links">
					<h4 class="display-8 text-uppercase text-white">Personalize it</h4>
					<ul class="mn-height ps-0">
						
						<li><a href="/building-process/">Building Process</a></li>
						
						<li><a href="/my-key-choices/">My Key Choices</a></li>
						
						<li><a href="/design-studio/">Design Studio</a></li>
						
					</ul>
				</div>
			</div>
			
			
			<div class="col-sm-2 d-none d-xl-block">
				<div class="links">
					<h4 class="display-8 text-uppercase text-white">Why keystone?</h4>
					<ul class="ps-0">
						
						<li><a href="/about-us/">About Us</a></li>
						
						<li><a href="/faqs/">FAQs</a></li>
						
						<li><a href="/testimonials/">Testimonials</a></li>
						
						<li><a href="/blog/new-home-financing-faqs-loans-mortgages-interest-rates-and-payments/">New Home Financing FAQ</a></li>
						
						<li><a href="/realtors/">Realtors</a></li>
						
					</ul>
				</div>
			</div>
			
			
			<div class="col-sm-2 d-none d-xl-block">
				<div class="links">
					<h4 class="display-8 text-uppercase text-white">Contact Us</h4>
					<ul class="ps-0">
						
						<li><a href="/contact-us/">Contact Us</a></li>
						
						<li><a href="/careers/">Careers</a></li>
						
						<li><a href="/blog/">Keystone Blog</a></li>
						
						<li><a href="/land-acquisition/">Sell Land to Keystone</a></li>
						
						<li><a href="/trade-partners/">Become a Trade Partner</a></li>
						
					</ul>
				</div>
			</div>
			
		</div>
	</div>
	<div class="copyright py-3 mt-4 d-none d-xl-block">
		<div class="container mx-w-1220">
			<div class="row">
				<div class="col-md-4 no-padding text-white">
					&copy; 2026 Keystone Custom Homes, All rights reserved.
				</div>
				
				<div class="col-md-4 no-padding">
					<div class="row">
						
						<div class="col-md-4 no-padding">
							<a href="/sitemap/" class="text-white">Site Map</a>
						</div>
						
						<div class="col-md-4 no-padding">
							<a href="#" class="text-white">Terms of service</a>
						</div>
						
						<div class="col-md-4 no-padding">
							<a href="/privacy-policy/" class="text-white">Privacy Policy</a>
						</div>
						
					</div>
				</div>
				<div class="col-md-4 align-right no-padding">
				</div>
				
			</div>
		</div>
	</div>
	<div class="bottom-osc-bar w-100 d-block d-md-none">
		<div class="d-flex justify-content-start align-items-center">
			
			<button type="button" data-bs-toggle="modal" data-bs-target="#oscModal" class="border-0 text-white fs-2 lh-1 osc-text position-relative">
				HAVE A<br> QUESTION?
			</button>
			
			
			<a class="d-block text-center text-white ps-5 fs-2" href="sms:7173689831">
				<div><i class="far fa-comment-dots fs-1"></i></div>
				<div>Text</div>
			</a>
			
			
			<button type="button" data-bs-toggle="modal" data-bs-target="#oscModal" class="d-block text-center text-white ps-5 fs-2 border-0 bg-transparent">
				<div><i class="fas fa-envelope"></i></div>
				<div>Email</div>
			</button>
			
		</div>
	</div>
</footer>

<div class="modal fade" id="oscModal" tabindex="-1" aria-labelledby="oscModal" aria-hidden="true">
	<div class="modal-dialog">
		<div class="modal-content p-3">
			<div class="modal-header">
				<h5 class="modal-title display-3 text-center text-primary f-trebuchet lh-1 px-5" id="oscModal">Please fill out these fields below and we'll be in touch soon!
				</h5>
				<button type="button" class="btn-close border-0 f-40 bg-transparent text-orange position-absolute t-0 r-0" data-bs-dismiss="modal" aria-label="Close">
					+
				</button>
			</div>
			<div class="modal-body p-4">
				<div class="common-form f-14">
					<div class="pt-4">
						<script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/embed/v2.js"></script>
<script>
  hbspt.forms.create({
    region: "na1",
    portalId: "9367999",
    formId: "010c2de9-0620-45a5-b9e5-251f382768c2"
  });
</script>
					</div>
					
				</div>
			</div>
		</div>
	</div>
</div>

        
        <!-- Start of HubSpot Embed Code -->
        <script type="text/javascript" id="hs-script-loader" async defer src="//js.hs-scripts.com/9367999.js"></script>
        <!-- End of HubSpot Embed Code -->
        



    
        <script src="https://static.keystonecustomhome.com/keystone/js/vendor.footer.min.js?v=fabab3e"></script>
    

    
        <script src="https://static.keystonecustomhome.com/keystone/js/keystone.min.js?v=49247a2"></script>
    

    
        <script src="https://static.keystonecustomhome.com/assets/js/oilib.js?v=ed5dc6b"></script>
    

    
        <script src="https://static.keystonecustomhome.com/assets/js/hfa.js?v=2fa6556"></script>
    












<script>
    
</script>

    </body>
</html>
