<!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": "BlogPostDetail"});
    

    
    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"}, "nonlisting_content_ids": ["HF-C333-BP9256"]};
    


</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 Expands Into The Carolinas | Keystone Custom Homes</title>
        <meta name="description" content="Keystone Custom Homes and Evans Coghill Homes join together under the Keystone brand to bring new, custom homes to the greater Charlotte Area. Learn more...">
        <link rel="canonical" href="https://www.keystonecustomhome.com/blog/keystone-custom-homes-expands-into-the-carolinas/" />
        <meta id="oi-og-title" property="og:title" content="Keystone Custom Homes Expands Into The Carolinas | Keystone Custom Homes" />
        <meta property="og:site_name" content="Keystone Custom Homes" />
        <meta property="og:image" content="https://media.keystonecustomhome.com/333/2022/8/5/VEs001_Day_2-28.jpeg?width=1919&amp;height=1188&amp;fit=bounds&amp;ois=d8ac77d" />
        <meta property="og:image:width" content="1919" />
        <meta property="og:image:height" content="1188" />
        <meta property="og:url" content="https://www.keystonecustomhome.com/blog/keystone-custom-homes-expands-into-the-carolinas/" />
        <meta property="og:type" content="website" />
        
        <meta property="og:description" content="Keystone Custom Homes and Evans Coghill Homes join together under the Keystone brand to bring new, custom homes to the greater Charlotte Area. Learn more..." />
        <meta name="twitter:card" content="summary_large_image" />
        <meta name="twitter:site" content="https://www.keystonecustomhome.com/blog/keystone-custom-homes-expands-into-the-carolinas/" />
        <meta id="oi-twitter-title" name="twitter:title" content="Keystone Custom Homes Expands Into The Carolinas | Keystone Custom Homes" />
        <meta name="twitter:description" content="Keystone Custom Homes and Evans Coghill Homes join together under the Keystone brand to bring new, custom homes to the greater Charlotte Area. Learn more..." />
        <meta name="twitter:image" content="https://media.keystonecustomhome.com/333/2022/8/5/VEs001_Day_2-28.jpeg?width=1919&amp;height=1188&amp;fit=bounds&amp;ois=d8ac77d" />
        <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(() => {
			
		});
		</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 type='application/ld+json'>{"@context": "https://schema.org", "@type": "NewsArticle", "mainEntityOfPage": {"@type": "WebPage", "@id": "https://www.keystonecustomhome.com/blog/keystone-custom-homes-expands-into-the-carolinas/"}, "headline": "Keystone Custom Homes Expands Into The Carolinas", "image": ["https://media.keystonecustomhome.com/333/2022/8/5/VEs001_Day_2-28.jpeg"], "datePublished": "2022-10-11T05:45:00+00:00", "dateModified": "2025-12-09T18:55:06.616417+00:00", "publisher": {"@type": "Organization", "name": "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-9256 blog-detail 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">
                        
                        <div class="h1 f-trebuchet mb-0 text-white">Keystone Blog</div>
                        
                    </div>
                </div>
            </div>
        </div>
    </div>
</section>


<section class="py-7">
    <div class="container mx-w-1170">
        <div class="row">
            <div class="col-12">
                <a class="back-link d-inline-block mb-7" href="/blog/"><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 text-primary">BLOG HOME</span></a>
            </div>
            <div class="col-12">
                <div class="detail">
                    <div class="post-wrap">
                        
                        <div class="post-date position-absolute l-0 bg-orange-light text-white f-30 p-4 text-center text-uppercase lh-30">
                            <div class="px-md-2 px-1">Oct</div>
                            <div class="px-md-2 px-1">11</div>
                            <div class="px-md-2 px-1">2022</div>
                        </div>
                        
                        <header class="entry-header text-center m-auto w-100">
                            <h1 class="entry-title">Keystone Custom Homes Expands Into The Carolinas</h1>
                        </header>
                        
                        <div class="wysiwyg oi-wysiwyg">
                            <p></p><p>Three-time recipient of America’s Best Builder Award Keystone Custom Homes, based in Lancaster PA, and Charlotte NC based Evans Coghill Homes are proud to announce the decision to join under the Keystone brand, effective October 1, 2022. This powerful alliance combines Evans Coghill's local market expertise in the Carolinas with Keystone's outstanding homebuilding processes, caring customer service, and award-winning innovation to offer custom homes at an exceptional value through the implementation of their buyer-driven design process and strategic land positioning.</p><p>The desire to expand their collective reach into the Carolinas and across the east coast is the result of a personal and cultural match between the two companies and founders, Alan Banks, and Jeff Rutt who outlined their vision over a bowl of the iconic Southern dessert, banana pudding in a local eatery in Belmont NC, underscoring their common goal to fund faith-driven stewardship across the globe and share the perfect metaphor for magnifying the importance of ‘home.’</p><p>Along with the insistence that both homebuilding and their initiatives of ‘hope’ can restore dignity and purpose to the individual and the community at large they stand ready to put their beliefs into action. “This exciting changeover isn’t just a shift in company name or a boast about product, although both are vital to our identity…” says Division President Alan Banks. “It is a new chance to grow our goodwill and maintain a presence of home building excellence for generations to come.” </p>
    <div class="oi-aspect sixteen-nine oi-video oi-video-youtube oi-video-uid-lAqZjxELvS"
        id="lAqZjxELvS-container">
        
            <div class="oi-aspect-spacer"></div>
        
        
            <iframe
                id="lAqZjxELvS"
                class="oi-video-iframe embed-responsive-item oi-fit-fill"
                data-oi-video-vendor="youtube"
                data-oi-video-vendor-video-id="nvMurJUdArg"
                data-oi-video-autoload="true"
                data-oi-video-has="controls"
                
                
                    src="https://www.youtube.com/embed/nvMurJUdArg?rel=0&enablejsapi=1&origin=https://www.keystonecustomhome.com"
                
                
                
                
                
                width="640"
                height="338"
                loading="lazy"
                title=""
                allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
                
                    onload="oiVideoOnLoad(this)" 
                
                frameborder="0" 
                allowfullscreen></iframe>
        
        
    </div>
    

<p></p><p style="text-align: center; "><b>Explore our available North Carolina communities <a href="https://www.keystonecustomhome.com/find-your-home/nc/" target="_blank">here</a></b></p>
                        </div>
                        
                    </div>
                    <div class="detail-footer text-center bg-white-smoke pt-5 pb-6">
                        <p class="mb-0 f-20 text-secondary text-uppercase fw-semi-bold">share this post</p>
                        <script type="text/javascript" src="https://platform-api.sharethis.com/js/sharethis.js#property=62d5a7b701f23300194c6ed3&product=inline-share-buttons" async="async"></script>
                        <div class="sharethis-inline-share-buttons"></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>
