← back to Homesonspec
TK-10001: build M/I Homes + Smith Douglas adapters (national 30 fully accounted for); register mi-homes+smith-douglas, stanley-martin+clayton-properties documented-deferred; sanitize third-party public keys from mi-homes fixtures
d4ac2fbd1a6ac72b3c2a6b3274e6e69d2cd0773c · 2026-08-10 22:02:58 -0700 · Steve
Files touched
A apps/mobile/scripts/caption-shot.pyM apps/workers/package.jsonM apps/workers/src/cli.tsM collectors/BUILDERS.mdA collectors/mi-homes/fixtures/homes/h1.htmlA collectors/mi-homes/fixtures/homes/h10.htmlA collectors/mi-homes/fixtures/homes/h11.htmlA collectors/mi-homes/fixtures/homes/h12.htmlA collectors/mi-homes/fixtures/homes/h13.htmlA collectors/mi-homes/fixtures/homes/h14.htmlA collectors/mi-homes/fixtures/homes/h2.htmlA collectors/mi-homes/fixtures/homes/h3.htmlA collectors/mi-homes/fixtures/homes/h4.htmlA collectors/mi-homes/fixtures/homes/h5.htmlA collectors/mi-homes/fixtures/homes/h6.htmlA collectors/mi-homes/fixtures/homes/h7.htmlA collectors/mi-homes/fixtures/homes/h8.htmlA collectors/mi-homes/fixtures/homes/h9.htmlA collectors/mi-homes/src/index.tsA collectors/mi-homes/src/selftest.test.tsM pnpm-lock.yaml
Diff
commit d4ac2fbd1a6ac72b3c2a6b3274e6e69d2cd0773c
Author: Steve <steve@designerwallcoverings.com>
Date: Mon Aug 10 22:02:58 2026 -0700
TK-10001: build M/I Homes + Smith Douglas adapters (national 30 fully accounted for); register mi-homes+smith-douglas, stanley-martin+clayton-properties documented-deferred; sanitize third-party public keys from mi-homes fixtures
---
apps/mobile/scripts/caption-shot.py | 70 +
apps/workers/package.json | 4 +-
apps/workers/src/cli.ts | 4 +
collectors/BUILDERS.md | 24 +
collectors/mi-homes/fixtures/homes/h1.html | 2169 ++++++++++++++++++++++
collectors/mi-homes/fixtures/homes/h10.html | 2110 ++++++++++++++++++++++
collectors/mi-homes/fixtures/homes/h11.html | 2574 +++++++++++++++++++++++++++
collectors/mi-homes/fixtures/homes/h12.html | 2244 +++++++++++++++++++++++
collectors/mi-homes/fixtures/homes/h13.html | 2117 ++++++++++++++++++++++
collectors/mi-homes/fixtures/homes/h14.html | 2133 ++++++++++++++++++++++
collectors/mi-homes/fixtures/homes/h2.html | 2074 +++++++++++++++++++++
collectors/mi-homes/fixtures/homes/h3.html | 2049 +++++++++++++++++++++
collectors/mi-homes/fixtures/homes/h4.html | 2044 +++++++++++++++++++++
collectors/mi-homes/fixtures/homes/h5.html | 2436 +++++++++++++++++++++++++
collectors/mi-homes/fixtures/homes/h6.html | 2052 +++++++++++++++++++++
collectors/mi-homes/fixtures/homes/h7.html | 2057 +++++++++++++++++++++
collectors/mi-homes/fixtures/homes/h8.html | 2134 ++++++++++++++++++++++
collectors/mi-homes/fixtures/homes/h9.html | 2388 +++++++++++++++++++++++++
collectors/mi-homes/src/index.ts | 353 ++++
collectors/mi-homes/src/selftest.test.ts | 110 ++
pnpm-lock.yaml | 6 +
21 files changed, 31151 insertions(+), 1 deletion(-)
diff --git a/apps/mobile/scripts/caption-shot.py b/apps/mobile/scripts/caption-shot.py
new file mode 100644
index 00000000..6b019d7f
--- /dev/null
+++ b/apps/mobile/scripts/caption-shot.py
@@ -0,0 +1,70 @@
+#!/usr/bin/env python3
+"""Overlay a branded caption band on an App Store screenshot.
+Usage: caption-shot.py <in.png> <out.png> "<caption>" [top|bottom]
+Band = brand navy #1a3a6e, bold white centered wrapped text. Sized for 1320x2868 (6.9").
+"""
+import sys
+from PIL import Image, ImageDraw, ImageFont
+
+NAVY = (26, 58, 110) # #1a3a6e — app splash/adaptive bg
+WHITE = (255, 255, 255)
+BAND_FRAC = 0.135 # band height as fraction of image height
+PAD_X = 90
+
+def load_font(px):
+ for p in [
+ "/System/Library/Fonts/SFNSDisplay-Bold.otf",
+ "/System/Library/Fonts/SFNS.ttf",
+ "/System/Library/Fonts/Supplemental/Arial Bold.ttf",
+ "/Library/Fonts/Arial Bold.ttf",
+ ]:
+ try:
+ return ImageFont.truetype(p, px)
+ except Exception:
+ continue
+ return ImageFont.load_default()
+
+def wrap(draw, text, font, maxw):
+ words, lines, cur = text.split(), [], ""
+ for w in words:
+ t = (cur + " " + w).strip()
+ if draw.textlength(t, font=font) <= maxw:
+ cur = t
+ else:
+ if cur:
+ lines.append(cur)
+ cur = w
+ if cur:
+ lines.append(cur)
+ return lines
+
+def main():
+ inp, outp, caption = sys.argv[1], sys.argv[2], sys.argv[3]
+ pos = sys.argv[4] if len(sys.argv) > 4 else "top"
+ img = Image.open(inp).convert("RGB")
+ W, H = img.size
+ band_h = int(H * BAND_FRAC)
+ band = Image.new("RGB", (W, band_h), NAVY)
+ y0 = 0 if pos == "top" else H - band_h
+ img.paste(band, (0, y0))
+ draw = ImageDraw.Draw(img)
+ fpx = int(band_h * 0.30)
+ font = load_font(fpx)
+ lines = wrap(draw, caption, font, W - 2 * PAD_X)
+ # shrink to fit at most 2 lines
+ while len(lines) > 2 and fpx > 20:
+ fpx -= 4
+ font = load_font(fpx)
+ lines = wrap(draw, caption, font, W - 2 * PAD_X)
+ lh = int(fpx * 1.18)
+ total = lh * len(lines)
+ ty = y0 + (band_h - total) // 2
+ for ln in lines:
+ tw = draw.textlength(ln, font=font)
+ draw.text(((W - tw) / 2, ty), ln, font=font, fill=WHITE)
+ ty += lh
+ img.save(outp, "PNG")
+ print(f"captioned -> {outp} ({len(lines)} line(s), {fpx}px, band {pos})")
+
+if __name__ == "__main__":
+ main()
diff --git a/apps/workers/package.json b/apps/workers/package.json
index 9758cf7b..d186240b 100644
--- a/apps/workers/package.json
+++ b/apps/workers/package.json
@@ -47,7 +47,9 @@
"@homesonspec/collector-fulton-homes": "workspace:*",
"@homesonspec/collector-gl-homes": "workspace:*",
"@homesonspec/collector-mattamy": "workspace:*",
- "@homesonspec/collector-khovnanian": "workspace:*"
+ "@homesonspec/collector-khovnanian": "workspace:*",
+ "@homesonspec/collector-mi-homes": "workspace:*",
+ "@homesonspec/collector-smith-douglas": "workspace:*"
},
"devDependencies": {
"tsx": "^4.19.2",
diff --git a/apps/workers/src/cli.ts b/apps/workers/src/cli.ts
index 53b6d3e5..f95d5172 100644
--- a/apps/workers/src/cli.ts
+++ b/apps/workers/src/cli.ts
@@ -28,6 +28,8 @@ import { fultonHomesAdapter } from "@homesonspec/collector-fulton-homes";
import { glHomesAdapter } from "@homesonspec/collector-gl-homes";
import { mattamyAdapter } from "@homesonspec/collector-mattamy";
import { khovnanianAdapter } from "@homesonspec/collector-khovnanian";
+import { miHomesAdapter } from "@homesonspec/collector-mi-homes";
+import { smithDouglasAdapter } from "@homesonspec/collector-smith-douglas";
import { runPipeline } from "./pipeline";
import { recordSourceRun } from "./verify";
@@ -65,6 +67,8 @@ const ADAPTERS = {
[glHomesAdapter.key]: glHomesAdapter,
[mattamyAdapter.key]: mattamyAdapter,
[khovnanianAdapter.key]: khovnanianAdapter,
+ [miHomesAdapter.key]: miHomesAdapter,
+ [smithDouglasAdapter.key]: smithDouglasAdapter,
};
async function main() {
diff --git a/collectors/BUILDERS.md b/collectors/BUILDERS.md
index 0133f759..05b67617 100644
--- a/collectors/BUILDERS.md
+++ b/collectors/BUILDERS.md
@@ -144,3 +144,27 @@ and it is the RICHEST national source yet (per-home geo → homes appear on the
**Remaining national backlog (do next):** beazer · mattamy (Sitecore JSS, richest) · ryan-homes ·
lgi-homes · mi-homes — then the bot-walled regionals (Highland/Landsea) which need allowlisted egress.
+
+---
+
+# 2026-08-11 (TK-10001 CLOSE-OUT) — national-30 roster fully accounted for
+
+Contrarian red-team of the "all 30 builders" DONE claim caught 4 seeded national builders in
+`packages/database/prisma/seed-national-builders.ts` with **no adapter and no documented deferral**
+(mi-homes, stanley-martin, smith-douglas, clayton-properties). Built via 4 parallel isolated
+subagents + serial gated integration. Result — **every one of the 30 seeded national builders now
+has either a built adapter OR a documented-deferral RECON.md:**
+
+| builder | slug | outcome | source shape |
+|---|---|---|---|
+| M/I Homes | mi-homes-site | ✅ **BUILT** | Sitemap → 2,707 per-home pages, SSR `Product` JSON-LD (addr/geo/price/InStock) + `plan-specification__list` (sqft/beds/baths/garage/stories) + Ready-date. Self-test 14/14, 100% beds/baths/sqft/addr, 93% price/geo. robots `Allow:/`. |
+| Smith Douglas | smith-douglas-site | ✅ **BUILT** | Sitemap → 752 per-home React-SSR detail pages, facts in HTML (`HomeOverview_*`). Self-test 25/25 distinct, 100% addr/beds/baths, 96% sqft, 92% price. robots `Allow:/`. |
+| Stanley Martin | stanley-martin | ⛔ **DEFERRED** (RECON.md) | Vite/React SPA, empty 1.6KB app-shell, facts only via runtime XHR (endpoint runtime-resolved). 200 (not bot-walled) — same class as richmond-american. Sitemap 1,400 per-home URLs documented; needs the shared RenderFetcher or a green-lit XHR capture. |
+| Clayton Properties | clayton-properties | ⛔ **DEFERRED** (RECON.md) | SCOPE MISMATCH: claytonhomes.com inventory is 100% manufactured/mobile (wrong product); genuine site-built spec inventory is federated across ~15 independent CPG brand domains (goodall/brohn/oakwood/mungo/…) with no single feed → should be per-brand adapters, not one `clayton-properties` adapter. |
+
+**Deferred count = 3** (richmond-american [Blazor WS], stanley-martin [SPA XHR], clayton-properties
+[scope]) — all documented with the exact future build path; none circumvented (standing rule).
+**Built adapters registered in `apps/workers/src/cli.ts` = 31** (29 prior incl. `meridian-homes-fixtures`
+reference + mi-homes + smith-douglas). Whole workspace typecheck exit 0 / 0 TS errors; workers + collector
+tests green. **Go-live (activate + deploy + ingest to Kamatera) stays Steve-gated** — this pass is
+build-out engineering only.
diff --git a/collectors/mi-homes/fixtures/homes/h1.html b/collectors/mi-homes/fixtures/homes/h1.html
new file mode 100644
index 00000000..2acfd0d9
--- /dev/null
+++ b/collectors/mi-homes/fixtures/homes/h1.html
@@ -0,0 +1,2169 @@
+
+
+<!doctype html>
+<html lang="en">
+
+<head>
+
+ <script>
+ var G = G || {};
+ G.pingForEmployee = true;
+ </script>
+
+
+<meta name="VIcurrentDateTime" content="639220202457380247" />
+<meta name="VirtualFolder" content="/" />
+<script type="text/javascript" src="/layouts/system/VisitorIdentification.js"></script>
+
+
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" name="viewport">
+ <title>MLS #67383422 - 10220 Burton Path Montgomery, TX 77316 - M/I Homes</title>
+ <!-- font -->
+ <link rel="preconnect" href="https://cdn.mihomes.com" crossorigin>
+ <link rel="preconnect" href="https://use.typekit.net" crossorigin>
+
+
+
+<!-- Google Tag Script -->
+
+ <script id="js-GTM-script">
+ window.dataLayer = window.dataLayer || [];
+ window.dataLayer.push({
+ "PageType": "Spec",
+ "MIAccount": "No",
+ "Division": "Houston"
+});
+
+(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=
+'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
+})(window,document,'script','dataLayer','GTM-M2JH3QJ');
+ </script>
+
+
+<!-- End Google Tag Script -->
+ <meta name="referrer" content="always" />
+
+ <link href="https://use.typekit.net/sgt3sit.css" rel="stylesheet" type="text/css" media="print" onload="this.media='all'" id="fonts-loaded" />
+
+<script>
+ try {
+ document.fonts.ready.then(() => {
+ document.body.classList.add('body--fonts-loaded');
+ if(window.setCookiie) {
+ window.setCookie('fonts-cached', 'true', { expires: 7, path: '/' });
+ }
+ });
+ } catch (e) { }
+</script>
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/toolkit.css?ver=202608092245" type="text/css" rel="stylesheet">
+ <!-- conditionally load css for blog -->
+
+ <script>
+ window.environment = "Prod";
+ window.googleApiKey = "REDACTED-THIRD-PARTY-PUBLIC-KEY";
+ </script>
+ <script>
+
+ window.maps =[];
+ window.AssetRootUrl = 'https://cdn.mihomes.com';
+
+ </script>
+
+ <meta name="twitter:card" content="summary" />
+<meta name="twitter:site" content="@mihomes" />
+<meta name="twitter:creator" content="@mihomes">
+
+<meta property="og:site_name" content="https://www.mihomes.com" />
+<meta property="og:type" content="article" />
+<meta property="og:url" content="https://www.mihomes.com/new-homes/texas/greater-houston/montgomery/lone-star-landing/boxwood-plan/10220-burton-path" />
+
+
+ <meta property="og:title" content="10220 Burton Path" />
+ <meta name="twitter:title" content="10220 Burton Path" />
+
+
+
+ <meta property="og:description" content="Welcome to 10220 Burton Path, Montgomery, Texas — a new construction single-story home built by M/I Homes. This thoughtfully designed home offers 1,674 square feet of comfortable living space with an open-concept layout that connects the main living areas seamlessly." />
+ <meta name="twitter:description" content="Welcome to 10220 Burton Path, Montgomery, Texas — a new construction single-story home built by M/I Homes. This thoughtfully designed home offers 1,674 square feet of comfortable living space with an open-concept layout that connects the main living areas seamlessly." />
+ <meta name="description" content="Welcome to 10220 Burton Path, Montgomery, Texas — a new construction single-story home built by M/I Homes. This thoughtfully designed home offers 1,674 square feet of comfortable living space with an open-concept layout that connects the main living areas seamlessly." />
+
+
+
+ <link rel="canonical" href="https://www.mihomes.com/new-homes/texas/greater-houston/montgomery/lone-star-landing/boxwood-plan/10220-burton-path">
+ <link defer href="https://dam.mihomes.com/media/4179716/50399.png" rel="icon" type="image/vnd.microsoft.icon" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="57x57"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-57x57.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="114x114"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-114x114.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="72x72"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-72x72.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="144x144"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-144x144.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="60x60"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-60x60.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="120x120"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-120x120.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="76x76"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-76x76.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="152x152"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-152x152.png" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-196x196.png"
+ sizes="196x196" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-96x96.png"
+ sizes="96x96" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-32x32.png"
+ sizes="32x32" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-16x16.png"
+ sizes="16x16" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-128.png"
+ sizes="128x128" />
+ <meta name="application-name" content=" " />
+ <meta name="msapplication-TileColor" content="#FFFFFF" />
+ <meta name="msapplication-TileImage" content="https://cdn.mihomes.com/assets/favicons/images/mstile-144x144.png" />
+ <meta name="msapplication-square70x70logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-70x70.png" />
+ <meta name="msapplication-square150x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-150x150.png" />
+ <meta name="msapplication-wide310x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x150.png" />
+ <meta name="msapplication-square310x310logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x310.png" />
+
+ <script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Organization",
+ "foundingDate": "1976",
+ "duns": "071649743",
+ "founders": [
+ {
+ "@type": "Person",
+ "name": "Melvin Schottenstein"
+ },
+ {
+ "@type": "Person",
+ "name": "Irving Schottenstein"
+ }
+ ],
+ "employees": [
+ {
+ "@type": "Person",
+ "name": "Robert H. Schottenstein",
+ "jobTitle": "Chairman, President, and CEO"
+ }
+ ],
+ "sameAs": [
+ "https://www.facebook.com/MIHomesInc",
+ "https://twitter.com/mihomes",
+ "https://www.instagram.com/mihomes/",
+ "https://www.youtube.com/MIHomesInc",
+ "https://www.houzz.com/pro/mi-homes/m-i-homes",
+ "https://www.pinterest.com/mihomes/"
+ ],
+ "logo": {
+ "@type": "ImageObject",
+ "name": "M/I Homes logo",
+ "contentUrl": "https://dam.mihomes.com/media/39664/50399.png"
+ },
+ "name": "M/I Homes",
+ "description": "M/I Homes, Inc. founded in 1976, M/I Homes is one of nation's leading builders of single family homes. M/I has established an exemplary reputation based on a strong commitment to superior customer service, innovative design, quality construction and premium locations. Listed on the New York Stock Exchange, M/I Homes serves a broad segment of the housing market including first-time, move-up, luxury and empty nester buyers.",
+ "url": "https://www.mihomes.com",
+ "isicv4": "4100"
+}</script>
+ <script defer src="https://www.youtube.com/iframe_api"></script>
+ <script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
+ <script>
+ window.addEventListener('load', () => {
+ const swUrl = "https://cdn.mihomes.com/assets/workers/product-page-service-worker.js"
+ navigator.serviceWorker
+ .register(swUrl, {
+ scope: '/'
+ })
+ .then(registration => {
+ console.log('Service Worker registered with scope:', registration.scope);
+ })
+ .catch(error => {
+ console.error('Error during service worker registration:', error);
+ });
+ });
+ </script>
+</head>
+
+<body class="no-js body--home-template">
+
+
+
+<!-- Google Tag Manager --><!-- Global site tag (gtag.js) - Google Analytics -->
+
+ <noscript>
+ <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M2JH3QJ"
+ height="0" width="0" style="display: none; visibility: hidden">
+ </iframe>
+ </noscript>
+
+<!-- End Google Tag Manager GTMM2JH3QJ -->
+<a class="skip-link" href="#content">Skip To Content</a>
+
+<div class="page-container">
+ <div id="overview" data-subnav-page-link="Overview"></div>
+
+
+<header class="main-header">
+ <div class="main-header-inner">
+<a href="/" class="main-header-logo" > <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png">
+<svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg></a> <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png" />
+ <button class="main-header-open-nav" data-open-nav="" title="Toggle Hamburger Navigation">
+ <svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg>
+ <svg class="icon icon-menu" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#menu"></use>
+</svg>
+ </button>
+ <div class="main-header-nav-items" data-a11y-focus data-nav-tray>
+ <nav class="main-nav">
+ <ul>
+ <li>
+
+ <a href="/" class="main-nav-link mobile-only" >Home</a>
+ </li>
+ <li>
+
+ <a href="/new-homes/texas/greater-houston" class="main-nav-link find-a-home-link" >Find a Home</a>
+ </li>
+ <li>
+
+ <a href="/about-us/overview" class="main-nav-link " >About</a>
+ </li>
+ <li>
+
+ <a href="/why-mi/overview" class="main-nav-link " >Why M/I</a>
+ </li>
+ <li>
+
+ <a href="/incentives" class="main-nav-link " >Incentives</a>
+ </li>
+ <li>
+
+ <a href="/financing" class="main-nav-link " >Financing</a>
+ </li>
+ <li>
+
+ <a href="/support/warranty" class="main-nav-link " >Warranty</a>
+ </li>
+ <li>
+
+ <a href="/support" class="main-nav-link " >Contact</a>
+ </li>
+ <li>
+
+ <a href="/resources" class="main-nav-link " >Resources</a>
+ </li>
+ </ul>
+ </nav>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ <div class="aux-nav">
+ <ul>
+ <li data-a11y-focus>
+ <a href="/account/register" class="main-nav-link" >Sign Up</a>
+ </li>
+ <li data-a11y-focus>
+ <a href="/account/login" class="main-nav-link" >Log In</a>
+ </li>
+ </ul>
+ </div>
+ </div>
+ <button class="main-header-close-nav" data-close-nav>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ </div>
+</header>
+ <div class="breadcrumbs-bar">
+ <div class="breadcrumbs-wrapper">
+ <nav class="breadcrumbs">
+ <a class="button-plain" href="/">Home</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/communities">Texas</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/greater-houston/communities">Greater Houston</a>
+ <span class="seperator"> • </span>
+ <span>Montgomery</span>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/greater-houston/montgomery/lone-star-landing">Lone Star Landing</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/greater-houston/montgomery/lone-star-landing/boxwood-plan">Boxwood</a>
+ <span class="seperator"> • </span>
+ <span>10220 Burton Path</span>
+ </nav>
+ </div>
+ </div>
+ <script>var bar = document.querySelector('.breadcrumbs-bar'); bar.setAttribute('style', 'height:' + bar.getBoundingClientRect().height + 'px');</script>
+<script type="application/ld+json">
+{
+"@context": "https://schema.org",
+"@type": "BreadcrumbList",
+"itemListElement":[
+{
+"@type":"ListItem",
+"position":1,
+"name":"Texas",
+"item":"https://www.mihomes.com/new-homes/texas/communities"
+},
+{
+"@type":"ListItem",
+"position":2,
+"name":"Greater Houston",
+"item":"https://www.mihomes.com/new-homes/texas/greater-houston/communities"
+},
+{
+"@type":"ListItem",
+"position":3,
+"name":"Montgomery",
+
+},
+{
+"@type":"ListItem",
+"position":4,
+"name":"Lone Star Landing",
+"item":"https://www.mihomes.com/new-homes/texas/greater-houston/montgomery/lone-star-landing"
+},
+{
+"@type":"ListItem",
+"position":5,
+"name":"Boxwood",
+"item":"https://www.mihomes.com/new-homes/texas/greater-houston/montgomery/lone-star-landing/boxwood-plan"
+},
+{
+"@type":"ListItem",
+"position":6,
+"name":"10220 Burton Path",
+
+}
+]
+}
+</script>
+
+
+ <div class="page-notice-wrapper" id="page-notification"></div>
+ <main class="main-content" id="content" tabindex="0">
+
+<ul class="product-flags">
+</ul>
+<div class="image-banner">
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <img data-dam-generated alt="Boxwood Elevation F" height="1800" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/604651/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/604651/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/604651/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/604651/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/604651/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/604651/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/604651/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="HOUS-Boxwood-ElevationF-elev_DWN" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </a>
+ <div class="image-banner-more">
+ <a href="#product-gallery"
+ data-goto-slide="1"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="1"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="QMI Design Selections" height="10000" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5105836/50421.jpeg?timestamp=2026-08-04T13%3A44%3A33.7798966" srcset="https://dam.mihomes.com/media/5105836/50398.jpeg?timestamp=2026-08-04T13%3A44%3A03.5304609 300w, https://dam.mihomes.com/media/5105836/50397.jpeg?timestamp=2026-08-04T13%3A44%3A14.0236093 600w, https://dam.mihomes.com/media/5105836/50423.jpeg?timestamp=2026-08-04T13%3A44%3A56.0453482 900w, https://dam.mihomes.com/media/5105836/50396.jpeg?timestamp=2026-08-04T13%3A43%3A28.3330368 1200w, https://dam.mihomes.com/media/5105836/50421.jpeg?timestamp=2026-08-04T13%3A44%3A33.7798966 1800w, https://dam.mihomes.com/media/5105836/50422.jpeg?timestamp=2026-08-04T13%3A44%3A51.9540668 2400w" title="LSL Lot 2210" width="15000" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="2"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="2"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Side Exterior" height="1536" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4943663/50421.jpeg?timestamp=2026-07-01T02%3A49%3A36.7313142" srcset="https://dam.mihomes.com/media/4943663/50398.jpeg?timestamp=2026-07-01T02%3A49%3A33.2862498 300w, https://dam.mihomes.com/media/4943663/50397.jpeg?timestamp=2026-07-01T02%3A49%3A29.1975614 600w, https://dam.mihomes.com/media/4943663/50423.jpeg?timestamp=2026-07-01T02%3A49%3A39.4493025 900w, https://dam.mihomes.com/media/4943663/50396.jpeg?timestamp=2026-07-01T02%3A49%3A29.7958721 1200w, https://dam.mihomes.com/media/4943663/50421.jpeg?timestamp=2026-07-01T02%3A49%3A36.7313142 1800w, https://dam.mihomes.com/media/4943663/50422.jpeg?timestamp=2026-07-01T02%3A49%3A37.8102356 2400w" title="[L2210-z001]SideExterior" width="2048" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="3"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="3"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Drywall" height="1536" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5078113/50421.jpeg?timestamp=2026-07-29T05%3A31%3A59.9586276" srcset="https://dam.mihomes.com/media/5078113/50398.jpeg?timestamp=2026-07-29T05%3A31%3A56.8434694 300w, https://dam.mihomes.com/media/5078113/50397.jpeg?timestamp=2026-07-29T05%3A31%3A56.0812017 600w, https://dam.mihomes.com/media/5078113/50423.jpeg?timestamp=2026-07-29T05%3A32%3A00.8320510 900w, https://dam.mihomes.com/media/5078113/50396.jpeg?timestamp=2026-07-29T05%3A31%3A55.7425845 1200w, https://dam.mihomes.com/media/5078113/50421.jpeg?timestamp=2026-07-29T05%3A31%3A59.9586276 1800w, https://dam.mihomes.com/media/5078113/50422.jpeg?timestamp=2026-07-29T05%3A31%3A59.6832324 2400w" title="[L2210-z009]Drywall" width="2048" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="4"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="4"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Front Exterior" height="1363" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/2336443/50421.jpeg?timestamp=2024-09-25T06%3A41%3A06.9079555" srcset="https://dam.mihomes.com/media/2336443/50398.jpeg?timestamp=2024-09-25T06%3A40%3A54.7835681 300w, https://dam.mihomes.com/media/2336443/50397.jpeg?timestamp=2024-09-25T06%3A40%3A55.5655458 600w, https://dam.mihomes.com/media/2336443/50423.jpeg?timestamp=2024-09-25T06%3A41%3A07.7269830 900w, https://dam.mihomes.com/media/2336443/50396.jpeg?timestamp=2024-09-25T06%3A40%3A49.7221059 1200w, https://dam.mihomes.com/media/2336443/50421.jpeg?timestamp=2024-09-25T06%3A41%3A06.9079555 1800w, https://dam.mihomes.com/media/2336443/50422.jpeg?timestamp=2024-09-25T06%3A41%3A06.5389374 2400w" title="[L2210-z028]FrontExterior" width="2048" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="third event-click image-banner-total gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <span class="button button-transparent">
+ View 16 Photos
+ </span>
+ </a>
+ </div>
+</div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Boxwood Elevation F" height="1800" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/604651/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/604651/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/604651/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/604651/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/604651/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/604651/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/604651/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="HOUS-Boxwood-ElevationF-elev_DWN" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="QMI Design Selections" height="10000" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5105836/50421.jpeg?timestamp=2026-08-04T13%3A44%3A33.7798966" srcset="https://dam.mihomes.com/media/5105836/50398.jpeg?timestamp=2026-08-04T13%3A44%3A03.5304609 300w, https://dam.mihomes.com/media/5105836/50397.jpeg?timestamp=2026-08-04T13%3A44%3A14.0236093 600w, https://dam.mihomes.com/media/5105836/50423.jpeg?timestamp=2026-08-04T13%3A44%3A56.0453482 900w, https://dam.mihomes.com/media/5105836/50396.jpeg?timestamp=2026-08-04T13%3A43%3A28.3330368 1200w, https://dam.mihomes.com/media/5105836/50421.jpeg?timestamp=2026-08-04T13%3A44%3A33.7798966 1800w, https://dam.mihomes.com/media/5105836/50422.jpeg?timestamp=2026-08-04T13%3A44%3A51.9540668 2400w" title="LSL Lot 2210" width="15000" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Side Exterior" height="1536" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4943663/50421.jpeg?timestamp=2026-07-01T02%3A49%3A36.7313142" srcset="https://dam.mihomes.com/media/4943663/50398.jpeg?timestamp=2026-07-01T02%3A49%3A33.2862498 300w, https://dam.mihomes.com/media/4943663/50397.jpeg?timestamp=2026-07-01T02%3A49%3A29.1975614 600w, https://dam.mihomes.com/media/4943663/50423.jpeg?timestamp=2026-07-01T02%3A49%3A39.4493025 900w, https://dam.mihomes.com/media/4943663/50396.jpeg?timestamp=2026-07-01T02%3A49%3A29.7958721 1200w, https://dam.mihomes.com/media/4943663/50421.jpeg?timestamp=2026-07-01T02%3A49%3A36.7313142 1800w, https://dam.mihomes.com/media/4943663/50422.jpeg?timestamp=2026-07-01T02%3A49%3A37.8102356 2400w" title="[L2210-z001]SideExterior" width="2048" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Drywall" height="1536" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5078113/50421.jpeg?timestamp=2026-07-29T05%3A31%3A59.9586276" srcset="https://dam.mihomes.com/media/5078113/50398.jpeg?timestamp=2026-07-29T05%3A31%3A56.8434694 300w, https://dam.mihomes.com/media/5078113/50397.jpeg?timestamp=2026-07-29T05%3A31%3A56.0812017 600w, https://dam.mihomes.com/media/5078113/50423.jpeg?timestamp=2026-07-29T05%3A32%3A00.8320510 900w, https://dam.mihomes.com/media/5078113/50396.jpeg?timestamp=2026-07-29T05%3A31%3A55.7425845 1200w, https://dam.mihomes.com/media/5078113/50421.jpeg?timestamp=2026-07-29T05%3A31%3A59.9586276 1800w, https://dam.mihomes.com/media/5078113/50422.jpeg?timestamp=2026-07-29T05%3A31%3A59.6832324 2400w" title="[L2210-z009]Drywall" width="2048" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Front Exterior" height="1363" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/2336443/50421.jpeg?timestamp=2024-09-25T06%3A41%3A06.9079555" srcset="https://dam.mihomes.com/media/2336443/50398.jpeg?timestamp=2024-09-25T06%3A40%3A54.7835681 300w, https://dam.mihomes.com/media/2336443/50397.jpeg?timestamp=2024-09-25T06%3A40%3A55.5655458 600w, https://dam.mihomes.com/media/2336443/50423.jpeg?timestamp=2024-09-25T06%3A41%3A07.7269830 900w, https://dam.mihomes.com/media/2336443/50396.jpeg?timestamp=2024-09-25T06%3A40%3A49.7221059 1200w, https://dam.mihomes.com/media/2336443/50421.jpeg?timestamp=2024-09-25T06%3A41%3A06.9079555 1800w, https://dam.mihomes.com/media/2336443/50422.jpeg?timestamp=2024-09-25T06%3A41%3A06.5389374 2400w" title="[L2210-z028]FrontExterior" width="2048" class="image-banner-item-more" />
+ </span>
+ </div>
+
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <div class="modal fullscreen-modal gallery-modal gallery-modal--simple" data-modal="" id="simple-gallery-modal" data-track-views="">
+ <div class="gallery-modal__list-container">
+ <div class="gallery-modal__controls">
+ <button class="close-icon" data-modal-close>
+ <svg class="icon icon-close-gallery" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close-gallery"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__list-container-arrows">
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="prev" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="15" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="next" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="0" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__controls gallery-modal__controls__zoom">
+ <button class="close-icon" data-gallery="simple-gallery-modal" data-zoom>
+ <svg class="icon icon-zoom" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#zoom"></use>
+</svg>
+ </button>
+ </div>
+ <ul class="gallery-modal__list no-transition" style="transform: translateX(-200%);">
+
+ <li class="gallery-slide-container" data-slide-id="0" data-image="https://dam.mihomes.com/media/604651/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/604651/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/604651/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/604651/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/604651/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/604651/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" data-caption="Boxwood Elevation F" data-count="<strong>1</strong> of <strong>16</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Boxwood Elevation F" height="1800" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/604651/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/604651/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/604651/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/604651/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/604651/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/604651/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/604651/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="HOUS-Boxwood-ElevationF-elev_DWN" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="1" data-image="https://dam.mihomes.com/media/5105836/50398.jpeg?timestamp=2026-08-04T13%3A44%3A03.5304609 300w, https://dam.mihomes.com/media/5105836/50397.jpeg?timestamp=2026-08-04T13%3A44%3A14.0236093 600w, https://dam.mihomes.com/media/5105836/50423.jpeg?timestamp=2026-08-04T13%3A44%3A56.0453482 900w, https://dam.mihomes.com/media/5105836/50396.jpeg?timestamp=2026-08-04T13%3A43%3A28.3330368 1200w, https://dam.mihomes.com/media/5105836/50421.jpeg?timestamp=2026-08-04T13%3A44%3A33.7798966 1800w, https://dam.mihomes.com/media/5105836/50422.jpeg?timestamp=2026-08-04T13%3A44%3A51.9540668 2400w" data-caption="QMI Design Selections" data-count="<strong>2</strong> of <strong>16</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="QMI Design Selections" height="10000" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5105836/50421.jpeg?timestamp=2026-08-04T13%3A44%3A33.7798966" srcset="https://dam.mihomes.com/media/5105836/50398.jpeg?timestamp=2026-08-04T13%3A44%3A03.5304609 300w, https://dam.mihomes.com/media/5105836/50397.jpeg?timestamp=2026-08-04T13%3A44%3A14.0236093 600w, https://dam.mihomes.com/media/5105836/50423.jpeg?timestamp=2026-08-04T13%3A44%3A56.0453482 900w, https://dam.mihomes.com/media/5105836/50396.jpeg?timestamp=2026-08-04T13%3A43%3A28.3330368 1200w, https://dam.mihomes.com/media/5105836/50421.jpeg?timestamp=2026-08-04T13%3A44%3A33.7798966 1800w, https://dam.mihomes.com/media/5105836/50422.jpeg?timestamp=2026-08-04T13%3A44%3A51.9540668 2400w" title="LSL Lot 2210" width="15000" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="2" data-image="https://dam.mihomes.com/media/4943663/50398.jpeg?timestamp=2026-07-01T02%3A49%3A33.2862498 300w, https://dam.mihomes.com/media/4943663/50397.jpeg?timestamp=2026-07-01T02%3A49%3A29.1975614 600w, https://dam.mihomes.com/media/4943663/50423.jpeg?timestamp=2026-07-01T02%3A49%3A39.4493025 900w, https://dam.mihomes.com/media/4943663/50396.jpeg?timestamp=2026-07-01T02%3A49%3A29.7958721 1200w, https://dam.mihomes.com/media/4943663/50421.jpeg?timestamp=2026-07-01T02%3A49%3A36.7313142 1800w, https://dam.mihomes.com/media/4943663/50422.jpeg?timestamp=2026-07-01T02%3A49%3A37.8102356 2400w" data-caption="Side Exterior" data-count="<strong>3</strong> of <strong>16</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Side Exterior" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4943663/50421.jpeg?timestamp=2026-07-01T02%3A49%3A36.7313142" srcset="https://dam.mihomes.com/media/4943663/50398.jpeg?timestamp=2026-07-01T02%3A49%3A33.2862498 300w, https://dam.mihomes.com/media/4943663/50397.jpeg?timestamp=2026-07-01T02%3A49%3A29.1975614 600w, https://dam.mihomes.com/media/4943663/50423.jpeg?timestamp=2026-07-01T02%3A49%3A39.4493025 900w, https://dam.mihomes.com/media/4943663/50396.jpeg?timestamp=2026-07-01T02%3A49%3A29.7958721 1200w, https://dam.mihomes.com/media/4943663/50421.jpeg?timestamp=2026-07-01T02%3A49%3A36.7313142 1800w, https://dam.mihomes.com/media/4943663/50422.jpeg?timestamp=2026-07-01T02%3A49%3A37.8102356 2400w" title="[L2210-z001]SideExterior" width="2048" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="3" data-image="https://dam.mihomes.com/media/5078113/50398.jpeg?timestamp=2026-07-29T05%3A31%3A56.8434694 300w, https://dam.mihomes.com/media/5078113/50397.jpeg?timestamp=2026-07-29T05%3A31%3A56.0812017 600w, https://dam.mihomes.com/media/5078113/50423.jpeg?timestamp=2026-07-29T05%3A32%3A00.8320510 900w, https://dam.mihomes.com/media/5078113/50396.jpeg?timestamp=2026-07-29T05%3A31%3A55.7425845 1200w, https://dam.mihomes.com/media/5078113/50421.jpeg?timestamp=2026-07-29T05%3A31%3A59.9586276 1800w, https://dam.mihomes.com/media/5078113/50422.jpeg?timestamp=2026-07-29T05%3A31%3A59.6832324 2400w" data-caption="Drywall" data-count="<strong>4</strong> of <strong>16</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Drywall" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5078113/50421.jpeg?timestamp=2026-07-29T05%3A31%3A59.9586276" srcset="https://dam.mihomes.com/media/5078113/50398.jpeg?timestamp=2026-07-29T05%3A31%3A56.8434694 300w, https://dam.mihomes.com/media/5078113/50397.jpeg?timestamp=2026-07-29T05%3A31%3A56.0812017 600w, https://dam.mihomes.com/media/5078113/50423.jpeg?timestamp=2026-07-29T05%3A32%3A00.8320510 900w, https://dam.mihomes.com/media/5078113/50396.jpeg?timestamp=2026-07-29T05%3A31%3A55.7425845 1200w, https://dam.mihomes.com/media/5078113/50421.jpeg?timestamp=2026-07-29T05%3A31%3A59.9586276 1800w, https://dam.mihomes.com/media/5078113/50422.jpeg?timestamp=2026-07-29T05%3A31%3A59.6832324 2400w" title="[L2210-z009]Drywall" width="2048" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="4" data-image="https://dam.mihomes.com/media/2336443/50398.jpeg?timestamp=2024-09-25T06%3A40%3A54.7835681 300w, https://dam.mihomes.com/media/2336443/50397.jpeg?timestamp=2024-09-25T06%3A40%3A55.5655458 600w, https://dam.mihomes.com/media/2336443/50423.jpeg?timestamp=2024-09-25T06%3A41%3A07.7269830 900w, https://dam.mihomes.com/media/2336443/50396.jpeg?timestamp=2024-09-25T06%3A40%3A49.7221059 1200w, https://dam.mihomes.com/media/2336443/50421.jpeg?timestamp=2024-09-25T06%3A41%3A06.9079555 1800w, https://dam.mihomes.com/media/2336443/50422.jpeg?timestamp=2024-09-25T06%3A41%3A06.5389374 2400w" data-caption="Front Exterior - Representational Photo" data-count="<strong>5</strong> of <strong>16</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Front Exterior" height="1363" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/2336443/50421.jpeg?timestamp=2024-09-25T06%3A41%3A06.9079555" srcset="https://dam.mihomes.com/media/2336443/50398.jpeg?timestamp=2024-09-25T06%3A40%3A54.7835681 300w, https://dam.mihomes.com/media/2336443/50397.jpeg?timestamp=2024-09-25T06%3A40%3A55.5655458 600w, https://dam.mihomes.com/media/2336443/50423.jpeg?timestamp=2024-09-25T06%3A41%3A07.7269830 900w, https://dam.mihomes.com/media/2336443/50396.jpeg?timestamp=2024-09-25T06%3A40%3A49.7221059 1200w, https://dam.mihomes.com/media/2336443/50421.jpeg?timestamp=2024-09-25T06%3A41%3A06.9079555 1800w, https://dam.mihomes.com/media/2336443/50422.jpeg?timestamp=2024-09-25T06%3A41%3A06.5389374 2400w" title="[L2210-z028]FrontExterior" width="2048" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="5" data-image="https://dam.mihomes.com/media/1724561/50398.jpeg 300w, https://dam.mihomes.com/media/1724561/50397.jpeg 600w, https://dam.mihomes.com/media/1724561/50423.jpeg 900w, https://dam.mihomes.com/media/1724561/50396.jpeg 1200w, https://dam.mihomes.com/media/1724561/50421.jpeg 1800w, https://dam.mihomes.com/media/1724561/50422.jpeg 2400w" data-caption="Bathroom - Representational Photo" data-count="<strong>6</strong> of <strong>16</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bathroom" height="4018" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/1724561/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/1724561/50398.jpeg 300w, https://dam.mihomes.com/media/1724561/50397.jpeg 600w, https://dam.mihomes.com/media/1724561/50423.jpeg 900w, https://dam.mihomes.com/media/1724561/50396.jpeg 1200w, https://dam.mihomes.com/media/1724561/50421.jpeg 1800w, https://dam.mihomes.com/media/1724561/50422.jpeg 2400w" title="L2501-Z15]Powder-Bath" width="6019" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="6" data-image="https://dam.mihomes.com/media/1724564/50398.jpeg 300w, https://dam.mihomes.com/media/1724564/50397.jpeg 600w, https://dam.mihomes.com/media/1724564/50423.jpeg 900w, https://dam.mihomes.com/media/1724564/50396.jpeg 1200w, https://dam.mihomes.com/media/1724564/50421.jpeg 1800w, https://dam.mihomes.com/media/1724564/50422.jpeg 2400w" data-caption="Family Room - Representational Photo" data-count="<strong>7</strong> of <strong>16</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Family Room" height="4020" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/1724564/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/1724564/50398.jpeg 300w, https://dam.mihomes.com/media/1724564/50397.jpeg 600w, https://dam.mihomes.com/media/1724564/50423.jpeg 900w, https://dam.mihomes.com/media/1724564/50396.jpeg 1200w, https://dam.mihomes.com/media/1724564/50421.jpeg 1800w, https://dam.mihomes.com/media/1724564/50422.jpeg 2400w" title="L2501-Z25]Family-Room" width="6019" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="7" data-image="https://dam.mihomes.com/media/1724582/50398.jpeg 300w, https://dam.mihomes.com/media/1724582/50397.jpeg 600w, https://dam.mihomes.com/media/1724582/50423.jpeg 900w, https://dam.mihomes.com/media/1724582/50396.jpeg 1200w, https://dam.mihomes.com/media/1724582/50421.jpeg 1800w, https://dam.mihomes.com/media/1724582/50422.jpeg 2400w" data-caption="Interior - Representational Photo" data-count="<strong>8</strong> of <strong>16</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="4022" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/1724582/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/1724582/50398.jpeg 300w, https://dam.mihomes.com/media/1724582/50397.jpeg 600w, https://dam.mihomes.com/media/1724582/50423.jpeg 900w, https://dam.mihomes.com/media/1724582/50396.jpeg 1200w, https://dam.mihomes.com/media/1724582/50421.jpeg 1800w, https://dam.mihomes.com/media/1724582/50422.jpeg 2400w" title="L2501-Z8]LivingRoom" width="6022" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="8" data-image="https://dam.mihomes.com/media/1724555/50398.jpeg 300w, https://dam.mihomes.com/media/1724555/50397.jpeg 600w, https://dam.mihomes.com/media/1724555/50423.jpeg 900w, https://dam.mihomes.com/media/1724555/50396.jpeg 1200w, https://dam.mihomes.com/media/1724555/50421.jpeg 1800w, https://dam.mihomes.com/media/1724555/50422.jpeg 2400w" data-caption="Kitchen - Representational Photo" data-count="<strong>9</strong> of <strong>16</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="4017" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/1724555/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/1724555/50398.jpeg 300w, https://dam.mihomes.com/media/1724555/50397.jpeg 600w, https://dam.mihomes.com/media/1724555/50423.jpeg 900w, https://dam.mihomes.com/media/1724555/50396.jpeg 1200w, https://dam.mihomes.com/media/1724555/50421.jpeg 1800w, https://dam.mihomes.com/media/1724555/50422.jpeg 2400w" title="L2501-Z28]Kitchen" width="6016" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="9" data-image="https://dam.mihomes.com/media/1724563/50398.jpeg 300w, https://dam.mihomes.com/media/1724563/50397.jpeg 600w, https://dam.mihomes.com/media/1724563/50423.jpeg 900w, https://dam.mihomes.com/media/1724563/50396.jpeg 1200w, https://dam.mihomes.com/media/1724563/50421.jpeg 1800w, https://dam.mihomes.com/media/1724563/50422.jpeg 2400w" data-caption="Kitchen - Representational Photo" data-count="<strong>10</strong> of <strong>16</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="4017" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/1724563/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/1724563/50398.jpeg 300w, https://dam.mihomes.com/media/1724563/50397.jpeg 600w, https://dam.mihomes.com/media/1724563/50423.jpeg 900w, https://dam.mihomes.com/media/1724563/50396.jpeg 1200w, https://dam.mihomes.com/media/1724563/50421.jpeg 1800w, https://dam.mihomes.com/media/1724563/50422.jpeg 2400w" title="L2501-Z31]Kitchen" width="6018" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="10" data-image="https://dam.mihomes.com/media/1102630/50398.jpeg 300w, https://dam.mihomes.com/media/1102630/50397.jpeg 600w, https://dam.mihomes.com/media/1102630/50423.jpeg 900w, https://dam.mihomes.com/media/1102630/50396.jpeg 1200w, https://dam.mihomes.com/media/1102630/50421.jpeg 1800w, https://dam.mihomes.com/media/1102630/50422.jpeg 2400w" data-caption="Kitchen - Representational Photo" data-count="<strong>11</strong> of <strong>16</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/1102630/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/1102630/50398.jpeg 300w, https://dam.mihomes.com/media/1102630/50397.jpeg 600w, https://dam.mihomes.com/media/1102630/50423.jpeg 900w, https://dam.mihomes.com/media/1102630/50396.jpeg 1200w, https://dam.mihomes.com/media/1102630/50421.jpeg 1800w, https://dam.mihomes.com/media/1102630/50422.jpeg 2400w" title="[L1118-z004]Kitchen" width="2304" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="11" data-image="https://dam.mihomes.com/media/1724593/50398.jpeg 300w, https://dam.mihomes.com/media/1724593/50397.jpeg 600w, https://dam.mihomes.com/media/1724593/50423.jpeg 900w, https://dam.mihomes.com/media/1724593/50396.jpeg 1200w, https://dam.mihomes.com/media/1724593/50421.jpeg 1800w, https://dam.mihomes.com/media/1724593/50422.jpeg 2400w" data-caption="Dining Room - Representational Photo" data-count="<strong>12</strong> of <strong>16</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Dining Room" height="4017" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/1724593/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/1724593/50398.jpeg 300w, https://dam.mihomes.com/media/1724593/50397.jpeg 600w, https://dam.mihomes.com/media/1724593/50423.jpeg 900w, https://dam.mihomes.com/media/1724593/50396.jpeg 1200w, https://dam.mihomes.com/media/1724593/50421.jpeg 1800w, https://dam.mihomes.com/media/1724593/50422.jpeg 2400w" title="L2501-Z23]Dining-Room" width="6016" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="12" data-image="https://dam.mihomes.com/media/1724560/50398.jpeg 300w, https://dam.mihomes.com/media/1724560/50397.jpeg 600w, https://dam.mihomes.com/media/1724560/50423.jpeg 900w, https://dam.mihomes.com/media/1724560/50396.jpeg 1200w, https://dam.mihomes.com/media/1724560/50421.jpeg 1800w, https://dam.mihomes.com/media/1724560/50422.jpeg 2400w" data-caption="Owner's Bedroom - Representational Photo" data-count="<strong>13</strong> of <strong>16</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owner's Bedroom" height="4019" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/1724560/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/1724560/50398.jpeg 300w, https://dam.mihomes.com/media/1724560/50397.jpeg 600w, https://dam.mihomes.com/media/1724560/50423.jpeg 900w, https://dam.mihomes.com/media/1724560/50396.jpeg 1200w, https://dam.mihomes.com/media/1724560/50421.jpeg 1800w, https://dam.mihomes.com/media/1724560/50422.jpeg 2400w" title="L2501-Z10]Owners-Suite" width="6020" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="13" data-image="https://dam.mihomes.com/media/1724590/50398.jpeg 300w, https://dam.mihomes.com/media/1724590/50397.jpeg 600w, https://dam.mihomes.com/media/1724590/50423.jpeg 900w, https://dam.mihomes.com/media/1724590/50396.jpeg 1200w, https://dam.mihomes.com/media/1724590/50421.jpeg 1800w, https://dam.mihomes.com/media/1724590/50422.jpeg 2400w" data-caption="OwnerBedroom, Interior, Interior, Study - Representational Photo" data-count="<strong>14</strong> of <strong>16</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="OwnerBedroom, Interior, Interior, Study " height="4023" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/1724590/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/1724590/50398.jpeg 300w, https://dam.mihomes.com/media/1724590/50397.jpeg 600w, https://dam.mihomes.com/media/1724590/50423.jpeg 900w, https://dam.mihomes.com/media/1724590/50396.jpeg 1200w, https://dam.mihomes.com/media/1724590/50421.jpeg 1800w, https://dam.mihomes.com/media/1724590/50422.jpeg 2400w" title="L2501-Z17]Owners-Suite" width="6021" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="14" data-image="https://dam.mihomes.com/media/1724595/50398.jpeg 300w, https://dam.mihomes.com/media/1724595/50397.jpeg 600w, https://dam.mihomes.com/media/1724595/50423.jpeg 900w, https://dam.mihomes.com/media/1724595/50396.jpeg 1200w, https://dam.mihomes.com/media/1724595/50421.jpeg 1800w, https://dam.mihomes.com/media/1724595/50422.jpeg 2400w" data-caption="Bedroom - Representational Photo" data-count="<strong>15</strong> of <strong>16</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="4022" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/1724595/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/1724595/50398.jpeg 300w, https://dam.mihomes.com/media/1724595/50397.jpeg 600w, https://dam.mihomes.com/media/1724595/50423.jpeg 900w, https://dam.mihomes.com/media/1724595/50396.jpeg 1200w, https://dam.mihomes.com/media/1724595/50421.jpeg 1800w, https://dam.mihomes.com/media/1724595/50422.jpeg 2400w" title="L2501-Z35]Bedroom" width="6023" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="15" data-image="https://dam.mihomes.com/media/1724599/50398.jpeg 300w, https://dam.mihomes.com/media/1724599/50397.jpeg 600w, https://dam.mihomes.com/media/1724599/50423.jpeg 900w, https://dam.mihomes.com/media/1724599/50396.jpeg 1200w, https://dam.mihomes.com/media/1724599/50421.jpeg 1800w, https://dam.mihomes.com/media/1724599/50422.jpeg 2400w" data-caption="Exterior - Representational Photo" data-count="<strong>16</strong> of <strong>16</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Exterior" height="4019" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/1724599/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/1724599/50398.jpeg 300w, https://dam.mihomes.com/media/1724599/50397.jpeg 600w, https://dam.mihomes.com/media/1724599/50423.jpeg 900w, https://dam.mihomes.com/media/1724599/50396.jpeg 1200w, https://dam.mihomes.com/media/1724599/50421.jpeg 1800w, https://dam.mihomes.com/media/1724599/50422.jpeg 2400w" title="L2501-Z22]Exterior" width="6018" />
+ </div>
+ </div>
+ </div>
+ </li>
+ </ul>
+ <div class="gallery-slide__footer">
+ <span class="gallery-slide__title title-caption"></span>
+ <div class="gallery-slide__share-buttons">
+ <span class="count"></span>
+ </div>
+ </div>
+ </div>
+ </div>
+</div><script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Product",
+ "additionalType": "https://schema.org/SingleFamilyResidence",
+ "name": "10220 Burton Path",
+ "sku": "I_jnAbgbXkq4dXu8KlnBfw",
+ "description": "Welcome to 10220 Burton Path, Montgomery, Texas — a new construction single-story home built by M/I Homes. This thoughtfully designed home offers 1,674 square feet of comfortable living space with an open-concept layout that connects the main living areas seamlessly.",
+ "image": [
+ "https://dam.mihomes.com/media/604651/50421.jpeg",
+ "https://dam.mihomes.com/media/5105836/50421.jpeg",
+ "https://dam.mihomes.com/media/4943663/50421.jpeg",
+ "https://dam.mihomes.com/media/5078113/50421.jpeg",
+ "https://dam.mihomes.com/media/2336443/50421.jpeg",
+ "https://dam.mihomes.com/media/1724561/50421.jpeg",
+ "https://dam.mihomes.com/media/1724564/50421.jpeg",
+ "https://dam.mihomes.com/media/1724582/50421.jpeg",
+ "https://dam.mihomes.com/media/1724555/50421.jpeg",
+ "https://dam.mihomes.com/media/1724563/50421.jpeg",
+ "https://dam.mihomes.com/media/1102630/50421.jpeg",
+ "https://dam.mihomes.com/media/1724593/50421.jpeg",
+ "https://dam.mihomes.com/media/1724560/50421.jpeg",
+ "https://dam.mihomes.com/media/1724590/50421.jpeg",
+ "https://dam.mihomes.com/media/1724595/50421.jpeg",
+ "https://dam.mihomes.com/media/1724599/50421.jpeg"
+ ],
+ "url": "https://www.mihomes.com/new-homes/texas/greater-houston/montgomery/lone-star-landing/boxwood-plan/10220-burton-path",
+ "brand": {
+ "@type": "Organization",
+ "parentOrganization": {
+ "@type": "Organization",
+ "name": "M/I Homes"
+ },
+ "name": "Lone Star Landing"
+ },
+ "address": {
+ "@type": "PostalAddress",
+ "streetAddress": "10220 Burton Path",
+ "addressLocality": "Montgomery",
+ "addressRegion": "TX",
+ "postalCode": "77316",
+ "addressCountry": "US"
+ },
+ "geo": {
+ "@type": "GeoCoordinates",
+ "latitude": 30.315795,
+ "longitude": -95.617015
+ },
+ "telephone": "+12813937070",
+ "offers": {
+ "@type": "Offer",
+ "url": "/new-homes/texas/greater-houston/montgomery/lone-star-landing/boxwood-plan/10220-burton-path",
+ "price": "282990.00",
+ "priceCurrency": "USD",
+ "priceValidUntil": "08-12-2026",
+ "itemCondition": "https://schema.org/NewCondition",
+ "availability": "https://schema.org/InStock"
+ },
+ "model": "https://www.mihomes.com/new-homes/texas/greater-houston/montgomery/lone-star-landing/boxwood-plan",
+ "numberOfBedrooms": {
+ "@type": "Integer",
+ "value": 3
+ },
+ "numberOfFullBathrooms": {
+ "@type": "Integer",
+ "value": 2
+ },
+ "numberOfPartialBathrooms": {
+ "@type": "Integer",
+ "value": 0
+ },
+ "petsAllowed": true,
+ "yearBuilt": "2026",
+ "floorSize": {
+ "@type": "QuantitativeValue",
+ "value": 1674,
+ "unitCode": "FTK"
+ }
+}</script>
+<div class="modals" data-modal-container aria-hidden="true">
+ <div class="modal box" data-modal id="signup-modal">
+ <button class="modal-close" data-modal-close>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+
+ <h2 class="h1 alt">Sign up for an M/I Homes account</h2>
+ <p>Save your favorite home plans and communities, compare home plans and share your dream home with sales associates and real estate agents.</p>
+ <p>
+ Already a member?
+ <a class="button-plain" href="/account/login">Log In to your account »</a>
+ </p>
+ <a class="button button-wide" href="/account/register">
+ <span class="button-text">
+ Sign up with email
+ </span>
+ </a>
+ </div>
+</div>
+
+<div class="product-header" data-yes="true">
+
+ <div class="product-header-row product-header__top">
+
+ <div class="product-header-centered ">
+ <div>
+ <a href="/new-homes/texas/greater-houston/montgomery/lone-star-landing" class="button-plain">
+ Lone Star Landing
+ </a>
+
+ <h1 class="header-seo-h2">
+ 10220 Burton Path, Montgomery, TX 77316
+ <button class="aux-nav-link button-favorite-product gami-favorite-save" data-favorite-type="Home" data-favorite-id="01e7f823-1bb8-4a5e-b875-7bbc2a59c17f" data-favorite-fav-id="01e7f823-1bb8-4a5e-b875-7bbc2a59c17f" data-add-favorite>
+ <svg class="icon icon-favorite" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#favorite"></use>
+</svg>
+ <span class="aux-nav-link-action-text">
+ Favorite
+ </span>
+ </button>
+ </h1>
+ </div>
+
+ <div class="product-header__actions">
+ <a class="button button-mobile-link button-virtual-tour event-click" href="https://www.zillow.com/view-imx/6f947436-beb5-4a92-b822-4f6faab11250?setAttribution=mls&wl=true&initialViewType=pano&utm_source=dashboard" target="_blank" data-event-category=VirtualTour
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <span class="button-text">Virtual Tour</span>
+ </a>
+ </div>
+ </div>
+ </div>
+
+ <div class="product-header-row">
+ <div class="product-header-centered tooptip-container">
+ <div>
+ <dl>
+ <dt>Ready date:</dt>
+ <dd>
+ <strong class="current-size">
+ September 19, 2026
+ </strong>
+ </dd>
+ </dl>
+ </div>
+ <div class="product-header-price">
+
+ Price:
+ <span class="home-card-price-old">$308,315</span>
+ <span class="product-header-price-new" content="282990">$282,990</span>
+
+ (
+ <span data-open-modal="mortgage-payment-calculator-modal" data-tooltip="Click estimate to see how we calculate this monthly payment" data-annualinsurance="0" data-taxrate="2.869" data-interestrate="4.875" data-downpayment="4" data-price="282990" data-mortgage-monthly-payment tabindex="0" class="product-header-price-monthly"></span>
+ )
+
+
+ <span class="product-header-calculator">
+ <a class="button-plain button-plain-icon small button-icon-right gami-mortcalc-view" data-open-modal="mortgage-payment-calculator-modal">
+ <svg class="icon icon-calculator" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#calculator"></use>
+</svg>
+ Estimate Your Monthly Payment
+ </a>
+ </span>
+ </div>
+ </div>
+ </div>
+</div> <a rel="noopener" href="/new-homes/texas/greater-houston/montgomery/lone-star-landing/plat map?lot=260556002210" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=9912 Cavelier Canyon Court, Montgomery, TX 77316&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=5BPPT37Ee66Ut5W0NQsZ_ojunnM=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+<div class="product-header-centered product-header-centered--contact-card-only">
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Lone Star Landing Sales Office</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://www.google.com/maps/dir/?api=1&destination=30.315795,-95.617015">
+ 9912 Cavelier Canyon Court<br>Montgomery, TX 77316
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+</div><div class="product-header">
+ <div class="product-header product-header-navigation">
+ <nav class="product-header-subnav" data-subnav="">
+ <div class="product-header-subnav-wrapper">
+ <div class="product-header-subnav-mobile-bottom">
+ <a class="button button-contact-us" href="/support/sales">
+ <span class="button-text">
+ Contact Us
+ </span>
+ </a>
+ </div>
+
+
+ <a class="product-header-subnav-toggle subnav-link" data-subnav-toggle="">
+ <span class="text" data-subnav-text="">Overview</span>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </a>
+
+ <ul class="product-header-subnav-links" data-subnav-links=""></ul>
+ </div>
+ </nav>
+
+ <div class="product-header-subnav-spacer"></div>
+
+ <a href="#overview" class="product-header__back-to-top is-hidden" data-back-to-top>
+ <div class="arrow arrow--up"></div>
+ </a>
+ </div>
+</div><section class="content-inner-with-sidebar content-inner-with-sidebar-right">
+
+
+ <div class="content-inner-content">
+
+
+
+
+
+<section class="plan-specification">
+ <h2 class="plan-specification__header">
+ About 10220 Burton Path
+ </h2>
+ <a class="plan-specification__get-directions button-plain button-plain-alt negative-top gami-directions-exit" target="_blank" href="https://www.google.com/maps/search/?api=1&query=30.315795,-95.617015">Get Directions</a>
+ <ul class="plan-specification__list">
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sq-ft" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sq-ft"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">square feet</span>
+ <strong class="plan-specification-item__value">
+ 1,674
+ </strong>
+ </div>
+ </li>
+ <li class="stories-specification">
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-homes" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#homes"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">stories</span>
+ <strong class="plan-specification-item__value">
+ 1
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-bed" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#bed"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">bedrooms</span>
+ <strong class="plan-specification-item__value">
+ 3
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-shower" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#shower"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">full bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 2
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sink" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sink"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">half bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 0
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-car" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#car"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">garages</span>
+ <strong class="plan-specification-item__value">
+ 2
+ <span data-tooltip="The most common approach to a home's garage, the front load garage incorporates the garage entry into a home's front elevation.">(Front Load)</span>
+
+ </strong>
+ </div>
+ </li>
+ </ul>
+</section>
+
+<div class="overview-table">
+ <div class="overview-table-table">
+ <dl>
+ <dt>City</dt>
+ <dd>Montgomery, TX</dd>
+
+ <dt>Owner's Suite</dt>
+ <dd>First Floor</dd>
+
+ <dt>County</dt>
+ <dd>Montgomery</dd>
+
+ <dt>Home Type</dt>
+ <dd>Single Family Home</dd>
+
+ <dt>School District</dt>
+ <dd>Montgomery ISD</dd>
+
+ <dt>Foundation Type</dt>
+ <dd>Slab</dd>
+
+ <dt>Home Plan</dt>
+ <dd>Boxwood</dd>
+
+ <dt>MLS Number</dt>
+ <dd>67383422</dd>
+
+ <dt>Homesite</dt>
+ <dd>2210</dd>
+
+ </dl>
+ </div>
+</div>
+<article class="faq__question-item faq__question-item--mobile-only">
+ <button class="faq__question" data-expander="" aria-controls="community-series-teaser" aria-expanded="false">
+ <span class="faq__icon-wrapper">
+ <span class="faq__icon gami-directions-view">
+ <svg class="icon icon-arrow" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#arrow"></use>
+</svg>
+ </span>
+ </span>
+ Part of the Smart Series
+ <span class="show-hide-text hidden-text">Hide</span>
+ </button>
+ <div class="faq__answer preview-box preview-box--series-tout" id="community-series-teaser" role="region" tabindex="-1">
+ <a class="preview-box__image preview-box__preview one-fourth" href="/new-homes/texas/greater-houston/montgomery/lone-star-landing/series/smart-series">
+ <img data-dam-generated alt="Preview image" height="1200" loading="lazy" sizes="(min-width: 48rem) 193px, 100vw" src="https://dam.mihomes.com/media/3524887/50397.jpeg?timestamp=2025-08-12T00%3A05%3A06.6803610" srcset="https://dam.mihomes.com/media/3524887/50398.jpeg?timestamp=2025-08-12T00%3A05%3A08.6102193 300w, https://dam.mihomes.com/media/3524887/50397.jpeg?timestamp=2025-08-12T00%3A05%3A06.6803610 600w, https://dam.mihomes.com/media/3524887/50423.jpeg?timestamp=2025-08-12T00%3A05%3A16.2317146 900w, https://dam.mihomes.com/media/3524887/50396.jpeg?timestamp=2025-08-12T00%3A05%3A05.4091756 1200w, https://dam.mihomes.com/media/3524887/50421.jpeg?timestamp=2025-08-12T00%3A05%3A11.1642114 1800w, https://dam.mihomes.com/media/3524887/50422.jpeg?timestamp=2025-08-12T00%3A05%3A13.4367997 2400w" title="[L3406-z000]FrontExterior" width="1800" class="cover-image" />
+ </a>
+ <div class="preview-box__content ">
+ <div class="preview-box__text__series-teaser">
+ <h3>Part of the Smart Series</h3>
+ <p>
+ The Smart Series will sit on our 40' and 50' homesites and showcase over 25 floorplans ranging from 1,295+ sq. ft, starting from the mid $200s.
+
+
+ </p>
+ </div>
+ <p>
+ <a class="button" href="/new-homes/texas/greater-houston/montgomery/lone-star-landing/series/smart-series">Learn More</a>
+ </p>
+ </div>
+ </div>
+</article> <h2>
+ New 3-Bedroom Home for Sale in Montgomery, Texas
+ </h2>
+ <div class="content-inner-content__capped-mobile-content">
+ <p>Welcome to 10220 Burton Path, Montgomery, Texas — a new construction single-story home built by M/I Homes. This thoughtfully designed home offers 1,674 square feet of comfortable living space with an open-concept layout that connects the main living areas seamlessly.</p>
+<p>This move-in ready home features a well-planned floorplan with quality design elements throughout. Key highlights include:</p>
+<ul>
+ <li>3 bedrooms and 2 bathrooms</li>
+ <li>Single-story layout with 1 above-ground level</li>
+ <li>Open-concept living space ideal for everyday living and entertaining</li>
+ <li>Owner's bedroom with a private en-suite bathroom</li>
+ <li>Covered patio for outdoor enjoyment</li>
+ <li>New construction built with attention to quality and detail</li>
+</ul>
+<p>The open-concept design creates a natural flow between the kitchen, dining, and living areas, making the most of the home's generous square footage. The owner's bedroom includes an en-suite bathroom, offering a private retreat within the home. 2 additional bedrooms provide flexible space for family, guests, or a home office.</p>
+<p>The covered patio extends the living space outdoors, providing a shaded area to relax and enjoy the surroundings. Every aspect of this home reflects the quality of design and craftsmanship that M/I Homes is known for, from the functional floorplan to the carefully selected finishes throughout.</p>
+<p>This single-story home is situated in a welcoming neighborhood with convenient proximity to parks, making it an excellent choice for those seeking a well-built home in Montgomery, Texas.</p>
+
+ <!-- and done -->
+ <h3>
+ About the Community
+ </h3>
+ <p>
+ Lone Star Landing in Montgomery offers a welcoming community of single family homes in a convenient location near I‑45, providing easy access to Houston, The Woodlands, and the surrounding region. Thoughtfully designed floorplans from the Smart Series and Premier Collection offer a range of styles, from value‑focused layouts to more spacious designs on larger homesites.
+
+Residents can enjoy a relaxed outdoor lifestyle with walking trails, a scenic pond, a playground, and a splash pad all woven into the neighborhood. Nearby destinations like Lake Conroe, Sam Houston National Forest, and The Woodlands add even more ways to explore, unwind, or enjoy a day out.
+
+Families will appreciate being part of Montgomery ISD, known for strong academics and supportive school communities. Lone Star Landing brings together comfort, convenience, and everyday enjoyment in a setting that feels connected to both nature and the best of Montgomery.
+ <br />
+ <a class="button-plain button-plain-alt" href="/new-homes/texas/greater-houston/montgomery/lone-star-landing">Learn more about this community »</a>
+ </p>
+ </div>
+ <button class="faq__question color-aqua" aria-expanded="false" data-read-more="">
+ <span class="faq__icon-wrapper">
+ <span class="faq__icon">
+ <svg class="icon icon-arrow" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#arrow"></use>
+</svg>
+ </span>
+ </span>
+ <span data-read-more-collapsed="">Read More</span>
+ <span data-read-more-expanded="">Show Less</span>
+ <span class="show-hide-text hidden-text">Show</span>
+ </button>
+ <div class="matterport-wrapper">
+ <iframe loading="lazy" class="box-full" width="803" height="480" src="https://my.matterport.com/show/?m=2CzF3iEVrRm" frameborder="0" allowfullscreen allow="vr" style="align-self: center" data-subnav-page-link="3D Tour" id="3dTour"></iframe>
+ </div>
+
+
+
+ </div>
+
+ <div class="content-sidebar-right">
+ <a rel="noopener" href="/new-homes/texas/greater-houston/montgomery/lone-star-landing/plat map?lot=260556002210" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=9912 Cavelier Canyon Court, Montgomery, TX 77316&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=5BPPT37Ee66Ut5W0NQsZ_ojunnM=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Lone Star Landing Sales Office</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://www.google.com/maps/dir/?api=1&destination=30.315795,-95.617015">
+ 9912 Cavelier Canyon Court<br>Montgomery, TX 77316
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+
+
+ <figure class="lead-form lead-form-sidebar lead-form-sidebar--compact lead-form-sidebar-signup">
+ <div class="lead-form-container">
+ <div id="lead-sidebar-header" class="lead-form-sidebar-header lead-form-sidebar-header-image">
+ <div id="isa-information" data-sidebar-section="1">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-3">
+ <img data-dam-generated alt="kschieb@MIHOMES.com-0515202606.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4749913/50421.jpeg?timestamp=2026-05-15T10%3A57%3A30.3393142" srcset="https://dam.mihomes.com/media/4749913/50398.jpeg?timestamp=2026-05-15T10%3A57%3A29.1231152 300w, https://dam.mihomes.com/media/4749913/50397.jpeg?timestamp=2026-05-15T10%3A57%3A28.5622574 600w, https://dam.mihomes.com/media/4749913/50423.jpeg?timestamp=2026-05-15T10%3A57%3A31.4095112 900w, https://dam.mihomes.com/media/4749913/50396.jpeg?timestamp=2026-05-15T10%3A57%3A27.9993137 1200w, https://dam.mihomes.com/media/4749913/50421.jpeg?timestamp=2026-05-15T10%3A57%3A30.3393142 1800w, https://dam.mihomes.com/media/4749913/50422.jpeg?timestamp=2026-05-15T10%3A57%3A31.9837747 2400w" title="kschieb@MIHOMES.com-0515202606" width="96" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-3">
+ <img data-dam-generated alt="jwammack@mihomes.com-0515202606.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4749912/50421.jpeg?timestamp=2026-05-15T10%3A57%3A25.2653266" srcset="https://dam.mihomes.com/media/4749912/50398.jpeg?timestamp=2026-05-15T10%3A57%3A21.1585036 300w, https://dam.mihomes.com/media/4749912/50397.jpeg?timestamp=2026-05-15T10%3A57%3A20.0113438 600w, https://dam.mihomes.com/media/4749912/50423.jpeg?timestamp=2026-05-15T10%3A57%3A25.2663942 900w, https://dam.mihomes.com/media/4749912/50396.jpeg?timestamp=2026-05-15T10%3A57%3A20.5825822 1200w, https://dam.mihomes.com/media/4749912/50421.jpeg?timestamp=2026-05-15T10%3A57%3A25.2653266 1800w, https://dam.mihomes.com/media/4749912/50422.jpeg?timestamp=2026-05-15T10%3A57%3A25.2653069 2400w" title="jwammack@mihomes.com-0515202606" width="96" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-3">
+ <img data-dam-generated alt="Susan Fendley" height="1800" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4015511/50421.jpeg?timestamp=2025-11-11T13%3A58%3A34.7199592" srcset="https://dam.mihomes.com/media/4015511/50398.jpeg?timestamp=2025-11-11T13%3A58%3A33.5866155 300w, https://dam.mihomes.com/media/4015511/50397.jpeg?timestamp=2025-11-11T13%3A58%3A32.4902079 600w, https://dam.mihomes.com/media/4015511/50423.jpeg?timestamp=2025-11-11T13%3A58%3A35.6220231 900w, https://dam.mihomes.com/media/4015511/50396.jpeg?timestamp=2025-11-11T13%3A58%3A33.4179743 1200w, https://dam.mihomes.com/media/4015511/50421.jpeg?timestamp=2025-11-11T13%3A58%3A34.7199592 1800w, https://dam.mihomes.com/media/4015511/50422.jpeg?timestamp=2025-11-11T13%3A58%3A35.4540301 2400w" title="Susan Fendley" width="1800" class="cover-image" />
+ </div>
+ </div>
+ <h3 class="">Have questions for us?</h3>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=2813937070'>(281) 393-7070</a>
+ </p>
+ </div>
+ <div id="form-agent-header" class="lead-form-sidebar-section right" style="display: none;">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+
+ </div>
+ <div class="lead-form-sidebar-form" data-lead-form-sidebar="">
+ <div class="lead-form-sidebar-errors"></div>
+<form action="/api/LeadGenFormSidebar/LeadGenFormSidebar" data-gami-event="gami-form-question" data-parsley-validate="" data-sidebar-hidden-required="" data-sidebar-nav-check="visit_sidebar" method="post" name="basic_sidebar" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="018e330a-076c-4134-99ca-0db27414c629" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Inventory" /><input id="PostType" name="PostType" type="hidden" value="sidebar" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:06 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="ItemId" name="ItemId" type="hidden" value="01e7f823-1bb8-4a5e-b875-7bbc2a59c17f" /><input id="HomeType" name="HomeType" type="hidden" value="Single Family Home" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 443px;">
+ <div class="align-left center lead-form-sidebar-section" data-cta="Request Information" data-sidebar-section="0">
+ <div>
+
+ <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="">
+ </div>
+
+ <div class="form-field no-label-errors" style="margin-top: 1px">
+ <label for="fullname_sidebar"></label>
+ <input type="text"
+ name="FormFullName"
+ id="fullname_sidebar"
+ placeholder="Full Name"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required." data-parsley-trigger="blur"
+ maxlength="60"
+ data-parsley-filter-emoji=""
+ >
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormEmailAddress"
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="phone_sidebar">Phone Number</label>
+ <input class="gami-tel" type="tel"
+ autocomplete="tel-national"
+ name="FormPhoneNumber"
+ id="phone_sidebar"
+ placeholder="Phone Number" +
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ value=""
+
+ data-parsley-phone-number="" data-parsley-trigger="blur"
+ maxlength="25">
+ </div>
+
+ <div class="form-field no-label-errors">
+ <label for="comments_sidebar">Questions or Comments</label>
+ <textarea rows="5"
+ name="FormComments"
+ id="comments_sidebar"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000">Please send me information about 10220 Burton Path</textarea>
+ </div>
+ </div>
+ <div>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox hide" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input data-parsley-multiple="visit_sidebar" name="visit_sidebar" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to plan a visit</span>
+ </label>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormEmailOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSAssociateCommunicationsOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" data-sidebar-section="1" tabindex="-1">
+ <div>
+ <h4>Plan a visit</h4>
+ <p>Select your preferred day and time and we’ll help set up the perfect visit.</p>
+ </div>
+ <div>
+ <div class="select no-label-errors">
+ <label for="tripday_sidebar"> </label>
+ <div class="select-wrap">
+<select data-nested-select="#select-triptime-block-sidebar" data-parsley-group="visit_sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+
+ <div class="select no-label-errors">
+ <label for="triptime_sidebar"> </label>
+ <div class="select-wrap">
+<select data-parsley-group="visit_sidebar" id="triptime_sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" dta-cta="Continue" data-sidebar-section="2" data-agent-section tabindex="-1">
+
+ <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0">
+ <div class="align-left center lead-form-sidebar-section" data-sidebar-section="0">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button form-submit">
+ <span class="button-text">Request Information</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-left lead-form-sidebar-section right" data-sidebar-section="1">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit" disabled tabindex="-1">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="2">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button" disabled tabindex="-1">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit" disabled tabindex="-1">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+ </div>
+ </div>
+</form> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 25px;">
+ <div class="align-center center lead-form-sidebar-section" data-sidebar-section="0">
+ <button class="button-plain small" data-open-modal="privacy-policy-modal" href="javascript:void()">Privacy Policy</button>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="1">
+ <button class="button-plain small" data-sidebar-nav="0" tabindex="-1">« Go Back</button>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <!-- THANK YOU MESSAGE -->
+ <div class="lead-form-container-success">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-success lead-form-sidebar-header-image">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" data-parsley-validate="" method="POST" name="thanksyou_sidebar" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+ <div>
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+ <div class="form-field form-field-password">
+ <label for="password"> </label>
+ <input data-parsley-required-message="Password is required." data-parsley-valid-password="" id="password" minlength="8" name="password" placeholder="Password" required="" type="password" data-parsley-filter-emoji="" data-parsley-trigger="blur">
+ <button class="password-input-change" data-input-change="" type="button">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)" tabindex="0">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">
+ Create Account
+ </span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ <h3 class="h3 preview-box__header">
+ Incentives
+ </h3>
+ <a class="incentive incentive__sidebar--simple" href="/new-homes/texas/greater-houston/incentives/beat-the-heat">
+ <div class="incentive-background">
+ <img data-dam-generated alt="Beat the Heat Savings" height="1200" loading="eager" sizes="(min-width: 64rem) 328px, 100vw" src="https://dam.mihomes.com/media/4608788/50421.jpeg" srcset="https://dam.mihomes.com/media/4608788/50398.jpeg?timestamp=2026-04-09T20%3A01%3A32.5717027 300w, https://dam.mihomes.com/media/4608788/50397.jpeg?timestamp=2026-04-09T20%3A01%3A30.4800729 600w, https://dam.mihomes.com/media/4608788/50423.jpeg?timestamp=2026-04-09T20%3A01%3A37.2955785 900w, https://dam.mihomes.com/media/4608788/50396.jpeg?timestamp=2026-04-09T20%3A01%3A28.3996383 1200w, https://dam.mihomes.com/media/4608788/50421.jpeg?timestamp=2026-04-09T20%3A01%3A35.8482981 1800w, https://dam.mihomes.com/media/4608788/50422.jpeg?timestamp=2026-04-09T20%3A01%3A37.3648083 2400w" title="Beat the Heat - Card Image" width="1800" class="cover-image cover-image--abs" />
+ <div class="incentive__badge">
+<img data-dam-generated alt="Beat the Heat Savings" height="250" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4608787/50421.jpeg?timestamp=2026-04-09T20%3A01%3A34.9550629" srcset="https://dam.mihomes.com/media/4608787/50398.jpeg?timestamp=2026-04-09T20%3A01%3A31.6478142 300w, https://dam.mihomes.com/media/4608787/50397.jpeg?timestamp=2026-04-09T20%3A01%3A28.9717921 600w, https://dam.mihomes.com/media/4608787/50423.jpeg?timestamp=2026-04-09T20%3A01%3A37.5471390 900w, https://dam.mihomes.com/media/4608787/50396.jpeg?timestamp=2026-04-09T20%3A01%3A27.3019546 1200w, https://dam.mihomes.com/media/4608787/50421.jpeg?timestamp=2026-04-09T20%3A01%3A34.9550629 1800w, https://dam.mihomes.com/media/4608787/50422.jpeg?timestamp=2026-04-09T20%3A01%3A36.9908980 2400w" title="Beat the Heat - Badge" width="250" class="incentive__badge-background" maxwidth="2400" /> </div>
+ </div>
+ <div class="incentive-inner">
+ <span class="incentive-title--wrapper">
+ <p class="incentive-title">Beat the Heat</p>
+ </span>
+ <p class="incentive-sub-headline">Summer savings have arrived. Save big now with free appliances**, closing costs***, and more for a limited time only.</p>
+ <p class="incentive-button--wrapper">
+ <span class="button button-small" href="/new-homes/texas/greater-houston/incentives/beat-the-heat">
+ <span class="button-text uppercase">View Details</span>
+ </span>
+ </p>
+ </div>
+ </a>
+
+</div>
+</section>
+
+ <div id="design" class="box box-full box-no-padding-bottom" data-subnav-page-link="Design Options">
+ <div class="content-inner-centered">
+ <h2>Add the perfect finishing touch</h2>
+ <p class="subtitle content-inner-centered-narrow negative-top">
+ Put your personal touch on these Quick Move-In Homes with some selections from our Design Studio.
+ </p>
+ <div class="button-tooltip-wrapper">
+ <a class="button button-tooltip event-click" href="https://edc.envisionoptions.com/browser.aspx?NHTNumber=MIHOMES&Loc1=100&Lev1=CORP&Loc2=260&Lev2=DIV&HomeNumber=13C4D4&Page=Confirmselection&utm_source=mihomes.com&utm_campaign=&utm_content=lone-star-landing-Boxwood-10220-Burton-Path&utm_term=" target="_blank" data-event-category=OptionsGallery
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ See This Home's Options
+ </a>
+
+
+ </div>
+ <a class="button" href="/design/design-studio">
+ <span class="button-text">
+ Visit a Design Studio
+ </span>
+ </a>
+ </div>
+ </div>
+ <div class="box box-full box-no-padding-top">
+ <div class="contained-width">
+ <hr class="hr-even">
+
+ <h4>Incentives</h4>
+ <article class="preview-box ">
+ <a class="preview-box-link" href="/new-homes/texas/greater-houston/incentives/beat-the-heat">
+ <div class="preview-box__image preview-box__preview one-third">
+ <img data-dam-generated alt="Beat the Heat Savings" height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4608788/50421.jpeg" srcset="https://dam.mihomes.com/media/4608788/50398.jpeg?timestamp=2026-04-09T20%3A01%3A32.5717027 300w, https://dam.mihomes.com/media/4608788/50397.jpeg?timestamp=2026-04-09T20%3A01%3A30.4800729 600w, https://dam.mihomes.com/media/4608788/50423.jpeg?timestamp=2026-04-09T20%3A01%3A37.2955785 900w" title="Beat the Heat - Card Image" width="1800" class="cover-image" maxwidth="900" />
+ </div>
+ <div class="preview-box__content">
+ <h3 class="h3 preview-box__header">
+ Beat the Heat
+
+
+ </h3>
+ <p class="preview-box__text">Summer savings have arrived. Save big now with free appliances**, closing costs***, and more for a limited time only.</p>
+ <p>
+ <span class="button-plain button-plain-alt" href="/new-homes/texas/greater-houston/incentives/beat-the-heat">View Details »</span>
+ </p>
+ </div>
+ </a>
+ </article>
+ <article class="preview-box ">
+ <a class="preview-box-link" href="/new-homes/texas/greater-houston/incentives/rate-lock">
+ <div class="preview-box__image preview-box__preview one-third">
+ <img data-dam-generated alt="Lock 4 Later" height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/325755/50396.jpeg" srcset="https://dam.mihomes.com/media/325755/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/325755/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/325755/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w" title="32963-CORP-Lock-4-Later-Incentive Page 1800x1200 Pattern" width="1800" class="cover-image" maxwidth="900" />
+ </div>
+ <div class="preview-box__content">
+ <h3 class="h3 preview-box__header">
+ Long-Term Rate Lock
+
+
+ </h3>
+ <p class="preview-box__text">Thinking about moving later? At M/I Homes, we understand that buying a home is one of the most significant decisions you'll ever make. That's why we're offering a special extended rate lock through M/I Financial, LLC to give you peace of mind and financial stability during your home-buying journey.
+
+</p>
+ <p>
+ <span class="button-plain button-plain-alt" href="/new-homes/texas/greater-houston/incentives/rate-lock">View Details »</span>
+ </p>
+ </div>
+ </a>
+ </article>
+ </div>
+ </div>
+
+ <div id="floor" class="box box-full box-last event-inview" data-subnav-page-link="FloorPlan" data-event-category=Floorplan
+ data-event-action=scroll
+ data-event-label=view
+>
+ <div class="content-inner-centered content-inner-centered--mobile">
+<img data-dam-generated alt="Boxwood First Floor" height="803" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/5073898/50421.jpeg?timestamp=2026-07-28T16%3A33%3A46.8696536" srcset="https://dam.mihomes.com/media/5073898/50398.jpeg?timestamp=2026-07-28T16%3A33%3A43.4399869 300w, https://dam.mihomes.com/media/5073898/50397.jpeg?timestamp=2026-07-28T16%3A33%3A43.3500763 600w, https://dam.mihomes.com/media/5073898/50423.jpeg?timestamp=2026-07-28T16%3A33%3A48.5751896 900w, https://dam.mihomes.com/media/5073898/50396.jpeg?timestamp=2026-07-28T16%3A33%3A39.7556443 1200w, https://dam.mihomes.com/media/5073898/50421.jpeg?timestamp=2026-07-28T16%3A33%3A46.8696536 1800w, https://dam.mihomes.com/media/5073898/50422.jpeg?timestamp=2026-07-28T16%3A33%3A47.8957042 2400w" title="Lone Star Landing L2210 Boxwood_First Floor" width="356" class="cover-image cover-image--abs" /> <h2>Floorplan Options for Your New Home</h2>
+ <p class="content-inner-centered-narrow negative-top subtitle">The Boxwood accommodates a variety of household living arrangements with its highly desired flexibility and modern design. Explore the many possibilities in the popular Boxwood plan.</p>
+ <a target="_blank" class="button floor-plan-options__button event-click" href="https://rifp.ml3ds-icon.com/#/floorplan/451808?pcoLink=67478&pco=1220833%2c1220834%2c1220835%2c1220836%2c1220839&reverseFloorPlan=false" data-event-category=Floorplan
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <svg class="icon icon-fullscreen" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#fullscreen"></use>
+</svg>
+ <span class="button-text">
+ Show Floorplan
+ </span>
+ </a>
+ </div>
+ <section class="floor-plan-options">
+ <iframe loading="lazy" id="floor-plan" data-fullsize class="floor-plan-options__iframe" data-src="https://rifp.ml3ds-icon.com/#/floorplan/451808?pcoLink=67478&pco=1220833%2c1220834%2c1220835%2c1220836%2c1220839&reverseFloorPlan=false" scrolling="no" style="overflow: hidden">
+ <p>Your browser does not support iframes.</p>
+ </iframe>
+ </section>
+ </div>
+
+ <div class="box box-full box-no-padding-top-bottom " id="">
+ <div class="content-inner-centered">
+ <div class="leadgenTitleBlock">
+ <h2 class="h2">Ready to plan a visit? We can help</h2>
+ <p class="subtitle marginless">Send us your preferred time to stop by and a sales representative will take care of the rest</p>
+ </div>
+ <section class="lead-form">
+ <div id="lead-form-block-user-info" class="lead-form-container lead-form-block" data-lead-form-sidebar="">
+ <aside class="lead-form-block__details" style="">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-3">
+ <img data-dam-generated alt="kschieb@MIHOMES.com-0515202606.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4749913/50421.jpeg?timestamp=2026-05-15T10%3A57%3A30.3393142" srcset="https://dam.mihomes.com/media/4749913/50398.jpeg?timestamp=2026-05-15T10%3A57%3A29.1231152 300w, https://dam.mihomes.com/media/4749913/50397.jpeg?timestamp=2026-05-15T10%3A57%3A28.5622574 600w, https://dam.mihomes.com/media/4749913/50423.jpeg?timestamp=2026-05-15T10%3A57%3A31.4095112 900w, https://dam.mihomes.com/media/4749913/50396.jpeg?timestamp=2026-05-15T10%3A57%3A27.9993137 1200w, https://dam.mihomes.com/media/4749913/50421.jpeg?timestamp=2026-05-15T10%3A57%3A30.3393142 1800w, https://dam.mihomes.com/media/4749913/50422.jpeg?timestamp=2026-05-15T10%3A57%3A31.9837747 2400w" title="kschieb@MIHOMES.com-0515202606" width="96" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-3">
+ <img data-dam-generated alt="jwammack@mihomes.com-0515202606.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4749912/50421.jpeg?timestamp=2026-05-15T10%3A57%3A25.2653266" srcset="https://dam.mihomes.com/media/4749912/50398.jpeg?timestamp=2026-05-15T10%3A57%3A21.1585036 300w, https://dam.mihomes.com/media/4749912/50397.jpeg?timestamp=2026-05-15T10%3A57%3A20.0113438 600w, https://dam.mihomes.com/media/4749912/50423.jpeg?timestamp=2026-05-15T10%3A57%3A25.2663942 900w, https://dam.mihomes.com/media/4749912/50396.jpeg?timestamp=2026-05-15T10%3A57%3A20.5825822 1200w, https://dam.mihomes.com/media/4749912/50421.jpeg?timestamp=2026-05-15T10%3A57%3A25.2653266 1800w, https://dam.mihomes.com/media/4749912/50422.jpeg?timestamp=2026-05-15T10%3A57%3A25.2653069 2400w" title="jwammack@mihomes.com-0515202606" width="96" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-3">
+ <img data-dam-generated alt="Susan Fendley" height="1800" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4015511/50421.jpeg?timestamp=2025-11-11T13%3A58%3A34.7199592" srcset="https://dam.mihomes.com/media/4015511/50398.jpeg?timestamp=2025-11-11T13%3A58%3A33.5866155 300w, https://dam.mihomes.com/media/4015511/50397.jpeg?timestamp=2025-11-11T13%3A58%3A32.4902079 600w, https://dam.mihomes.com/media/4015511/50423.jpeg?timestamp=2025-11-11T13%3A58%3A35.6220231 900w, https://dam.mihomes.com/media/4015511/50396.jpeg?timestamp=2025-11-11T13%3A58%3A33.4179743 1200w, https://dam.mihomes.com/media/4015511/50421.jpeg?timestamp=2025-11-11T13%3A58%3A34.7199592 1800w, https://dam.mihomes.com/media/4015511/50422.jpeg?timestamp=2025-11-11T13%3A58%3A35.4540301 2400w" title="Susan Fendley" width="1800" class="cover-image" />
+ </div>
+ </div>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=2813937070'>(281) 393-7070</a>
+ </p>
+ </aside>
+<form action="/api/LeadGenFormBlock/LeadGenFormBlock" class="lead-form-block__form" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="018e330a-076c-4134-99ca-0db27414c629" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Model" /><input id="PostType" name="PostType" type="hidden" value="block" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:06 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="FormAgentEmailAddress" name="FormAgentEmailAddress" type="hidden" value="" /><input id="ItemId" name="ItemId" type="hidden" value="01e7f823-1bb8-4a5e-b875-7bbc2a59c17f" /><input id="HomeType" name="HomeType" type="hidden" value="Single Family Home" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="" hidden>
+ </div>
+ <div class="form-field">
+ <label for="fullname">Full Name </label>
+ <input type="text"
+ name="FormFullName"
+ placeholder="John Doe"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required."
+ maxlength="60"
+
+ data-parsley-filter-emoji=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="emailaddress">Email Address </label>
+ <input type="email"
+ name="FormEmailAddress" ,
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field">
+ <label for="phone">Phone Number </label>
+ <input class="gami-tel" type="tel"
+ name="FormPhoneNumber"
+ id="phone"
+ placeholder="5555555555"
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ maxlength="25"
+ value=""
+
+ data-parsley-phone-number=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="input">Questions or Comments </label>
+ <textarea rows="5"
+ name="FormComments"
+ id="input"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000"></textarea>
+ </div>
+ <div class="lead-form-block__contacts">
+ <div class="form-field select" {="">
+ <label for="tripday_block">Preferred Day <em> (Optional)</em></label>
+ <div class="select-wrap">
+ <div class="select-wrap">
+<select date-nested-select="#select-triptime-block-sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+
+ <div class="form-field select" {="">
+ <label for="triptime_block">Preferred Time <em> (Optional)</em></label>
+ <div class="select-wrap">
+
+<select id="select-triptime-block-sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-block__checkboxes-container">
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormEmailOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSAssociateCommunicationsOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ <div class="lead-form-block__submit">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+
+ <span class="align-center">
+ <a class="button-plain small" data-open-modal="privacy-policy-modal">Privacy Policy</a>
+ </span>
+ </div>
+</form> </div>
+ <div id="lead-form-block-agent-form" class="lead-form-container lead-form-block" data-lead-form-sidebar="" data-agent-section style="display: none;">
+ <figure class="lead-form lead-form-sidebar">
+ <div id="form-agent-header" class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+<form action="/new-homes/texas/greater-houston/montgomery/lone-star-landing/boxwood-plan/10220-burton-path" class="lead-form-sidebar-section" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""> <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ id="block-agent-email"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+</form> </div>
+ </figure>
+ </div>
+
+
+
+ <div class="lead-form-container-success">
+ <figure class="lead-form lead-form-sidebar">
+ <div class="lead-form-container-success" style="display: block">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" method="POST" name="thanksyou_sidebar" data-parsley-validate="" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+
+ <div>
+ <div class="form-field form-field-password">
+ <label for="password"></label>
+ <input type="password"
+ name="password"
+ id="password"
+ placeholder="Password"
+ data-parsley-valid-password=""
+ minlength="8"
+ required=""
+ data-parsley-required-message="Password is required."
+ data-parsley-trigger="blur">
+
+ <button type="button" class="password-input-change" data-input-change="">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span tabindex="0"
+ data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">Create Account</span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ </div>
+ </section>
+ </div>
+ </div>
+
+ <div class="box box-centered box-full box-transparent" id="neraby">
+ <div class="box-full-inner">
+ <h3 class="h2">
+ Other Quick Move-In Homes
+ </h3>
+
+ <div class="featured-grid">
+ <div class="row">
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/texas/greater-houston/montgomery/lone-star-landing/boxwood-plan/10318-navarro-path">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Front Exterior" height="1536" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/5113711/50421.jpeg?timestamp=2026-08-05T09%3A35%3A53.6108512" srcset="https://dam.mihomes.com/media/5113711/50398.jpeg?timestamp=2026-08-05T09%3A35%3A51.3122299 300w, https://dam.mihomes.com/media/5113711/50397.jpeg?timestamp=2026-08-05T09%3A35%3A54.4632590 600w, https://dam.mihomes.com/media/5113711/50423.jpeg?timestamp=2026-08-05T09%3A35%3A53.3459259 900w, https://dam.mihomes.com/media/5113711/50396.jpeg?timestamp=2026-08-05T09%3A35%3A50.1485999 1200w, https://dam.mihomes.com/media/5113711/50421.jpeg?timestamp=2026-08-05T09%3A35%3A53.6108512 1800w, https://dam.mihomes.com/media/5113711/50422.jpeg?timestamp=2026-08-05T09%3A35%3A51.9147481 2400w" title="[L2232-z002]FrontExterior" width="2048" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Boxwood</p>
+ <p class="featured-grid-middle">10318 Navarro Path, Montgomery, Texas</p>
+ <p class="featured-grid-subtitle">Listed at $274,990</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/texas/greater-houston/montgomery/lone-star-landing/boxwood-plan/10547-annex-avenue">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Boxwood Elevation G" height="1800" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/604648/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/604648/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/604648/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/604648/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/604648/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/604648/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/604648/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="HOUS-Boxwood-ElevationG-elev_DWN" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Boxwood</p>
+ <p class="featured-grid-middle">10547 Annex Avenue, Montgomery, Texas</p>
+ <p class="featured-grid-subtitle">Listed at $274,990</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/texas/greater-houston/montgomery/lone-star-landing/boxwood-plan/10531-annex-avenue">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Boxwood Elevation F" height="1800" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/604651/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/604651/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/604651/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/604651/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/604651/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/604651/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/604651/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="HOUS-Boxwood-ElevationF-elev_DWN" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Boxwood</p>
+ <p class="featured-grid-middle">10531 Annex Avenue, Montgomery, Texas</p>
+ <p class="featured-grid-subtitle">Listed at $291,990</p>
+ </a>
+</div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ </main>
+
+
+<footer class="main-footer">
+ <div class="main-footer-inner">
+ <ul class="horizontal-list">
+ <li><a href="https://apply.workable.com/mi-homes/" target="_blank" rel="noopener noreferrer" >Careers</a></li>
+ <li><a href="/support/warranty" >Warranty</a></li>
+ <li><a href="https://investors.mihomes.com/" rel="noopener noreferrer" title="Investor Relations" target="_blank" >Investors</a></li>
+ <li><a href="/events" >Events</a></li>
+ <li><a href="/incentives" >Incentives</a></li>
+ <li><a href="/agent/agent-info" >Agents & Brokers</a></li>
+ <li><a href="/resources" >Home Buying Resources</a></li>
+ <li><a href="/why-mi/journey" >Journey</a></li>
+ <li><a href="/blog/" >Blog</a></li>
+ </ul>
+ <ul class="horizontal-list">
+ <li><a href="/policies/privacy-policy" >Privacy Policy</a></li>
+ <li><a href="/policies/terms-of-use" >Terms of Use</a></li>
+ <li><a href="/subscriptions" >Manage Subscriptions</a></li>
+ <li><a href="/support/ccpa" >CCPA</a></li>
+ </ul>
+ <ul class="icon-list">
+ <li>
+<a href="https://www.instagram.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Instagram" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704717/50399.png" srcset="https://dam.mihomes.com/media/4704717/50399.png?timestamp=2026-05-04T18%3A56%3A58.4036491 300w, https://dam.mihomes.com/media/4704717/50420.png 600w" title="instagram" width="24" /></a> </li>
+ <li>
+<a href="https://www.facebook.com/MIHomesInc/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Facebook" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57191/50399.png" srcset="https://dam.mihomes.com/media/57191/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57191/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="facebook" width="24" /></a> </li>
+ <li>
+<a href="https://www.youtube.com/MIHomesInc" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Youtube" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704715/50399.png" srcset="https://dam.mihomes.com/media/4704715/50399.png?timestamp=2026-05-04T18%3A34%3A30.5730196 300w, https://dam.mihomes.com/media/4704715/50420.png 600w" title="youtube" width="24" /></a> </li>
+ <li>
+<a href="https://www.pinterest.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Pinterest" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57192/50399.png" srcset="https://dam.mihomes.com/media/57192/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57192/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="pintrest" width="24" /></a> </li>
+ <li>
+<a href="http://www.houzz.com/pro/mi-homes/m-i-homes" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Houzz" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57193/50399.png" srcset="https://dam.mihomes.com/media/57193/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57193/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="houzz" width="24" /></a> </li>
+ <li>
+<a href="http://portal.hud.gov" class="" rel="me" target="_blank" ><img data-dam-generated alt="Equal Housing" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704718/50399.png" srcset="https://dam.mihomes.com/media/4704718/50399.png?timestamp=2026-05-04T19%3A02%3A51.2896193 300w, https://dam.mihomes.com/media/4704718/50420.png 600w" title="equal-housing" width="28" /></a> </li>
+ </ul>
+ <p class="main-footer-copyright">
+ Copyright 2026, M/I Homes, Inc. All rights reserved.
+ </p>
+ <p id="division-disclaimer" class="main-footer-copyright">
+
+
+ </p>
+ </div>
+</footer>
+</div>
+<div aria-label="Cookie Consent" role="dialog" id="ccpa-modal" class="ccpa-modal">
+ <p>By browsing, you accept our <a href="/policies/terms-of-use">terms of use</a> and <a href="/policies/privacy-policy">privacy policy</a>.</p>
+ <button class="button" type="button">OK</button>
+</div>
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/modals.css?ver=202608092245" rel="stylesheet" fetchpriority="low">
+ <div class="modal modal-wide box" data-modal="" id="privacy-policy-modal">
+ <button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div id="privacy-policy-text"></div>
+</div><div class="modal box box-wide box-paddingless" data-modal="" id="mortgage-payment-calculator-modal">
+<button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+</button>
+ <div id="mortgage-payment-calculator" data-price="282990" data-values="a1f1e2fa-39a4-4bd8-9e11-d26de7595fc6"></div>
+</div>
+ <div class="modal" data-modal id="search-modal">
+ <form action="/search" class="search-form ">
+ <input class="search-form-input" id="search-form-input" name="search" placeholder="Search M/I Homes"
+ type="search" />
+ <button class="button search-form-clear-button" type="button">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+
+ </button>
+ <button class="button search-form-submit" type="submit">
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ <div class="search-form-results">
+ <div class="search-form-results-list"></div>
+ </div>
+ </form>
+ </div>
+</div>
+
+<!-- toolkit scripts -->
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit_common.js?ver=202608092245"></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit.js?ver=202608092245"></script>
+ <script src="https://cdn.mihomes.com/assets/toolkit/js/product.js?ver=202608092245"></script>
+ <script defer src="https://cdn.mihomes.com/assets/toolkit/js/mortgage-calculator.js?ver=202608092245"></script>
+<script>window.jQuery = window.$ = window.JQUERY;</script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/common.js?ver=202608092245" defer></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/favorites.js?ver=202608092245" defer></script>
+
+
+<script>
+ var w = Math.max(
+ document.body.scrollWidth,
+ document.documentElement.scrollWidth,
+ document.body.offsetWidth,
+ document.documentElement.offsetWidth,
+ document.documentElement.clientWidth
+ );
+ window.setCookie('screen-width', encodeURIComponent(w), { expires: 14, path: "/" })
+ </script>
+
+<script>
+
+
+</script>
+<script type="text/javascript">
+ const millisecondsPerDay = 86400000;
+ const millisecondsPerHour = millisecondsPerDay / 24;
+ const millisecondsPerMinute = millisecondsPerHour / 60;
+ const millisecondsPerSecond = 1000;
+ function addLeadingZero(val) {
+ if(val.toString().length < 2) {
+ return '0'+val;
+ }
+ return val;
+ }
+ function change() {
+ const list = Array.from(document.querySelectorAll('[data-countdown]'));
+ const now = new Date().getTime();
+ list.forEach((el) => {
+ const d = new Date(el.getAttribute('data-countdown')).getTime();
+ let diff = d - now;
+ let days = 0;
+ let hours = 0;
+ let minutes = 0;
+ let seconds = 0;
+ if(diff > 0) {
+ days = Math.floor(diff / millisecondsPerDay);
+ diff = diff - (days * millisecondsPerDay)
+ hours = Math.floor(diff/millisecondsPerHour);
+ diff = diff - (hours * millisecondsPerHour)
+ minutes = Math.floor(diff/millisecondsPerMinute);
+ diff = diff - (minutes * millisecondsPerMinute);
+ seconds = Math.floor(diff/millisecondsPerSecond);
+ }
+ try {
+ el.querySelector('.days').innerText = addLeadingZero(Math.max(days, 0));
+
+ } catch (e) {}
+ try {
+ el.querySelector('.hours').innerText = addLeadingZero(Math.max(hours, 0));
+ } catch(e) {}
+ try {
+ el.querySelector('.minutes').innerText = addLeadingZero(Math.max(minutes, 0));
+ } catch (e) {}
+ try {
+ el.querySelector('.seconds').innerText = addLeadingZero(Math.max(seconds, 0));
+ } catch (e) {}
+
+ });
+ setTimeout(()=>requestAnimationFrame(change), millisecondsPerSecond);
+ }
+ requestAnimationFrame(change);
+</script>
+<script>(function(){function c(){var b=a.contentDocument||(a.contentWindow&&a.contentWindow.document);if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'a29495457eae3a69',t:'MTc4NjQyMzQ0NQ=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
+
+</html>
\ No newline at end of file
diff --git a/collectors/mi-homes/fixtures/homes/h10.html b/collectors/mi-homes/fixtures/homes/h10.html
new file mode 100644
index 00000000..2e221326
--- /dev/null
+++ b/collectors/mi-homes/fixtures/homes/h10.html
@@ -0,0 +1,2110 @@
+
+
+<!doctype html>
+<html lang="en">
+
+<head>
+
+ <script>
+ var G = G || {};
+ G.pingForEmployee = true;
+ </script>
+
+
+<meta name="VIcurrentDateTime" content="639220202755302911" />
+<meta name="VirtualFolder" content="/" />
+<script type="text/javascript" src="/layouts/system/VisitorIdentification.js"></script>
+
+
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" name="viewport">
+ <title>7401 Sumac Drive Argyle, TX 76226 - M/I Homes</title>
+ <!-- font -->
+ <link rel="preconnect" href="https://cdn.mihomes.com" crossorigin>
+ <link rel="preconnect" href="https://use.typekit.net" crossorigin>
+
+
+
+<!-- Google Tag Script -->
+
+ <script id="js-GTM-script">
+ window.dataLayer = window.dataLayer || [];
+ window.dataLayer.push({
+ "PageType": "Spec",
+ "MIAccount": "No",
+ "Division": "Dallas / Fort Worth"
+});
+
+(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=
+'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
+})(window,document,'script','dataLayer','GTM-M2JH3QJ');
+ </script>
+
+
+<!-- End Google Tag Script -->
+ <meta name="referrer" content="always" />
+
+ <link href="https://use.typekit.net/sgt3sit.css" rel="stylesheet" type="text/css" media="print" onload="this.media='all'" id="fonts-loaded" />
+
+<script>
+ try {
+ document.fonts.ready.then(() => {
+ document.body.classList.add('body--fonts-loaded');
+ if(window.setCookiie) {
+ window.setCookie('fonts-cached', 'true', { expires: 7, path: '/' });
+ }
+ });
+ } catch (e) { }
+</script>
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/toolkit.css?ver=202608092245" type="text/css" rel="stylesheet">
+ <!-- conditionally load css for blog -->
+
+ <script>
+ window.environment = "Prod";
+ window.googleApiKey = "REDACTED-THIRD-PARTY-PUBLIC-KEY";
+ </script>
+ <script>
+
+ window.maps =[];
+ window.AssetRootUrl = 'https://cdn.mihomes.com';
+
+ </script>
+
+ <meta name="twitter:card" content="summary" />
+<meta name="twitter:site" content="@mihomes" />
+<meta name="twitter:creator" content="@mihomes">
+
+<meta property="og:site_name" content="https://www.mihomes.com" />
+<meta property="og:type" content="article" />
+<meta property="og:url" content="https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/argyle/sagebrook/pizarro-plan/7401-sumac-drive" />
+
+
+ <meta property="og:title" content="7401 Sumac Drive" />
+ <meta name="twitter:title" content="7401 Sumac Drive" />
+
+
+
+ <meta property="og:description" content="Welcome to 7401 Sumac Drive, Argyle, Texas — a new construction single-story home built by M/I Homes. This Quick Move-In home offers 2,106 square feet of thoughtfully designed living space, featuring 4 bedrooms and 3 bathrooms on 1 above-ground level." />
+ <meta name="twitter:description" content="Welcome to 7401 Sumac Drive, Argyle, Texas — a new construction single-story home built by M/I Homes. This Quick Move-In home offers 2,106 square feet of thoughtfully designed living space, featuring 4 bedrooms and 3 bathrooms on 1 above-ground level." />
+ <meta name="description" content="Welcome to 7401 Sumac Drive, Argyle, Texas — a new construction single-story home built by M/I Homes. This Quick Move-In home offers 2,106 square feet of thoughtfully designed living space, featuring 4 bedrooms and 3 bathrooms on 1 above-ground level." />
+
+
+
+ <link rel="canonical" href="https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/argyle/sagebrook/pizarro-plan/7401-sumac-drive">
+ <link defer href="https://dam.mihomes.com/media/4179716/50399.png" rel="icon" type="image/vnd.microsoft.icon" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="57x57"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-57x57.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="114x114"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-114x114.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="72x72"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-72x72.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="144x144"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-144x144.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="60x60"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-60x60.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="120x120"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-120x120.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="76x76"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-76x76.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="152x152"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-152x152.png" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-196x196.png"
+ sizes="196x196" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-96x96.png"
+ sizes="96x96" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-32x32.png"
+ sizes="32x32" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-16x16.png"
+ sizes="16x16" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-128.png"
+ sizes="128x128" />
+ <meta name="application-name" content=" " />
+ <meta name="msapplication-TileColor" content="#FFFFFF" />
+ <meta name="msapplication-TileImage" content="https://cdn.mihomes.com/assets/favicons/images/mstile-144x144.png" />
+ <meta name="msapplication-square70x70logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-70x70.png" />
+ <meta name="msapplication-square150x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-150x150.png" />
+ <meta name="msapplication-wide310x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x150.png" />
+ <meta name="msapplication-square310x310logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x310.png" />
+
+ <script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Organization",
+ "foundingDate": "1976",
+ "duns": "071649743",
+ "founders": [
+ {
+ "@type": "Person",
+ "name": "Melvin Schottenstein"
+ },
+ {
+ "@type": "Person",
+ "name": "Irving Schottenstein"
+ }
+ ],
+ "employees": [
+ {
+ "@type": "Person",
+ "name": "Robert H. Schottenstein",
+ "jobTitle": "Chairman, President, and CEO"
+ }
+ ],
+ "sameAs": [
+ "https://www.facebook.com/MIHomesInc",
+ "https://twitter.com/mihomes",
+ "https://www.instagram.com/mihomes/",
+ "https://www.youtube.com/MIHomesInc",
+ "https://www.houzz.com/pro/mi-homes/m-i-homes",
+ "https://www.pinterest.com/mihomes/"
+ ],
+ "logo": {
+ "@type": "ImageObject",
+ "name": "M/I Homes logo",
+ "contentUrl": "https://dam.mihomes.com/media/39664/50399.png"
+ },
+ "name": "M/I Homes",
+ "description": "M/I Homes, Inc. founded in 1976, M/I Homes is one of nation's leading builders of single family homes. M/I has established an exemplary reputation based on a strong commitment to superior customer service, innovative design, quality construction and premium locations. Listed on the New York Stock Exchange, M/I Homes serves a broad segment of the housing market including first-time, move-up, luxury and empty nester buyers.",
+ "url": "https://www.mihomes.com",
+ "isicv4": "4100"
+}</script>
+ <script defer src="https://www.youtube.com/iframe_api"></script>
+ <script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
+ <script>
+ window.addEventListener('load', () => {
+ const swUrl = "https://cdn.mihomes.com/assets/workers/product-page-service-worker.js"
+ navigator.serviceWorker
+ .register(swUrl, {
+ scope: '/'
+ })
+ .then(registration => {
+ console.log('Service Worker registered with scope:', registration.scope);
+ })
+ .catch(error => {
+ console.error('Error during service worker registration:', error);
+ });
+ });
+ </script>
+</head>
+
+<body class="no-js body--home-template">
+
+
+
+<!-- Google Tag Manager --><!-- Global site tag (gtag.js) - Google Analytics -->
+
+ <noscript>
+ <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M2JH3QJ"
+ height="0" width="0" style="display: none; visibility: hidden">
+ </iframe>
+ </noscript>
+
+<!-- End Google Tag Manager GTMM2JH3QJ -->
+<a class="skip-link" href="#content">Skip To Content</a>
+
+<div class="page-container">
+ <div id="overview" data-subnav-page-link="Overview"></div>
+
+
+<header class="main-header">
+ <div class="main-header-inner">
+<a href="/" class="main-header-logo" > <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png">
+<svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg></a> <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png" />
+ <button class="main-header-open-nav" data-open-nav="" title="Toggle Hamburger Navigation">
+ <svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg>
+ <svg class="icon icon-menu" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#menu"></use>
+</svg>
+ </button>
+ <div class="main-header-nav-items" data-a11y-focus data-nav-tray>
+ <nav class="main-nav">
+ <ul>
+ <li>
+
+ <a href="/" class="main-nav-link mobile-only" >Home</a>
+ </li>
+ <li>
+
+ <a href="/new-homes/texas/dallas-fort-worth-metroplex" class="main-nav-link find-a-home-link" >Find a Home</a>
+ </li>
+ <li>
+
+ <a href="/about-us/overview" class="main-nav-link " >About</a>
+ </li>
+ <li>
+
+ <a href="/why-mi/overview" class="main-nav-link " >Why M/I</a>
+ </li>
+ <li>
+
+ <a href="/incentives" class="main-nav-link " >Incentives</a>
+ </li>
+ <li>
+
+ <a href="/financing" class="main-nav-link " >Financing</a>
+ </li>
+ <li>
+
+ <a href="/support/warranty" class="main-nav-link " >Warranty</a>
+ </li>
+ <li>
+
+ <a href="/support" class="main-nav-link " >Contact</a>
+ </li>
+ <li>
+
+ <a href="/resources" class="main-nav-link " >Resources</a>
+ </li>
+ </ul>
+ </nav>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ <div class="aux-nav">
+ <ul>
+ <li data-a11y-focus>
+ <a href="/account/register" class="main-nav-link" >Sign Up</a>
+ </li>
+ <li data-a11y-focus>
+ <a href="/account/login" class="main-nav-link" >Log In</a>
+ </li>
+ </ul>
+ </div>
+ </div>
+ <button class="main-header-close-nav" data-close-nav>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ </div>
+</header>
+ <div class="breadcrumbs-bar">
+ <div class="breadcrumbs-wrapper">
+ <nav class="breadcrumbs">
+ <a class="button-plain" href="/">Home</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/communities">Texas</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/dallas-fort-worth-metroplex/communities">Dallas / Fort Worth Metroplex</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/dallas-fort-worth-metroplex/argyle">Argyle</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/dallas-fort-worth-metroplex/argyle/sagebrook">Sagebrook</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/dallas-fort-worth-metroplex/argyle/sagebrook/pizarro-plan">Pizarro</a>
+ <span class="seperator"> • </span>
+ <span>7401 Sumac Drive</span>
+ </nav>
+ </div>
+ </div>
+ <script>var bar = document.querySelector('.breadcrumbs-bar'); bar.setAttribute('style', 'height:' + bar.getBoundingClientRect().height + 'px');</script>
+<script type="application/ld+json">
+{
+"@context": "https://schema.org",
+"@type": "BreadcrumbList",
+"itemListElement":[
+{
+"@type":"ListItem",
+"position":1,
+"name":"Texas",
+"item":"https://www.mihomes.com/new-homes/texas/communities"
+},
+{
+"@type":"ListItem",
+"position":2,
+"name":"Dallas / Fort Worth Metroplex",
+"item":"https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/communities"
+},
+{
+"@type":"ListItem",
+"position":3,
+"name":"Argyle",
+"item":"https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/argyle"
+},
+{
+"@type":"ListItem",
+"position":4,
+"name":"Sagebrook",
+"item":"https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/argyle/sagebrook"
+},
+{
+"@type":"ListItem",
+"position":5,
+"name":"Pizarro",
+"item":"https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/argyle/sagebrook/pizarro-plan"
+},
+{
+"@type":"ListItem",
+"position":6,
+"name":"7401 Sumac Drive",
+
+}
+]
+}
+</script>
+
+
+ <div class="page-notice-wrapper" id="page-notification"></div>
+ <main class="main-content" id="content" tabindex="0">
+
+<ul class="product-flags">
+</ul>
+<div class="image-banner">
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <img data-dam-generated alt="Pizarro Elevation H" height="1600" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/2053203/50421.jpeg?timestamp=2024-07-02T16%3A20%3A47.9946944" srcset="https://dam.mihomes.com/media/2053203/50398.jpeg?timestamp=2024-07-02T16%3A21%3A05.3240402 300w, https://dam.mihomes.com/media/2053203/50397.jpeg?timestamp=2024-07-02T16%3A21%3A14.8018385 600w, https://dam.mihomes.com/media/2053203/50423.jpeg?timestamp=2024-07-02T16%3A21%3A20.3455241 900w, https://dam.mihomes.com/media/2053203/50396.jpeg?timestamp=2024-07-02T16%3A21%3A04.6815049 1200w, https://dam.mihomes.com/media/2053203/50421.jpeg?timestamp=2024-07-02T16%3A20%3A47.9946944 1800w, https://dam.mihomes.com/media/2053203/50422.jpeg?timestamp=2024-07-02T16%3A20%3A52.1104126 2400w" title="DFW-Pizarro-ElevationH-Gen3-elev_DSK" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </a>
+ <div class="image-banner-more">
+ <a href="#product-gallery"
+ data-goto-slide="1"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="1"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Exterior" height="1290" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/1378468/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/1378468/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/1378468/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/1378468/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/1378468/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/1378468/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/1378468/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="Z1 Exterior - Pizarro Representational Photo" width="1735" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="2"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="2"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Kitchen" height="1536" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/953770/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/953770/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/953770/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/953770/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/953770/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/953770/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/953770/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="[L402-z004]Kitchen2" width="2304" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="3"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="3"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Dining Room" height="1536" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/953766/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/953766/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/953766/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/953766/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/953766/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/953766/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/953766/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="[L402-z019]DiningRoom" width="2304" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="4"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="4"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Family Room" height="1536" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/953787/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/953787/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/953787/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/953787/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/953787/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/953787/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/953787/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="[L402-z024]FamilyRoom4" width="2304" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="third event-click image-banner-total gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <span class="button button-transparent">
+ View 11 Photos
+ </span>
+ </a>
+ </div>
+</div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Pizarro Elevation H" height="1600" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/2053203/50421.jpeg?timestamp=2024-07-02T16%3A20%3A47.9946944" srcset="https://dam.mihomes.com/media/2053203/50398.jpeg?timestamp=2024-07-02T16%3A21%3A05.3240402 300w, https://dam.mihomes.com/media/2053203/50397.jpeg?timestamp=2024-07-02T16%3A21%3A14.8018385 600w, https://dam.mihomes.com/media/2053203/50423.jpeg?timestamp=2024-07-02T16%3A21%3A20.3455241 900w, https://dam.mihomes.com/media/2053203/50396.jpeg?timestamp=2024-07-02T16%3A21%3A04.6815049 1200w, https://dam.mihomes.com/media/2053203/50421.jpeg?timestamp=2024-07-02T16%3A20%3A47.9946944 1800w, https://dam.mihomes.com/media/2053203/50422.jpeg?timestamp=2024-07-02T16%3A20%3A52.1104126 2400w" title="DFW-Pizarro-ElevationH-Gen3-elev_DSK" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Exterior" height="1290" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/1378468/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/1378468/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/1378468/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/1378468/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/1378468/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/1378468/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/1378468/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="Z1 Exterior - Pizarro Representational Photo" width="1735" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Kitchen" height="1536" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/953770/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/953770/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/953770/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/953770/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/953770/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/953770/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/953770/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="[L402-z004]Kitchen2" width="2304" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Dining Room" height="1536" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/953766/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/953766/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/953766/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/953766/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/953766/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/953766/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/953766/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="[L402-z019]DiningRoom" width="2304" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Family Room" height="1536" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/953787/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/953787/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/953787/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/953787/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/953787/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/953787/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/953787/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="[L402-z024]FamilyRoom4" width="2304" class="image-banner-item-more" />
+ </span>
+ </div>
+
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <div class="modal fullscreen-modal gallery-modal gallery-modal--simple" data-modal="" id="simple-gallery-modal" data-track-views="">
+ <div class="gallery-modal__list-container">
+ <div class="gallery-modal__controls">
+ <button class="close-icon" data-modal-close>
+ <svg class="icon icon-close-gallery" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close-gallery"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__list-container-arrows">
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="prev" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="10" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="next" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="0" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__controls gallery-modal__controls__zoom">
+ <button class="close-icon" data-gallery="simple-gallery-modal" data-zoom>
+ <svg class="icon icon-zoom" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#zoom"></use>
+</svg>
+ </button>
+ </div>
+ <ul class="gallery-modal__list no-transition" style="transform: translateX(-200%);">
+
+ <li class="gallery-slide-container" data-slide-id="0" data-image="https://dam.mihomes.com/media/2053203/50398.jpeg?timestamp=2024-07-02T16%3A21%3A05.3240402 300w, https://dam.mihomes.com/media/2053203/50397.jpeg?timestamp=2024-07-02T16%3A21%3A14.8018385 600w, https://dam.mihomes.com/media/2053203/50423.jpeg?timestamp=2024-07-02T16%3A21%3A20.3455241 900w, https://dam.mihomes.com/media/2053203/50396.jpeg?timestamp=2024-07-02T16%3A21%3A04.6815049 1200w, https://dam.mihomes.com/media/2053203/50421.jpeg?timestamp=2024-07-02T16%3A20%3A47.9946944 1800w, https://dam.mihomes.com/media/2053203/50422.jpeg?timestamp=2024-07-02T16%3A20%3A52.1104126 2400w" data-caption="Pizarro Elevation H" data-count="<strong>1</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Pizarro Elevation H" height="1600" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/2053203/50421.jpeg?timestamp=2024-07-02T16%3A20%3A47.9946944" srcset="https://dam.mihomes.com/media/2053203/50398.jpeg?timestamp=2024-07-02T16%3A21%3A05.3240402 300w, https://dam.mihomes.com/media/2053203/50397.jpeg?timestamp=2024-07-02T16%3A21%3A14.8018385 600w, https://dam.mihomes.com/media/2053203/50423.jpeg?timestamp=2024-07-02T16%3A21%3A20.3455241 900w, https://dam.mihomes.com/media/2053203/50396.jpeg?timestamp=2024-07-02T16%3A21%3A04.6815049 1200w, https://dam.mihomes.com/media/2053203/50421.jpeg?timestamp=2024-07-02T16%3A20%3A47.9946944 1800w, https://dam.mihomes.com/media/2053203/50422.jpeg?timestamp=2024-07-02T16%3A20%3A52.1104126 2400w" title="DFW-Pizarro-ElevationH-Gen3-elev_DSK" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="1" data-image="https://dam.mihomes.com/media/1378468/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/1378468/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/1378468/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/1378468/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/1378468/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/1378468/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" data-caption="Exterior - Representational Photo" data-count="<strong>2</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Exterior" height="1290" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/1378468/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/1378468/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/1378468/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/1378468/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/1378468/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/1378468/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/1378468/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="Z1 Exterior - Pizarro Representational Photo" width="1735" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="2" data-image="https://dam.mihomes.com/media/953770/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/953770/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/953770/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/953770/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/953770/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/953770/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" data-caption="Kitchen - Representational Photo" data-count="<strong>3</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/953770/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/953770/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/953770/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/953770/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/953770/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/953770/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/953770/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="[L402-z004]Kitchen2" width="2304" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="3" data-image="https://dam.mihomes.com/media/953766/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/953766/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/953766/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/953766/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/953766/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/953766/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" data-caption="Dining Room - Representational Photo" data-count="<strong>4</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Dining Room" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/953766/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/953766/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/953766/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/953766/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/953766/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/953766/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/953766/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="[L402-z019]DiningRoom" width="2304" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="4" data-image="https://dam.mihomes.com/media/953787/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/953787/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/953787/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/953787/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/953787/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/953787/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" data-caption="Family Room - Representational Photo" data-count="<strong>5</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Family Room" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/953787/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/953787/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/953787/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/953787/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/953787/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/953787/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/953787/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="[L402-z024]FamilyRoom4" width="2304" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="5" data-image="https://dam.mihomes.com/media/953776/50398.jpeg 300w, https://dam.mihomes.com/media/953776/50397.jpeg 600w, https://dam.mihomes.com/media/953776/50423.jpeg 900w, https://dam.mihomes.com/media/953776/50396.jpeg 1200w, https://dam.mihomes.com/media/953776/50421.jpeg 1800w, https://dam.mihomes.com/media/953776/50422.jpeg 2400w" data-caption="Family Room - Representational Photo" data-count="<strong>6</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Family Room" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/953776/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/953776/50398.jpeg 300w, https://dam.mihomes.com/media/953776/50397.jpeg 600w, https://dam.mihomes.com/media/953776/50423.jpeg 900w, https://dam.mihomes.com/media/953776/50396.jpeg 1200w, https://dam.mihomes.com/media/953776/50421.jpeg 1800w, https://dam.mihomes.com/media/953776/50422.jpeg 2400w" title="[L402-z003]FamilyRoom3" width="2304" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="6" data-image="https://dam.mihomes.com/media/1040767/50398.jpeg 300w, https://dam.mihomes.com/media/1040767/50397.jpeg 600w, https://dam.mihomes.com/media/1040767/50423.jpeg 900w, https://dam.mihomes.com/media/1040767/50396.jpeg 1200w, https://dam.mihomes.com/media/1040767/50421.jpeg 1800w, https://dam.mihomes.com/media/1040767/50422.jpeg 2400w" data-caption="Owner's Bedroom - Representational Photo" data-count="<strong>7</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owner's Bedroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/1040767/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/1040767/50398.jpeg 300w, https://dam.mihomes.com/media/1040767/50397.jpeg 600w, https://dam.mihomes.com/media/1040767/50423.jpeg 900w, https://dam.mihomes.com/media/1040767/50396.jpeg 1200w, https://dam.mihomes.com/media/1040767/50421.jpeg 1800w, https://dam.mihomes.com/media/1040767/50422.jpeg 2400w" title="[L402-z026]Owner'sBedroom - REPLACE" width="2304" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="7" data-image="https://dam.mihomes.com/media/1040775/50398.jpeg 300w, https://dam.mihomes.com/media/1040775/50397.jpeg 600w, https://dam.mihomes.com/media/1040775/50423.jpeg 900w, https://dam.mihomes.com/media/1040775/50396.jpeg 1200w, https://dam.mihomes.com/media/1040775/50421.jpeg 1800w, https://dam.mihomes.com/media/1040775/50422.jpeg 2400w" data-caption="Owner's Bathroom - Representational Photo" data-count="<strong>8</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owner's Bathroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/1040775/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/1040775/50398.jpeg 300w, https://dam.mihomes.com/media/1040775/50397.jpeg 600w, https://dam.mihomes.com/media/1040775/50423.jpeg 900w, https://dam.mihomes.com/media/1040775/50396.jpeg 1200w, https://dam.mihomes.com/media/1040775/50421.jpeg 1800w, https://dam.mihomes.com/media/1040775/50422.jpeg 2400w" title="[L402-z029]Owner'sBathroom2 - ADD" width="2304" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="8" data-image="https://dam.mihomes.com/media/953778/50398.jpeg 300w, https://dam.mihomes.com/media/953778/50397.jpeg 600w, https://dam.mihomes.com/media/953778/50423.jpeg 900w, https://dam.mihomes.com/media/953778/50396.jpeg 1200w, https://dam.mihomes.com/media/953778/50421.jpeg 1800w, https://dam.mihomes.com/media/953778/50422.jpeg 2400w" data-caption="Flex Room - Representational Photo" data-count="<strong>9</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Flex Room" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/953778/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/953778/50398.jpeg 300w, https://dam.mihomes.com/media/953778/50397.jpeg 600w, https://dam.mihomes.com/media/953778/50423.jpeg 900w, https://dam.mihomes.com/media/953778/50396.jpeg 1200w, https://dam.mihomes.com/media/953778/50421.jpeg 1800w, https://dam.mihomes.com/media/953778/50422.jpeg 2400w" title="[L402-z016]FlexRoom2" width="2304" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="9" data-image="https://dam.mihomes.com/media/953763/50398.jpeg 300w, https://dam.mihomes.com/media/953763/50397.jpeg 600w, https://dam.mihomes.com/media/953763/50423.jpeg 900w, https://dam.mihomes.com/media/953763/50396.jpeg 1200w, https://dam.mihomes.com/media/953763/50421.jpeg 1800w, https://dam.mihomes.com/media/953763/50422.jpeg 2400w" data-caption="Bedroom - Representational Photo" data-count="<strong>10</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/953763/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/953763/50398.jpeg 300w, https://dam.mihomes.com/media/953763/50397.jpeg 600w, https://dam.mihomes.com/media/953763/50423.jpeg 900w, https://dam.mihomes.com/media/953763/50396.jpeg 1200w, https://dam.mihomes.com/media/953763/50421.jpeg 1800w, https://dam.mihomes.com/media/953763/50422.jpeg 2400w" title="[L402-z007]Bedroom2" width="2304" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="10" data-image="https://dam.mihomes.com/media/953774/50398.jpeg 300w, https://dam.mihomes.com/media/953774/50397.jpeg 600w, https://dam.mihomes.com/media/953774/50423.jpeg 900w, https://dam.mihomes.com/media/953774/50396.jpeg 1200w, https://dam.mihomes.com/media/953774/50421.jpeg 1800w, https://dam.mihomes.com/media/953774/50422.jpeg 2400w" data-caption="Bathroom - Representational Photo" data-count="<strong>11</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bathroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/953774/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/953774/50398.jpeg 300w, https://dam.mihomes.com/media/953774/50397.jpeg 600w, https://dam.mihomes.com/media/953774/50423.jpeg 900w, https://dam.mihomes.com/media/953774/50396.jpeg 1200w, https://dam.mihomes.com/media/953774/50421.jpeg 1800w, https://dam.mihomes.com/media/953774/50422.jpeg 2400w" title="[L402-z009]Bathroom2" width="2304" />
+ </div>
+ </div>
+ </div>
+ </li>
+ </ul>
+ <div class="gallery-slide__footer">
+ <span class="gallery-slide__title title-caption"></span>
+ <div class="gallery-slide__share-buttons">
+ <span class="count"></span>
+ </div>
+ </div>
+ </div>
+ </div>
+</div><script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Product",
+ "additionalType": "https://schema.org/SingleFamilyResidence",
+ "name": "7401 Sumac Drive",
+ "sku": "U30HD6DkqkW5fOSWDsNibA",
+ "description": "Welcome to 7401 Sumac Drive, Argyle, Texas — a new construction single-story home built by M/I Homes. This Quick Move-In home offers 2,106 square feet of thoughtfully designed living space, featuring 4 bedrooms and 3 bathrooms on 1 above-ground level.",
+ "image": [
+ "https://dam.mihomes.com/media/2053203/50421.jpeg",
+ "https://dam.mihomes.com/media/1378468/50421.jpeg",
+ "https://dam.mihomes.com/media/953770/50421.jpeg",
+ "https://dam.mihomes.com/media/953766/50421.jpeg",
+ "https://dam.mihomes.com/media/953787/50421.jpeg",
+ "https://dam.mihomes.com/media/953776/50421.jpeg",
+ "https://dam.mihomes.com/media/1040767/50421.jpeg",
+ "https://dam.mihomes.com/media/1040775/50421.jpeg",
+ "https://dam.mihomes.com/media/953778/50421.jpeg",
+ "https://dam.mihomes.com/media/953763/50421.jpeg",
+ "https://dam.mihomes.com/media/953774/50421.jpeg"
+ ],
+ "url": "https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/argyle/sagebrook/pizarro-plan/7401-sumac-drive",
+ "brand": {
+ "@type": "Organization",
+ "parentOrganization": {
+ "@type": "Organization",
+ "name": "M/I Homes"
+ },
+ "name": "Sagebrook"
+ },
+ "address": {
+ "@type": "PostalAddress",
+ "streetAddress": "7401 Sumac Drive",
+ "addressLocality": "Argyle",
+ "addressRegion": "TX",
+ "postalCode": "76226",
+ "addressCountry": "US"
+ },
+ "geo": {
+ "@type": "GeoCoordinates",
+ "latitude": 33.1507288972861,
+ "longitude": -97.1689133246194
+ },
+ "telephone": "+19726194200",
+ "offers": {
+ "@type": "Offer",
+ "url": "/new-homes/texas/dallas-fort-worth-metroplex/argyle/sagebrook/pizarro-plan/7401-sumac-drive",
+ "price": "440179.00",
+ "priceCurrency": "USD",
+ "priceValidUntil": "08-12-2026",
+ "itemCondition": "https://schema.org/NewCondition",
+ "availability": "https://schema.org/InStock"
+ },
+ "model": "https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/argyle/sagebrook/pizarro-plan",
+ "numberOfBedrooms": {
+ "@type": "Integer",
+ "value": 4
+ },
+ "numberOfFullBathrooms": {
+ "@type": "Integer",
+ "value": 3
+ },
+ "numberOfPartialBathrooms": {
+ "@type": "Integer",
+ "value": 0
+ },
+ "petsAllowed": true,
+ "yearBuilt": "2026",
+ "floorSize": {
+ "@type": "QuantitativeValue",
+ "value": 2106,
+ "unitCode": "FTK"
+ }
+}</script>
+<div class="modals" data-modal-container aria-hidden="true">
+ <div class="modal box" data-modal id="signup-modal">
+ <button class="modal-close" data-modal-close>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+
+ <h2 class="h1 alt">Sign up for an M/I Homes account</h2>
+ <p>Save your favorite home plans and communities, compare home plans and share your dream home with sales associates and real estate agents.</p>
+ <p>
+ Already a member?
+ <a class="button-plain" href="/account/login">Log In to your account »</a>
+ </p>
+ <a class="button button-wide" href="/account/register">
+ <span class="button-text">
+ Sign up with email
+ </span>
+ </a>
+ </div>
+</div>
+
+<div class="product-header" data-yes="true">
+
+ <div class="product-header-row product-header__top">
+
+ <div class="product-header-centered ">
+ <div>
+ <a href="/new-homes/texas/dallas-fort-worth-metroplex/argyle/sagebrook" class="button-plain">
+ Sagebrook
+ </a>
+
+ <h1 class="header-seo-h2">
+ 7401 Sumac Drive, Argyle, TX 76226
+ <button class="aux-nav-link button-favorite-product gami-favorite-save" data-favorite-type="Home" data-favorite-id="0f077d53-e4a0-45aa-b97c-e4960ec3626c" data-favorite-fav-id="0f077d53-e4a0-45aa-b97c-e4960ec3626c" data-add-favorite>
+ <svg class="icon icon-favorite" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#favorite"></use>
+</svg>
+ <span class="aux-nav-link-action-text">
+ Favorite
+ </span>
+ </button>
+ </h1>
+ </div>
+
+ <div class="product-header__actions">
+ <a class="button button-mobile-link button-virtual-tour event-click" href="https://www.zillow.com/view-imx/a8347414-c500-4f46-a411-3edf6c8aa72a?wl=true&setAttribution=mls&initialViewType=pano" target="_blank" data-event-category=VirtualTour
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <span class="button-text">Virtual Tour</span>
+ </a>
+ </div>
+ </div>
+ </div>
+
+ <div class="product-header-row">
+ <div class="product-header-centered tooptip-container">
+ <div>
+ <dl>
+ <dt>Ready date:</dt>
+ <dd>
+ <strong class="current-size">
+ November 18, 2026
+ </strong>
+ </dd>
+ </dl>
+ </div>
+ <div class="product-header-price">
+
+ Price:
+ <span content="440179">$440,179</span>
+
+ (
+ <span data-open-modal="mortgage-payment-calculator-modal" data-tooltip="Click estimate to see how we calculate this monthly payment" data-annualinsurance="2000" data-taxrate="1.93" data-interestrate="2.875" data-downpayment="4" data-price="440179" data-mortgage-monthly-payment tabindex="0" class="product-header-price-monthly"></span>
+ )
+
+
+ <span class="product-header-calculator">
+ <a class="button-plain button-plain-icon small button-icon-right gami-mortcalc-view" data-open-modal="mortgage-payment-calculator-modal">
+ <svg class="icon icon-calculator" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#calculator"></use>
+</svg>
+ Estimate Your Monthly Payment
+ </a>
+ </span>
+ </div>
+ </div>
+ </div>
+</div> <a rel="noopener" href="/new-homes/texas/dallas-fort-worth-metroplex/argyle/sagebrook/plat map?lot=267781001405" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=7304 Poplar Drive, Argyle, TX 76226&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=dpVX_e8anAyzlUqvGmIeWx4B-Ig=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+<div class="product-header-centered product-header-centered--contact-card-only">
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Sagebrook Sales Office</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://maps.google.com/maps?q=7304+Poplar+Drive%3cbr%3eArgyle%2c+TX+76226">
+ 7304 Poplar Drive<br>Argyle, TX 76226
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+</div><div class="product-header">
+ <div class="product-header product-header-navigation">
+ <nav class="product-header-subnav" data-subnav="">
+ <div class="product-header-subnav-wrapper">
+ <div class="product-header-subnav-mobile-bottom">
+ <a class="button button-contact-us" href="/support/sales">
+ <span class="button-text">
+ Contact Us
+ </span>
+ </a>
+ </div>
+
+
+ <a class="product-header-subnav-toggle subnav-link" data-subnav-toggle="">
+ <span class="text" data-subnav-text="">Overview</span>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </a>
+
+ <ul class="product-header-subnav-links" data-subnav-links=""></ul>
+ </div>
+ </nav>
+
+ <div class="product-header-subnav-spacer"></div>
+
+ <a href="#overview" class="product-header__back-to-top is-hidden" data-back-to-top>
+ <div class="arrow arrow--up"></div>
+ </a>
+ </div>
+</div><section class="content-inner-with-sidebar content-inner-with-sidebar-right">
+
+
+ <div class="content-inner-content">
+
+
+
+
+
+<section class="plan-specification">
+ <h2 class="plan-specification__header">
+ About 7401 Sumac Drive
+ </h2>
+ <a class="plan-specification__get-directions button-plain button-plain-alt negative-top gami-directions-exit" target="_blank" href="https://www.google.com/maps/search/?api=1&query=33.1507288972861,-97.1689133246194">Get Directions</a>
+ <ul class="plan-specification__list">
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sq-ft" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sq-ft"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">square feet</span>
+ <strong class="plan-specification-item__value">
+ 2,106
+ </strong>
+ </div>
+ </li>
+ <li class="stories-specification">
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-homes" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#homes"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">stories</span>
+ <strong class="plan-specification-item__value">
+ 1
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-bed" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#bed"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">bedrooms</span>
+ <strong class="plan-specification-item__value">
+ 4
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-shower" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#shower"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">full bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 3
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sink" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sink"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">half bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 0
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-car" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#car"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">garages</span>
+ <strong class="plan-specification-item__value">
+ 2
+ <span data-tooltip="The most common approach to a home's garage, the front load garage incorporates the garage entry into a home's front elevation.">(Front Load)</span>
+
+ </strong>
+ </div>
+ </li>
+ </ul>
+</section>
+
+<div class="overview-table">
+ <div class="overview-table-table">
+ <dl>
+ <dt>City</dt>
+ <dd>Argyle, TX</dd>
+
+ <dt>Owner's Suite</dt>
+ <dd>First Floor</dd>
+
+ <dt>County</dt>
+ <dd>Denton</dd>
+
+ <dt>Home Type</dt>
+ <dd>Single Family Home</dd>
+
+ <dt>School District</dt>
+ <dd>Denton ISD</dd>
+
+ <dt>Foundation Type</dt>
+ <dd>Slab</dd>
+
+ <dt>Home Plan</dt>
+ <dd>Pizarro</dd>
+
+
+ <dt>Homesite</dt>
+ <dd>1405</dd>
+
+ </dl>
+ </div>
+</div>
+<article class="faq__question-item faq__question-item--mobile-only">
+ <button class="faq__question" data-expander="" aria-controls="community-series-teaser" aria-expanded="false">
+ <span class="faq__icon-wrapper">
+ <span class="faq__icon gami-directions-view">
+ <svg class="icon icon-arrow" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#arrow"></use>
+</svg>
+ </span>
+ </span>
+ Part of the 40' Smart Series
+ <span class="show-hide-text hidden-text">Hide</span>
+ </button>
+ <div class="faq__answer preview-box preview-box--series-tout" id="community-series-teaser" role="region" tabindex="-1">
+ <a class="preview-box__image preview-box__preview one-fourth" href="/new-homes/texas/dallas-fort-worth-metroplex/argyle/sagebrook/series/40-smart-series">
+ <img data-dam-generated alt="Preview image" height="3360" loading="lazy" sizes="(min-width: 48rem) 193px, 100vw" src="https://dam.mihomes.com/media/358887/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333" srcset="https://dam.mihomes.com/media/358887/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/358887/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/358887/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/358887/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/358887/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/358887/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="[L339-z3]FamilyRoom3" width="5040" class="cover-image" />
+ </a>
+ <div class="preview-box__content ">
+ <div class="preview-box__text__series-teaser">
+ <h3>Part of the 40' Smart Series</h3>
+ <p>
+ Created with an emphasis on design, process, and value, our new homes in Argyle, TX offer designer-curated packages and 8 distinct floorplans to choose from.
+ </p>
+ </div>
+ <p>
+ <a class="button" href="/new-homes/texas/dallas-fort-worth-metroplex/argyle/sagebrook/series/40-smart-series">Learn More</a>
+ </p>
+ </div>
+ </div>
+</article> <h2>
+ New 4-Bedroom Home for Sale in Argyle, Texas
+ </h2>
+ <div class="content-inner-content__capped-mobile-content">
+ <p>Welcome to 7401 Sumac Drive, Argyle, Texas — a new construction single-story home built by M/I Homes. This Quick Move-In home offers 2,106 square feet of thoughtfully designed living space, featuring 4 bedrooms and 3 bathrooms on 1 above-ground level.</p>
+<p>Step inside to discover an open-concept living space that creates a seamless flow between gathering areas, ideal for both everyday living and entertaining. The quality of design is evident throughout, with carefully selected finishes and a well-considered floorplan that maximizes both comfort and functionality.</p>
+<p><strong>Key Features:</strong></p>
+<ul>
+ <li>4 bedrooms and 3 bathrooms</li>
+ <li>2,106 square feet of single-story living</li>
+ <li>New construction by M/I Homes</li>
+ <li>Open-concept living space</li>
+ <li>Spacious owner's bedroom with en-suite bathroom</li>
+ <li>Covered patio for outdoor enjoyment</li>
+</ul>
+<p>The owner's bedroom features a private en-suite bathroom, providing a comfortable retreat within the home. Additional bedrooms offer generous proportions, making this floorplan well-suited for families or those who appreciate extra space.</p>
+<p>Outside, the covered patio extends the living area and provides a shaded space for relaxing or gathering with friends and family. The surrounding neighborhood offers a welcoming setting with convenient proximity to parks, perfect for outdoor recreation and an active lifestyle.</p>
+<p>This home reflects quality craftsmanship and a design approach focused on practical, comfortable living in every detail.</p>
+
+ <!-- and done -->
+ <h3>
+ About the Community
+ </h3>
+ <p>
+ Sagebrook is a new home community in Argyle, TX, offering a comfortable suburban setting with convenient access to Denton and nearby employment centers. Located near Hwy 377 and I-35W, the community makes it easy to reach shopping, dining, and everyday essentials while enjoying a quieter pace of life.
+Sagebrook features single-family homes with a mix of one- and two-story floorplans designed for flexibility and modern living. Open-concept layouts, natural light-filled gathering spaces, and thoughtfully designed kitchens support a range of lifestyles, whether you’re working from home or hosting friends and family.
+Planned amenities include an amenity center with pools, walking trails, and a playscape that encourage time outdoors and connection with neighbors. The neighborhood is served by Denton ISD, offering access to well-regarded schools close to home.
+With its blend of approachable home designs, everyday convenience, and access to both Argyle and Denton, Sagebrook provides a balanced lifestyle that feels connected, relaxed, and easy to enjoy.
+ <br />
+ <a class="button-plain button-plain-alt" href="/new-homes/texas/dallas-fort-worth-metroplex/argyle/sagebrook">Learn more about this community »</a>
+ </p>
+ </div>
+ <button class="faq__question color-aqua" aria-expanded="false" data-read-more="">
+ <span class="faq__icon-wrapper">
+ <span class="faq__icon">
+ <svg class="icon icon-arrow" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#arrow"></use>
+</svg>
+ </span>
+ </span>
+ <span data-read-more-collapsed="">Read More</span>
+ <span data-read-more-expanded="">Show Less</span>
+ <span class="show-hide-text hidden-text">Show</span>
+ </button>
+ <div class="matterport-wrapper">
+ <iframe loading="lazy" class="box-full" width="803" height="480" src="https://my.matterport.com/show/?m=cd4XTBa4fwL&utm_source=4" frameborder="0" allowfullscreen allow="vr" style="align-self: center" data-subnav-page-link="3D Tour" id="3dTour"></iframe>
+ </div>
+
+
+ <h4>Upcoming Events</h4>
+ <article class="preview-box">
+ <div class="preview-box-link">
+ <div class="preview-box__image preview-box__preview one-fifth">
+ <a href="/new-homes/texas/dallas-fort-worth-metroplex/events/open-house-get-home-before-the-bell-rings">
+ <img data-dam-generated alt="RTG | A+ Opportunities" height="5000" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/5018835/50421.jpeg?timestamp=2026-07-17T17%3A41%3A43.1681871" srcset="https://dam.mihomes.com/media/5018835/50398.jpeg?timestamp=2026-07-17T17%3A41%3A53.5631550 300w, https://dam.mihomes.com/media/5018835/50397.jpeg?timestamp=2026-07-17T17%3A41%3A46.6762870 600w, https://dam.mihomes.com/media/5018835/50423.jpeg?timestamp=2026-07-17T17%3A41%3A59.8473079 900w" title="A+Opportunities-Card" width="7500" class="cover-image" maxwidth="900" />
+ </a>
+ </div>
+ <div class="preview-box__content -multiple-times">
+ <h3 class="h3 preview-box__header">
+ Open House: Get Home Before the Bell Rings 🏡🎒
+ </h3>
+ <time class="preview-box__time" datetime="2026-08-15T10:00:00">Aug 15, 2026, 10:00 AM - 6:00 PM</time>
+ <p class="preview-box__text"><p>School is almost back in session and the bell is ringing on our Quick Move-In homes! Join us this weekend and find a home that is ready for study sessions, family game night, and A+ celebrations. 🏡🎒</p>
+<p><strong><em>Contact our team to RSVP today! </em></strong></p></p>
+ <p>
+ <a class="button-plain button-plain-alt" href="/new-homes/texas/dallas-fort-worth-metroplex/events/open-house-get-home-before-the-bell-rings">RSVP for this event »</a>
+ </p>
+ </div>
+ </div>
+ </article>
+ <a class="button-plain button-plain-alt negative-top" href="/new-homes/texas/dallas-fort-worth-metroplex/events">RSVP for this event »</a>
+
+ </div>
+
+ <div class="content-sidebar-right">
+ <a rel="noopener" href="/new-homes/texas/dallas-fort-worth-metroplex/argyle/sagebrook/plat map?lot=267781001405" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=7304 Poplar Drive, Argyle, TX 76226&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=dpVX_e8anAyzlUqvGmIeWx4B-Ig=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Sagebrook Sales Office</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://maps.google.com/maps?q=7304+Poplar+Drive%3cbr%3eArgyle%2c+TX+76226">
+ 7304 Poplar Drive<br>Argyle, TX 76226
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+
+
+ <figure class="lead-form lead-form-sidebar lead-form-sidebar--compact lead-form-sidebar-signup">
+ <div class="lead-form-container">
+ <div id="lead-sidebar-header" class="lead-form-sidebar-header lead-form-sidebar-header-image">
+ <div id="isa-information" data-sidebar-section="1">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="Headshot" height="600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4527384/50397.jpeg?timestamp=2026-03-17T14%3A40%3A26.7276996" srcset="https://dam.mihomes.com/media/4527384/50398.jpeg?timestamp=2026-03-17T14%3A40%3A26.7375435 300w, https://dam.mihomes.com/media/4527384/50397.jpeg?timestamp=2026-03-17T14%3A40%3A26.7276996 600w, https://dam.mihomes.com/media/4527384/50423.jpeg?timestamp=2026-03-17T14%3A40%3A28.7048958 900w, https://dam.mihomes.com/media/4527384/50396.jpeg?timestamp=2026-03-17T14%3A40%3A26.6747850 1200w, https://dam.mihomes.com/media/4527384/50421.jpeg?timestamp=2026-03-17T14%3A40%3A27.5566686 1800w, https://dam.mihomes.com/media/4527384/50422.jpeg?timestamp=2026-03-17T14%3A40%3A28.0977903 2400w" title="DFW-Headshot-ChandlerWall" width="600" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="Headshot" height="600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4527383/50397.jpeg?timestamp=2026-03-17T14%3A40%3A26.7308400" srcset="https://dam.mihomes.com/media/4527383/50398.jpeg?timestamp=2026-03-17T14%3A40%3A26.7901979 300w, https://dam.mihomes.com/media/4527383/50397.jpeg?timestamp=2026-03-17T14%3A40%3A26.7308400 600w, https://dam.mihomes.com/media/4527383/50423.jpeg?timestamp=2026-03-17T14%3A40%3A29.3188334 900w, https://dam.mihomes.com/media/4527383/50396.jpeg?timestamp=2026-03-17T14%3A40%3A26.7882196 1200w, https://dam.mihomes.com/media/4527383/50421.jpeg?timestamp=2026-03-17T14%3A40%3A28.1752043 1800w, https://dam.mihomes.com/media/4527383/50422.jpeg?timestamp=2026-03-17T14%3A40%3A28.7793584 2400w" title="DFW-Headshot-BeckyKim" width="600" class="cover-image" />
+ </div>
+ </div>
+ <h3 class="">Have questions for us?</h3>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=9726194200'>(972) 619-4200</a>
+ </p>
+ </div>
+ <div id="form-agent-header" class="lead-form-sidebar-section right" style="display: none;">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+
+ </div>
+ <div class="lead-form-sidebar-form" data-lead-form-sidebar="">
+ <div class="lead-form-sidebar-errors"></div>
+<form action="/api/LeadGenFormSidebar/LeadGenFormSidebar" data-gami-event="gami-form-question" data-parsley-validate="" data-sidebar-hidden-required="" data-sidebar-nav-check="visit_sidebar" method="post" name="basic_sidebar" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="8643aa76-9cb0-4933-8d13-a9f27fc9e5bc" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Inventory" /><input id="PostType" name="PostType" type="hidden" value="sidebar" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:35 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="ItemId" name="ItemId" type="hidden" value="0f077d53-e4a0-45aa-b97c-e4960ec3626c" /><input id="HomeType" name="HomeType" type="hidden" value="Single Family Home" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 443px;">
+ <div class="align-left center lead-form-sidebar-section" data-cta="Request Information" data-sidebar-section="0">
+ <div>
+
+ <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="">
+ </div>
+
+ <div class="form-field no-label-errors" style="margin-top: 1px">
+ <label for="fullname_sidebar"></label>
+ <input type="text"
+ name="FormFullName"
+ id="fullname_sidebar"
+ placeholder="Full Name"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required." data-parsley-trigger="blur"
+ maxlength="60"
+ data-parsley-filter-emoji=""
+ >
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormEmailAddress"
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="phone_sidebar">Phone Number</label>
+ <input class="gami-tel" type="tel"
+ autocomplete="tel-national"
+ name="FormPhoneNumber"
+ id="phone_sidebar"
+ placeholder="Phone Number" +
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ value=""
+
+ data-parsley-phone-number="" data-parsley-trigger="blur"
+ maxlength="25">
+ </div>
+
+ <div class="form-field no-label-errors">
+ <label for="comments_sidebar">Questions or Comments</label>
+ <textarea rows="5"
+ name="FormComments"
+ id="comments_sidebar"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000">Please send me information about 7401 Sumac Drive</textarea>
+ </div>
+ </div>
+ <div>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox hide" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input data-parsley-multiple="visit_sidebar" name="visit_sidebar" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to plan a visit</span>
+ </label>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormEmailOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSAssociateCommunicationsOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" data-sidebar-section="1" tabindex="-1">
+ <div>
+ <h4>Plan a visit</h4>
+ <p>Select your preferred day and time and we’ll help set up the perfect visit.</p>
+ </div>
+ <div>
+ <div class="select no-label-errors">
+ <label for="tripday_sidebar"> </label>
+ <div class="select-wrap">
+<select data-nested-select="#select-triptime-block-sidebar" data-parsley-group="visit_sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+
+ <div class="select no-label-errors">
+ <label for="triptime_sidebar"> </label>
+ <div class="select-wrap">
+<select data-parsley-group="visit_sidebar" id="triptime_sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" dta-cta="Continue" data-sidebar-section="2" data-agent-section tabindex="-1">
+
+ <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0">
+ <div class="align-left center lead-form-sidebar-section" data-sidebar-section="0">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button form-submit">
+ <span class="button-text">Request Information</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-left lead-form-sidebar-section right" data-sidebar-section="1">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit" disabled tabindex="-1">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="2">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button" disabled tabindex="-1">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit" disabled tabindex="-1">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+ </div>
+ </div>
+</form> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 25px;">
+ <div class="align-center center lead-form-sidebar-section" data-sidebar-section="0">
+ <button class="button-plain small" data-open-modal="privacy-policy-modal" href="javascript:void()">Privacy Policy</button>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="1">
+ <button class="button-plain small" data-sidebar-nav="0" tabindex="-1">« Go Back</button>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <!-- THANK YOU MESSAGE -->
+ <div class="lead-form-container-success">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-success lead-form-sidebar-header-image">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" data-parsley-validate="" method="POST" name="thanksyou_sidebar" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+ <div>
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+ <div class="form-field form-field-password">
+ <label for="password"> </label>
+ <input data-parsley-required-message="Password is required." data-parsley-valid-password="" id="password" minlength="8" name="password" placeholder="Password" required="" type="password" data-parsley-filter-emoji="" data-parsley-trigger="blur">
+ <button class="password-input-change" data-input-change="" type="button">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)" tabindex="0">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">
+ Create Account
+ </span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ <h3 class="h3 preview-box__header">
+ Incentives
+ </h3>
+ <a class="incentive incentive__sidebar--simple" href="/new-homes/texas/dallas-fort-worth-metroplex/incentives/lower-payments">
+ <div class="incentive-background">
+ <img data-dam-generated alt="Lower Payments" height="1200" loading="eager" sizes="(min-width: 64rem) 328px, 100vw" src="https://dam.mihomes.com/media/3398695/50421.jpeg" srcset="https://dam.mihomes.com/media/3398695/50398.jpeg?timestamp=2025-07-15T17%3A06%3A54.6851490 300w, https://dam.mihomes.com/media/3398695/50397.jpeg?timestamp=2025-07-15T17%3A06%3A53.2195117 600w, https://dam.mihomes.com/media/3398695/50423.jpeg?timestamp=2025-07-15T17%3A07%3A01.3602581 900w, https://dam.mihomes.com/media/3398695/50396.jpeg?timestamp=2025-07-15T17%3A06%3A51.6143482 1200w, https://dam.mihomes.com/media/3398695/50421.jpeg?timestamp=2025-07-15T17%3A06%3A59.7040981 1800w, https://dam.mihomes.com/media/3398695/50422.jpeg?timestamp=2025-07-15T17%3A07%3A00.6417884 2400w" title="LowerPayments-Header-1800x430" width="1800" class="cover-image cover-image--abs" />
+ <div class="incentive__badge">
+<img data-dam-generated alt="Lower Payments" height="250" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3398693/50420.png?timestamp=2025-09-05T14%3A20%3A10.9917892" srcset="https://dam.mihomes.com/media/3398693/50399.png?timestamp=2025-07-15T17%3A09%3A05.6165736 300w, https://dam.mihomes.com/media/3398693/50420.png?timestamp=2025-09-05T14%3A20%3A10.9917892 600w" title="Low Payments Icon 250x250" width="250" class="incentive__badge-background" maxwidth="2400" /> </div>
+ </div>
+ <div class="incentive-inner">
+ <span class="incentive-title--wrapper">
+ <p class="incentive-title">Move In Now, Receive Lower Payments</p>
+ </span>
+ <p class="incentive-sub-headline">A high-quality home doesn't have to mean a higher payment. For a limited time, secure a 2/1 buydown with first-year rates as low as 2.875%* / 5.632% APR* on a 30-year fixed FHA loan through M/I Financial, LLC. Increase your home-buying power and lower your rate today.</p>
+ <p class="incentive-button--wrapper">
+ <span class="button button-small" href="/new-homes/texas/dallas-fort-worth-metroplex/incentives/lower-payments">
+ <span class="button-text uppercase">View Details</span>
+ </span>
+ </p>
+ </div>
+ </a>
+
+</div>
+</section>
+
+ <div id="design" class="box box-full box-no-padding-bottom" data-subnav-page-link="Design Options">
+ <div class="content-inner-centered">
+ <h2>Add the perfect finishing touch</h2>
+ <p class="subtitle content-inner-centered-narrow negative-top">
+ Put your personal touch on these Quick Move-In Homes with some selections from our Design Studio.
+ </p>
+ <div class="button-tooltip-wrapper">
+ <a class="button button-tooltip event-click" href="https://edc.envisionoptions.com/browser.aspx?NHTNumber=MIHOMES&Loc1=100&Lev1=CORP&Loc2=267&Lev2=DIV&HomeNumber=141A0E&Page=Confirmselection&utm_source=mihomes.com&utm_campaign=&utm_content=sagebrook-Pizarro-7401-Sumac-Drive&utm_term=" target="_blank" data-event-category=OptionsGallery
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ See This Home's Options
+ </a>
+
+
+ </div>
+ <a class="button" href="/design/design-studio">
+ <span class="button-text">
+ Visit a Design Studio
+ </span>
+ </a>
+ </div>
+ </div>
+ <div class="box box-full box-no-padding-top">
+ <div class="contained-width">
+ <hr class="hr-even">
+
+ <h4>Incentives</h4>
+ <article class="preview-box ">
+ <a class="preview-box-link" href="/new-homes/texas/dallas-fort-worth-metroplex/incentives/lower-payments">
+ <div class="preview-box__image preview-box__preview one-third">
+ <img data-dam-generated alt="Lower Payments" height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3398695/50421.jpeg" srcset="https://dam.mihomes.com/media/3398695/50398.jpeg?timestamp=2025-07-15T17%3A06%3A54.6851490 300w, https://dam.mihomes.com/media/3398695/50397.jpeg?timestamp=2025-07-15T17%3A06%3A53.2195117 600w, https://dam.mihomes.com/media/3398695/50423.jpeg?timestamp=2025-07-15T17%3A07%3A01.3602581 900w" title="LowerPayments-Header-1800x430" width="1800" class="cover-image" maxwidth="900" />
+ </div>
+ <div class="preview-box__content">
+ <h3 class="h3 preview-box__header">
+ Move In Now, Receive Lower Payments
+
+
+ </h3>
+ <p class="preview-box__text">A high-quality home doesn't have to mean a higher payment. For a limited time, secure a 2/1 buydown with first-year rates as low as 2.875%* / 5.632% APR* on a 30-year fixed FHA loan through M/I Financial, LLC. Increase your home-buying power and lower your rate today.</p>
+ <p>
+ <span class="button-plain button-plain-alt" href="/new-homes/texas/dallas-fort-worth-metroplex/incentives/lower-payments">View Details »</span>
+ </p>
+ </div>
+ </a>
+ </article>
+ </div>
+ </div>
+
+ <div id="floor" class="box box-full box-last event-inview" data-subnav-page-link="FloorPlan" data-event-category=Floorplan
+ data-event-action=scroll
+ data-event-label=view
+>
+ <div class="content-inner-centered content-inner-centered--mobile">
+<img data-dam-generated alt="Pizarro First Floor" height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4733782/50421.jpeg?timestamp=2026-05-11T22%3A04%3A47.7735938" srcset="https://dam.mihomes.com/media/4733782/50398.jpeg?timestamp=2026-05-11T22%3A04%3A46.2296579 300w, https://dam.mihomes.com/media/4733782/50397.jpeg?timestamp=2026-05-11T22%3A04%3A46.1968613 600w, https://dam.mihomes.com/media/4733782/50423.jpeg?timestamp=2026-05-11T22%3A04%3A48.7135091 900w, https://dam.mihomes.com/media/4733782/50396.jpeg?timestamp=2026-05-11T22%3A04%3A45.6338607 1200w, https://dam.mihomes.com/media/4733782/50421.jpeg?timestamp=2026-05-11T22%3A04%3A47.7735938 1800w, https://dam.mihomes.com/media/4733782/50422.jpeg?timestamp=2026-05-11T22%3A04%3A47.7383858 2400w" title="DFW-pizarro-F-40smartseries-firstfloor" width="1800" class="cover-image cover-image--abs" /> <h2>Floorplan Options for Your New Home</h2>
+ <p class="content-inner-centered-narrow negative-top subtitle">The Pizarro accommodates a variety of household living arrangements with its highly desired flexibility and modern design. Explore the many possibilities in the popular Pizarro plan.</p>
+ <a target="_blank" class="button floor-plan-options__button event-click" href="https://rifp.ml3ds-icon.com/#/floorplan/277234" data-event-category=Floorplan
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <svg class="icon icon-fullscreen" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#fullscreen"></use>
+</svg>
+ <span class="button-text">
+ Show Floorplan
+ </span>
+ </a>
+ </div>
+ <section class="floor-plan-options">
+ <iframe loading="lazy" id="floor-plan" data-fullsize class="floor-plan-options__iframe" data-src="https://rifp.ml3ds-icon.com/#/floorplan/277234" scrolling="no" style="overflow: hidden">
+ <p>Your browser does not support iframes.</p>
+ </iframe>
+ </section>
+ </div>
+
+ <div class="box box-full box-no-padding-top-bottom " id="">
+ <div class="content-inner-centered">
+ <div class="leadgenTitleBlock">
+ <h2 class="h2">Ready to plan a visit? We can help</h2>
+ <p class="subtitle marginless">Send us your preferred time to stop by and a sales representative will take care of the rest</p>
+ </div>
+ <section class="lead-form">
+ <div id="lead-form-block-user-info" class="lead-form-container lead-form-block" data-lead-form-sidebar="">
+ <aside class="lead-form-block__details" style="">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="Headshot" height="600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4527384/50397.jpeg?timestamp=2026-03-17T14%3A40%3A26.7276996" srcset="https://dam.mihomes.com/media/4527384/50398.jpeg?timestamp=2026-03-17T14%3A40%3A26.7375435 300w, https://dam.mihomes.com/media/4527384/50397.jpeg?timestamp=2026-03-17T14%3A40%3A26.7276996 600w, https://dam.mihomes.com/media/4527384/50423.jpeg?timestamp=2026-03-17T14%3A40%3A28.7048958 900w, https://dam.mihomes.com/media/4527384/50396.jpeg?timestamp=2026-03-17T14%3A40%3A26.6747850 1200w, https://dam.mihomes.com/media/4527384/50421.jpeg?timestamp=2026-03-17T14%3A40%3A27.5566686 1800w, https://dam.mihomes.com/media/4527384/50422.jpeg?timestamp=2026-03-17T14%3A40%3A28.0977903 2400w" title="DFW-Headshot-ChandlerWall" width="600" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="Headshot" height="600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4527383/50397.jpeg?timestamp=2026-03-17T14%3A40%3A26.7308400" srcset="https://dam.mihomes.com/media/4527383/50398.jpeg?timestamp=2026-03-17T14%3A40%3A26.7901979 300w, https://dam.mihomes.com/media/4527383/50397.jpeg?timestamp=2026-03-17T14%3A40%3A26.7308400 600w, https://dam.mihomes.com/media/4527383/50423.jpeg?timestamp=2026-03-17T14%3A40%3A29.3188334 900w, https://dam.mihomes.com/media/4527383/50396.jpeg?timestamp=2026-03-17T14%3A40%3A26.7882196 1200w, https://dam.mihomes.com/media/4527383/50421.jpeg?timestamp=2026-03-17T14%3A40%3A28.1752043 1800w, https://dam.mihomes.com/media/4527383/50422.jpeg?timestamp=2026-03-17T14%3A40%3A28.7793584 2400w" title="DFW-Headshot-BeckyKim" width="600" class="cover-image" />
+ </div>
+ </div>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=9726194200'>(972) 619-4200</a>
+ </p>
+ </aside>
+<form action="/api/LeadGenFormBlock/LeadGenFormBlock" class="lead-form-block__form" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="8643aa76-9cb0-4933-8d13-a9f27fc9e5bc" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Model" /><input id="PostType" name="PostType" type="hidden" value="block" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:35 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="FormAgentEmailAddress" name="FormAgentEmailAddress" type="hidden" value="" /><input id="ItemId" name="ItemId" type="hidden" value="0f077d53-e4a0-45aa-b97c-e4960ec3626c" /><input id="HomeType" name="HomeType" type="hidden" value="Single Family Home" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="" hidden>
+ </div>
+ <div class="form-field">
+ <label for="fullname">Full Name </label>
+ <input type="text"
+ name="FormFullName"
+ placeholder="John Doe"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required."
+ maxlength="60"
+
+ data-parsley-filter-emoji=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="emailaddress">Email Address </label>
+ <input type="email"
+ name="FormEmailAddress" ,
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field">
+ <label for="phone">Phone Number </label>
+ <input class="gami-tel" type="tel"
+ name="FormPhoneNumber"
+ id="phone"
+ placeholder="5555555555"
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ maxlength="25"
+ value=""
+
+ data-parsley-phone-number=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="input">Questions or Comments </label>
+ <textarea rows="5"
+ name="FormComments"
+ id="input"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000"></textarea>
+ </div>
+ <div class="lead-form-block__contacts">
+ <div class="form-field select" {="">
+ <label for="tripday_block">Preferred Day <em> (Optional)</em></label>
+ <div class="select-wrap">
+ <div class="select-wrap">
+<select date-nested-select="#select-triptime-block-sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+
+ <div class="form-field select" {="">
+ <label for="triptime_block">Preferred Time <em> (Optional)</em></label>
+ <div class="select-wrap">
+
+<select id="select-triptime-block-sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-block__checkboxes-container">
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormEmailOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSAssociateCommunicationsOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ <div class="lead-form-block__submit">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+
+ <span class="align-center">
+ <a class="button-plain small" data-open-modal="privacy-policy-modal">Privacy Policy</a>
+ </span>
+ </div>
+</form> </div>
+ <div id="lead-form-block-agent-form" class="lead-form-container lead-form-block" data-lead-form-sidebar="" data-agent-section style="display: none;">
+ <figure class="lead-form lead-form-sidebar">
+ <div id="form-agent-header" class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+<form action="/new-homes/texas/dallas-fort-worth-metroplex/argyle/sagebrook/pizarro-plan/7401-sumac-drive" class="lead-form-sidebar-section" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""> <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ id="block-agent-email"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+</form> </div>
+ </figure>
+ </div>
+
+
+
+ <div class="lead-form-container-success">
+ <figure class="lead-form lead-form-sidebar">
+ <div class="lead-form-container-success" style="display: block">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" method="POST" name="thanksyou_sidebar" data-parsley-validate="" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+
+ <div>
+ <div class="form-field form-field-password">
+ <label for="password"></label>
+ <input type="password"
+ name="password"
+ id="password"
+ placeholder="Password"
+ data-parsley-valid-password=""
+ minlength="8"
+ required=""
+ data-parsley-required-message="Password is required."
+ data-parsley-trigger="blur">
+
+ <button type="button" class="password-input-change" data-input-change="">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span tabindex="0"
+ data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">Create Account</span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ </div>
+ </section>
+ </div>
+ </div>
+
+ <div class="box box-centered box-full box-transparent" id="neraby">
+ <div class="box-full-inner">
+ <h3 class="h2">
+ Other Quick Move-In Homes
+ </h3>
+
+ <div class="featured-grid">
+ <div class="row">
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/texas/dallas-fort-worth-metroplex/argyle/sagebrook/pizarro-plan/7312-sumac-drive">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Pizarro Elevation F" height="1600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/2053202/50421.jpeg?timestamp=2024-07-02T16%3A20%3A56.1380855" srcset="https://dam.mihomes.com/media/2053202/50398.jpeg?timestamp=2024-07-02T16%3A20%3A48.2691526 300w, https://dam.mihomes.com/media/2053202/50397.jpeg?timestamp=2024-07-02T16%3A20%3A55.4190802 600w, https://dam.mihomes.com/media/2053202/50423.jpeg?timestamp=2024-07-02T16%3A21%3A06.7428265 900w, https://dam.mihomes.com/media/2053202/50396.jpeg?timestamp=2024-07-02T16%3A20%3A53.6977944 1200w, https://dam.mihomes.com/media/2053202/50421.jpeg?timestamp=2024-07-02T16%3A20%3A56.1380855 1800w, https://dam.mihomes.com/media/2053202/50422.jpeg?timestamp=2024-07-02T16%3A21%3A14.1614889 2400w" title="DFW-Pizarro-ElevationF-Gen3-elev_DSK" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Pizarro</p>
+ <p class="featured-grid-middle">7312 Sumac Drive, Argyle, Texas</p>
+ <p class="featured-grid-subtitle">Listed at $417,990</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/texas/dallas-fort-worth-metroplex/argyle/sagebrook/pizarro-plan/7404-santolina-drive">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Exterior" height="1536" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4974424/50421.jpeg?timestamp=2026-07-08T02%3A03%3A59.1398133" srcset="https://dam.mihomes.com/media/4974424/50398.jpeg?timestamp=2026-07-08T02%3A03%3A55.2920280 300w, https://dam.mihomes.com/media/4974424/50397.jpeg?timestamp=2026-07-08T02%3A03%3A53.5820169 600w, https://dam.mihomes.com/media/4974424/50423.jpeg?timestamp=2026-07-08T02%3A03%3A59.6734395 900w, https://dam.mihomes.com/media/4974424/50396.jpeg?timestamp=2026-07-08T02%3A03%3A52.3341895 1200w, https://dam.mihomes.com/media/4974424/50421.jpeg?timestamp=2026-07-08T02%3A03%3A59.1398133 1800w, https://dam.mihomes.com/media/4974424/50422.jpeg?timestamp=2026-07-08T02%3A03%3A59.3799744 2400w" title="[L1114-z002]Exterior" width="2048" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Pizarro</p>
+ <p class="featured-grid-middle">7404 Santolina Drive, Argyle, Texas</p>
+ <p class="featured-grid-subtitle">Listed at $424,990</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/texas/dallas-fort-worth-metroplex/argyle/sagebrook/pizarro-plan/3708-yarrow-drive">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Pizarro Elevation H" height="1600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/2053203/50421.jpeg?timestamp=2024-07-02T16%3A20%3A47.9946944" srcset="https://dam.mihomes.com/media/2053203/50398.jpeg?timestamp=2024-07-02T16%3A21%3A05.3240402 300w, https://dam.mihomes.com/media/2053203/50397.jpeg?timestamp=2024-07-02T16%3A21%3A14.8018385 600w, https://dam.mihomes.com/media/2053203/50423.jpeg?timestamp=2024-07-02T16%3A21%3A20.3455241 900w, https://dam.mihomes.com/media/2053203/50396.jpeg?timestamp=2024-07-02T16%3A21%3A04.6815049 1200w, https://dam.mihomes.com/media/2053203/50421.jpeg?timestamp=2024-07-02T16%3A20%3A47.9946944 1800w, https://dam.mihomes.com/media/2053203/50422.jpeg?timestamp=2024-07-02T16%3A20%3A52.1104126 2400w" title="DFW-Pizarro-ElevationH-Gen3-elev_DSK" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Pizarro</p>
+ <p class="featured-grid-middle">3708 Yarrow Drive, Argyle, Texas</p>
+ <p class="featured-grid-subtitle">Listed at $434,990</p>
+ </a>
+</div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ </main>
+
+
+<footer class="main-footer">
+ <div class="main-footer-inner">
+ <ul class="horizontal-list">
+ <li><a href="https://apply.workable.com/mi-homes/" target="_blank" rel="noopener noreferrer" >Careers</a></li>
+ <li><a href="/support/warranty" >Warranty</a></li>
+ <li><a href="https://investors.mihomes.com/" rel="noopener noreferrer" title="Investor Relations" target="_blank" >Investors</a></li>
+ <li><a href="/events" >Events</a></li>
+ <li><a href="/incentives" >Incentives</a></li>
+ <li><a href="/agent/agent-info" >Agents & Brokers</a></li>
+ <li><a href="/resources" >Home Buying Resources</a></li>
+ <li><a href="/why-mi/journey" >Journey</a></li>
+ <li><a href="/blog/" >Blog</a></li>
+ </ul>
+ <ul class="horizontal-list">
+ <li><a href="/policies/privacy-policy" >Privacy Policy</a></li>
+ <li><a href="/policies/terms-of-use" >Terms of Use</a></li>
+ <li><a href="/subscriptions" >Manage Subscriptions</a></li>
+ <li><a href="/support/ccpa" >CCPA</a></li>
+ </ul>
+ <ul class="icon-list">
+ <li>
+<a href="https://www.instagram.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Instagram" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704717/50399.png" srcset="https://dam.mihomes.com/media/4704717/50399.png?timestamp=2026-05-04T18%3A56%3A58.4036491 300w, https://dam.mihomes.com/media/4704717/50420.png 600w" title="instagram" width="24" /></a> </li>
+ <li>
+<a href="https://www.facebook.com/MIHomesInc/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Facebook" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57191/50399.png" srcset="https://dam.mihomes.com/media/57191/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57191/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="facebook" width="24" /></a> </li>
+ <li>
+<a href="https://www.youtube.com/MIHomesInc" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Youtube" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704715/50399.png" srcset="https://dam.mihomes.com/media/4704715/50399.png?timestamp=2026-05-04T18%3A34%3A30.5730196 300w, https://dam.mihomes.com/media/4704715/50420.png 600w" title="youtube" width="24" /></a> </li>
+ <li>
+<a href="https://www.pinterest.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Pinterest" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57192/50399.png" srcset="https://dam.mihomes.com/media/57192/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57192/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="pintrest" width="24" /></a> </li>
+ <li>
+<a href="http://www.houzz.com/pro/mi-homes/m-i-homes" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Houzz" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57193/50399.png" srcset="https://dam.mihomes.com/media/57193/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57193/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="houzz" width="24" /></a> </li>
+ <li>
+<a href="http://portal.hud.gov" class="" rel="me" target="_blank" ><img data-dam-generated alt="Equal Housing" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704718/50399.png" srcset="https://dam.mihomes.com/media/4704718/50399.png?timestamp=2026-05-04T19%3A02%3A51.2896193 300w, https://dam.mihomes.com/media/4704718/50420.png 600w" title="equal-housing" width="28" /></a> </li>
+ </ul>
+ <p class="main-footer-copyright">
+ Copyright 2026, M/I Homes, Inc. All rights reserved.
+ </p>
+ <p id="division-disclaimer" class="main-footer-copyright">
+
+
+ </p>
+ </div>
+</footer>
+</div>
+<div aria-label="Cookie Consent" role="dialog" id="ccpa-modal" class="ccpa-modal">
+ <p>By browsing, you accept our <a href="/policies/terms-of-use">terms of use</a> and <a href="/policies/privacy-policy">privacy policy</a>.</p>
+ <button class="button" type="button">OK</button>
+</div>
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/modals.css?ver=202608092245" rel="stylesheet" fetchpriority="low">
+ <div class="modal modal-wide box" data-modal="" id="privacy-policy-modal">
+ <button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div id="privacy-policy-text"></div>
+</div><div class="modal box box-wide box-paddingless" data-modal="" id="mortgage-payment-calculator-modal">
+<button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+</button>
+ <div id="mortgage-payment-calculator" data-price="440179" data-values="d3857e19-6477-4915-8e0e-80cf9330cb7a"></div>
+</div>
+ <div class="modal" data-modal id="search-modal">
+ <form action="/search" class="search-form ">
+ <input class="search-form-input" id="search-form-input" name="search" placeholder="Search M/I Homes"
+ type="search" />
+ <button class="button search-form-clear-button" type="button">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+
+ </button>
+ <button class="button search-form-submit" type="submit">
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ <div class="search-form-results">
+ <div class="search-form-results-list"></div>
+ </div>
+ </form>
+ </div>
+</div>
+
+<!-- toolkit scripts -->
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit_common.js?ver=202608092245"></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit.js?ver=202608092245"></script>
+ <script src="https://cdn.mihomes.com/assets/toolkit/js/product.js?ver=202608092245"></script>
+ <script defer src="https://cdn.mihomes.com/assets/toolkit/js/mortgage-calculator.js?ver=202608092245"></script>
+<script>window.jQuery = window.$ = window.JQUERY;</script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/common.js?ver=202608092245" defer></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/favorites.js?ver=202608092245" defer></script>
+
+
+<script>
+ var w = Math.max(
+ document.body.scrollWidth,
+ document.documentElement.scrollWidth,
+ document.body.offsetWidth,
+ document.documentElement.offsetWidth,
+ document.documentElement.clientWidth
+ );
+ window.setCookie('screen-width', encodeURIComponent(w), { expires: 14, path: "/" })
+ </script>
+
+<script>
+
+
+</script>
+<script type="text/javascript">
+ const millisecondsPerDay = 86400000;
+ const millisecondsPerHour = millisecondsPerDay / 24;
+ const millisecondsPerMinute = millisecondsPerHour / 60;
+ const millisecondsPerSecond = 1000;
+ function addLeadingZero(val) {
+ if(val.toString().length < 2) {
+ return '0'+val;
+ }
+ return val;
+ }
+ function change() {
+ const list = Array.from(document.querySelectorAll('[data-countdown]'));
+ const now = new Date().getTime();
+ list.forEach((el) => {
+ const d = new Date(el.getAttribute('data-countdown')).getTime();
+ let diff = d - now;
+ let days = 0;
+ let hours = 0;
+ let minutes = 0;
+ let seconds = 0;
+ if(diff > 0) {
+ days = Math.floor(diff / millisecondsPerDay);
+ diff = diff - (days * millisecondsPerDay)
+ hours = Math.floor(diff/millisecondsPerHour);
+ diff = diff - (hours * millisecondsPerHour)
+ minutes = Math.floor(diff/millisecondsPerMinute);
+ diff = diff - (minutes * millisecondsPerMinute);
+ seconds = Math.floor(diff/millisecondsPerSecond);
+ }
+ try {
+ el.querySelector('.days').innerText = addLeadingZero(Math.max(days, 0));
+
+ } catch (e) {}
+ try {
+ el.querySelector('.hours').innerText = addLeadingZero(Math.max(hours, 0));
+ } catch(e) {}
+ try {
+ el.querySelector('.minutes').innerText = addLeadingZero(Math.max(minutes, 0));
+ } catch (e) {}
+ try {
+ el.querySelector('.seconds').innerText = addLeadingZero(Math.max(seconds, 0));
+ } catch (e) {}
+
+ });
+ setTimeout(()=>requestAnimationFrame(change), millisecondsPerSecond);
+ }
+ requestAnimationFrame(change);
+</script>
+<script>(function(){function c(){var b=a.contentDocument||(a.contentWindow&&a.contentWindow.document);if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'a29496012fd0c4c6',t:'MTc4NjQyMzQ3NQ=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
+
+</html>
\ No newline at end of file
diff --git a/collectors/mi-homes/fixtures/homes/h11.html b/collectors/mi-homes/fixtures/homes/h11.html
new file mode 100644
index 00000000..f1a067f3
--- /dev/null
+++ b/collectors/mi-homes/fixtures/homes/h11.html
@@ -0,0 +1,2574 @@
+
+
+<!doctype html>
+<html lang="en">
+
+<head>
+
+ <script>
+ var G = G || {};
+ G.pingForEmployee = true;
+ </script>
+
+
+<meta name="VIcurrentDateTime" content="639220202784374007" />
+<meta name="VirtualFolder" content="/" />
+<script type="text/javascript" src="/layouts/system/VisitorIdentification.js"></script>
+
+
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" name="viewport">
+ <title>MLS #9658337 - 4717 Lava Island Drive Austin, TX 78747 - M/I Homes</title>
+ <!-- font -->
+ <link rel="preconnect" href="https://cdn.mihomes.com" crossorigin>
+ <link rel="preconnect" href="https://use.typekit.net" crossorigin>
+
+
+
+<!-- Google Tag Script -->
+
+ <script id="js-GTM-script">
+ window.dataLayer = window.dataLayer || [];
+ window.dataLayer.push({
+ "PageType": "Spec",
+ "MIAccount": "No",
+ "Division": "Austin"
+});
+
+(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=
+'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
+})(window,document,'script','dataLayer','GTM-M2JH3QJ');
+ </script>
+
+
+<!-- End Google Tag Script -->
+ <meta name="referrer" content="always" />
+
+ <link href="https://use.typekit.net/sgt3sit.css" rel="stylesheet" type="text/css" media="print" onload="this.media='all'" id="fonts-loaded" />
+
+<script>
+ try {
+ document.fonts.ready.then(() => {
+ document.body.classList.add('body--fonts-loaded');
+ if(window.setCookiie) {
+ window.setCookie('fonts-cached', 'true', { expires: 7, path: '/' });
+ }
+ });
+ } catch (e) { }
+</script>
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/toolkit.css?ver=202608092245" type="text/css" rel="stylesheet">
+ <!-- conditionally load css for blog -->
+
+ <script>
+ window.environment = "Prod";
+ window.googleApiKey = "REDACTED-THIRD-PARTY-PUBLIC-KEY";
+ </script>
+ <script>
+
+ window.maps =[];
+ window.AssetRootUrl = 'https://cdn.mihomes.com';
+
+ </script>
+
+ <meta name="twitter:card" content="summary" />
+<meta name="twitter:site" content="@mihomes" />
+<meta name="twitter:creator" content="@mihomes">
+
+<meta property="og:site_name" content="https://www.mihomes.com" />
+<meta property="og:type" content="article" />
+<meta property="og:url" content="https://www.mihomes.com/new-homes/texas/greater-austin/austin/cascades-at-onion-creek/falcon-plan/4717-lava-island-drive" />
+
+
+ <meta property="og:title" content="4717 Lava Island Drive" />
+ <meta name="twitter:title" content="4717 Lava Island Drive" />
+
+
+
+ <meta property="og:description" content="Check out this impressive new home at 4717 Lava Island Drive in Austin, TX. This two-story residence offers a spacious and smart layout that perfectly balances busy social areas with quiet private retreats across two levels of living space." />
+ <meta name="twitter:description" content="Check out this impressive new home at 4717 Lava Island Drive in Austin, TX. This two-story residence offers a spacious and smart layout that perfectly balances busy social areas with quiet private retreats across two levels of living space." />
+ <meta name="description" content="Check out this impressive new home at 4717 Lava Island Drive in Austin, TX. This two-story residence offers a spacious and smart layout that perfectly balances busy social areas with quiet private retreats across two levels of living space." />
+
+
+
+ <link rel="canonical" href="https://www.mihomes.com/new-homes/texas/greater-austin/austin/cascades-at-onion-creek/falcon-plan/4717-lava-island-drive">
+ <link defer href="https://dam.mihomes.com/media/4179716/50399.png" rel="icon" type="image/vnd.microsoft.icon" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="57x57"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-57x57.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="114x114"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-114x114.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="72x72"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-72x72.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="144x144"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-144x144.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="60x60"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-60x60.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="120x120"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-120x120.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="76x76"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-76x76.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="152x152"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-152x152.png" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-196x196.png"
+ sizes="196x196" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-96x96.png"
+ sizes="96x96" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-32x32.png"
+ sizes="32x32" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-16x16.png"
+ sizes="16x16" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-128.png"
+ sizes="128x128" />
+ <meta name="application-name" content=" " />
+ <meta name="msapplication-TileColor" content="#FFFFFF" />
+ <meta name="msapplication-TileImage" content="https://cdn.mihomes.com/assets/favicons/images/mstile-144x144.png" />
+ <meta name="msapplication-square70x70logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-70x70.png" />
+ <meta name="msapplication-square150x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-150x150.png" />
+ <meta name="msapplication-wide310x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x150.png" />
+ <meta name="msapplication-square310x310logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x310.png" />
+
+ <script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Organization",
+ "foundingDate": "1976",
+ "duns": "071649743",
+ "founders": [
+ {
+ "@type": "Person",
+ "name": "Melvin Schottenstein"
+ },
+ {
+ "@type": "Person",
+ "name": "Irving Schottenstein"
+ }
+ ],
+ "employees": [
+ {
+ "@type": "Person",
+ "name": "Robert H. Schottenstein",
+ "jobTitle": "Chairman, President, and CEO"
+ }
+ ],
+ "sameAs": [
+ "https://www.facebook.com/MIHomesInc",
+ "https://twitter.com/mihomes",
+ "https://www.instagram.com/mihomes/",
+ "https://www.youtube.com/MIHomesInc",
+ "https://www.houzz.com/pro/mi-homes/m-i-homes",
+ "https://www.pinterest.com/mihomes/"
+ ],
+ "logo": {
+ "@type": "ImageObject",
+ "name": "M/I Homes logo",
+ "contentUrl": "https://dam.mihomes.com/media/39664/50399.png"
+ },
+ "name": "M/I Homes",
+ "description": "M/I Homes, Inc. founded in 1976, M/I Homes is one of nation's leading builders of single family homes. M/I has established an exemplary reputation based on a strong commitment to superior customer service, innovative design, quality construction and premium locations. Listed on the New York Stock Exchange, M/I Homes serves a broad segment of the housing market including first-time, move-up, luxury and empty nester buyers.",
+ "url": "https://www.mihomes.com",
+ "isicv4": "4100"
+}</script>
+ <script defer src="https://www.youtube.com/iframe_api"></script>
+ <script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
+ <script>
+ window.addEventListener('load', () => {
+ const swUrl = "https://cdn.mihomes.com/assets/workers/product-page-service-worker.js"
+ navigator.serviceWorker
+ .register(swUrl, {
+ scope: '/'
+ })
+ .then(registration => {
+ console.log('Service Worker registered with scope:', registration.scope);
+ })
+ .catch(error => {
+ console.error('Error during service worker registration:', error);
+ });
+ });
+ </script>
+</head>
+
+<body class="no-js body--home-template">
+
+
+
+<!-- Google Tag Manager --><!-- Global site tag (gtag.js) - Google Analytics -->
+
+ <noscript>
+ <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M2JH3QJ"
+ height="0" width="0" style="display: none; visibility: hidden">
+ </iframe>
+ </noscript>
+
+<!-- End Google Tag Manager GTMM2JH3QJ -->
+<a class="skip-link" href="#content">Skip To Content</a>
+
+<div class="page-container">
+ <div id="overview" data-subnav-page-link="Overview"></div>
+
+
+<header class="main-header">
+ <div class="main-header-inner">
+<a href="/" class="main-header-logo" > <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png">
+<svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg></a> <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png" />
+ <button class="main-header-open-nav" data-open-nav="" title="Toggle Hamburger Navigation">
+ <svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg>
+ <svg class="icon icon-menu" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#menu"></use>
+</svg>
+ </button>
+ <div class="main-header-nav-items" data-a11y-focus data-nav-tray>
+ <nav class="main-nav">
+ <ul>
+ <li>
+
+ <a href="/" class="main-nav-link mobile-only" >Home</a>
+ </li>
+ <li>
+
+ <a href="/new-homes/texas/greater-austin" class="main-nav-link find-a-home-link" >Find a Home</a>
+ </li>
+ <li>
+
+ <a href="/about-us/overview" class="main-nav-link " >About</a>
+ </li>
+ <li>
+
+ <a href="/why-mi/overview" class="main-nav-link " >Why M/I</a>
+ </li>
+ <li>
+
+ <a href="/incentives" class="main-nav-link " >Incentives</a>
+ </li>
+ <li>
+
+ <a href="/financing" class="main-nav-link " >Financing</a>
+ </li>
+ <li>
+
+ <a href="/support/warranty" class="main-nav-link " >Warranty</a>
+ </li>
+ <li>
+
+ <a href="/support" class="main-nav-link " >Contact</a>
+ </li>
+ <li>
+
+ <a href="/resources" class="main-nav-link " >Resources</a>
+ </li>
+ </ul>
+ </nav>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ <div class="aux-nav">
+ <ul>
+ <li data-a11y-focus>
+ <a href="/account/register" class="main-nav-link" >Sign Up</a>
+ </li>
+ <li data-a11y-focus>
+ <a href="/account/login" class="main-nav-link" >Log In</a>
+ </li>
+ </ul>
+ </div>
+ </div>
+ <button class="main-header-close-nav" data-close-nav>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ </div>
+</header>
+ <div class="breadcrumbs-bar">
+ <div class="breadcrumbs-wrapper">
+ <nav class="breadcrumbs">
+ <a class="button-plain" href="/">Home</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/communities">Texas</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/greater-austin/communities">Greater Austin</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/greater-austin/austin">Austin</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/greater-austin/austin/cascades-at-onion-creek">Cascades at Onion Creek</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/greater-austin/austin/cascades-at-onion-creek/falcon-plan">Falcon</a>
+ <span class="seperator"> • </span>
+ <span>4717 Lava Island Drive</span>
+ </nav>
+ </div>
+ </div>
+ <script>var bar = document.querySelector('.breadcrumbs-bar'); bar.setAttribute('style', 'height:' + bar.getBoundingClientRect().height + 'px');</script>
+<script type="application/ld+json">
+{
+"@context": "https://schema.org",
+"@type": "BreadcrumbList",
+"itemListElement":[
+{
+"@type":"ListItem",
+"position":1,
+"name":"Texas",
+"item":"https://www.mihomes.com/new-homes/texas/communities"
+},
+{
+"@type":"ListItem",
+"position":2,
+"name":"Greater Austin",
+"item":"https://www.mihomes.com/new-homes/texas/greater-austin/communities"
+},
+{
+"@type":"ListItem",
+"position":3,
+"name":"Austin",
+"item":"https://www.mihomes.com/new-homes/texas/greater-austin/austin"
+},
+{
+"@type":"ListItem",
+"position":4,
+"name":"Cascades at Onion Creek",
+"item":"https://www.mihomes.com/new-homes/texas/greater-austin/austin/cascades-at-onion-creek"
+},
+{
+"@type":"ListItem",
+"position":5,
+"name":"Falcon",
+"item":"https://www.mihomes.com/new-homes/texas/greater-austin/austin/cascades-at-onion-creek/falcon-plan"
+},
+{
+"@type":"ListItem",
+"position":6,
+"name":"4717 Lava Island Drive",
+
+}
+]
+}
+</script>
+
+
+ <div class="page-notice-wrapper" id="page-notification"></div>
+ <main class="main-content" id="content" tabindex="0">
+
+<ul class="product-flags">
+ <li>
+
+
+<div class="product-flag product-flag-green " style="">
+ <span class="product-flag-text">Ready Now</span>
+</div> </li>
+</ul>
+<div class="image-banner">
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <img data-dam-generated alt="Front Exterior" height="1536" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/4974219/50421.jpeg?timestamp=2026-07-08T01%3A48%3A40.5264816" srcset="https://dam.mihomes.com/media/4974219/50398.jpeg?timestamp=2026-07-08T01%3A48%3A33.0579939 300w, https://dam.mihomes.com/media/4974219/50397.jpeg?timestamp=2026-07-08T01%3A48%3A30.7719133 600w, https://dam.mihomes.com/media/4974219/50423.jpeg?timestamp=2026-07-08T01%3A48%3A42.9825572 900w, https://dam.mihomes.com/media/4974219/50396.jpeg?timestamp=2026-07-08T01%3A48%3A28.9604425 1200w, https://dam.mihomes.com/media/4974219/50421.jpeg?timestamp=2026-07-08T01%3A48%3A40.5264816 1800w, https://dam.mihomes.com/media/4974219/50422.jpeg?timestamp=2026-07-08T01%3A48%3A40.8474191 2400w" title="[L3916-z001]FrontExterior" width="2048" class="image-banner-item-gallery" fetchpriority="high" />
+ </a>
+ <div class="image-banner-more">
+ <a href="#product-gallery"
+ data-goto-slide="1"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="1"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Kitchen" height="1536" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4974246/50421.jpeg?timestamp=2026-07-08T01%3A49%3A52.4029967" srcset="https://dam.mihomes.com/media/4974246/50398.jpeg?timestamp=2026-07-08T01%3A49%3A49.8475750 300w, https://dam.mihomes.com/media/4974246/50397.jpeg?timestamp=2026-07-08T01%3A49%3A48.4507774 600w, https://dam.mihomes.com/media/4974246/50423.jpeg?timestamp=2026-07-08T01%3A49%3A53.7950457 900w, https://dam.mihomes.com/media/4974246/50396.jpeg?timestamp=2026-07-08T01%3A49%3A48.7940350 1200w, https://dam.mihomes.com/media/4974246/50421.jpeg?timestamp=2026-07-08T01%3A49%3A52.4029967 1800w, https://dam.mihomes.com/media/4974246/50422.jpeg?timestamp=2026-07-08T01%3A49%3A52.5884634 2400w" title="[L3916-z022]Kitchen" width="2048" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="2"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="2"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Kitchen" height="1536" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4974253/50421.jpeg?timestamp=2026-07-08T01%3A50%3A10.2637220" srcset="https://dam.mihomes.com/media/4974253/50398.jpeg?timestamp=2026-07-08T01%3A50%3A06.8907267 300w, https://dam.mihomes.com/media/4974253/50397.jpeg?timestamp=2026-07-08T01%3A50%3A05.7551101 600w, https://dam.mihomes.com/media/4974253/50423.jpeg?timestamp=2026-07-08T01%3A50%3A10.7492372 900w, https://dam.mihomes.com/media/4974253/50396.jpeg?timestamp=2026-07-08T01%3A50%3A04.5808006 1200w, https://dam.mihomes.com/media/4974253/50421.jpeg?timestamp=2026-07-08T01%3A50%3A10.2637220 1800w, https://dam.mihomes.com/media/4974253/50422.jpeg?timestamp=2026-07-08T01%3A50%3A10.0403172 2400w" title="[L3916-z020]Kitchen" width="2048" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="3"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="3"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Kitchen" height="1536" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4974254/50421.jpeg?timestamp=2026-07-08T01%3A50%3A05.8857123" srcset="https://dam.mihomes.com/media/4974254/50398.jpeg?timestamp=2026-07-08T01%3A50%3A01.2622441 300w, https://dam.mihomes.com/media/4974254/50397.jpeg?timestamp=2026-07-08T01%3A50%3A00.6155621 600w, https://dam.mihomes.com/media/4974254/50423.jpeg?timestamp=2026-07-08T01%3A50%3A08.2059407 900w, https://dam.mihomes.com/media/4974254/50396.jpeg?timestamp=2026-07-08T01%3A49%3A59.8871190 1200w, https://dam.mihomes.com/media/4974254/50421.jpeg?timestamp=2026-07-08T01%3A50%3A05.8857123 1800w, https://dam.mihomes.com/media/4974254/50422.jpeg?timestamp=2026-07-08T01%3A50%3A06.9387470 2400w" title="[L3916-z021]Kitchen" width="2048" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="4"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="4"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Interior" height="1536" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4974245/50421.jpeg?timestamp=2026-07-08T01%3A49%3A46.5331922" srcset="https://dam.mihomes.com/media/4974245/50398.jpeg?timestamp=2026-07-08T01%3A49%3A45.0173363 300w, https://dam.mihomes.com/media/4974245/50397.jpeg?timestamp=2026-07-08T01%3A49%3A44.2353360 600w, https://dam.mihomes.com/media/4974245/50423.jpeg?timestamp=2026-07-08T01%3A49%3A46.2647679 900w, https://dam.mihomes.com/media/4974245/50396.jpeg?timestamp=2026-07-08T01%3A49%3A43.1431792 1200w, https://dam.mihomes.com/media/4974245/50421.jpeg?timestamp=2026-07-08T01%3A49%3A46.5331922 1800w, https://dam.mihomes.com/media/4974245/50422.jpeg?timestamp=2026-07-08T01%3A49%3A46.1276484 2400w" title="[L3916-z019]Interior" width="2048" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="third event-click image-banner-total gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <span class="button button-transparent">
+ View 60 Photos
+ </span>
+ </a>
+ </div>
+</div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Front Exterior" height="1536" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/4974219/50421.jpeg?timestamp=2026-07-08T01%3A48%3A40.5264816" srcset="https://dam.mihomes.com/media/4974219/50398.jpeg?timestamp=2026-07-08T01%3A48%3A33.0579939 300w, https://dam.mihomes.com/media/4974219/50397.jpeg?timestamp=2026-07-08T01%3A48%3A30.7719133 600w, https://dam.mihomes.com/media/4974219/50423.jpeg?timestamp=2026-07-08T01%3A48%3A42.9825572 900w, https://dam.mihomes.com/media/4974219/50396.jpeg?timestamp=2026-07-08T01%3A48%3A28.9604425 1200w, https://dam.mihomes.com/media/4974219/50421.jpeg?timestamp=2026-07-08T01%3A48%3A40.5264816 1800w, https://dam.mihomes.com/media/4974219/50422.jpeg?timestamp=2026-07-08T01%3A48%3A40.8474191 2400w" title="[L3916-z001]FrontExterior" width="2048" class="image-banner-item-gallery" fetchpriority="high" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Kitchen" height="1536" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4974246/50421.jpeg?timestamp=2026-07-08T01%3A49%3A52.4029967" srcset="https://dam.mihomes.com/media/4974246/50398.jpeg?timestamp=2026-07-08T01%3A49%3A49.8475750 300w, https://dam.mihomes.com/media/4974246/50397.jpeg?timestamp=2026-07-08T01%3A49%3A48.4507774 600w, https://dam.mihomes.com/media/4974246/50423.jpeg?timestamp=2026-07-08T01%3A49%3A53.7950457 900w, https://dam.mihomes.com/media/4974246/50396.jpeg?timestamp=2026-07-08T01%3A49%3A48.7940350 1200w, https://dam.mihomes.com/media/4974246/50421.jpeg?timestamp=2026-07-08T01%3A49%3A52.4029967 1800w, https://dam.mihomes.com/media/4974246/50422.jpeg?timestamp=2026-07-08T01%3A49%3A52.5884634 2400w" title="[L3916-z022]Kitchen" width="2048" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Kitchen" height="1536" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4974253/50421.jpeg?timestamp=2026-07-08T01%3A50%3A10.2637220" srcset="https://dam.mihomes.com/media/4974253/50398.jpeg?timestamp=2026-07-08T01%3A50%3A06.8907267 300w, https://dam.mihomes.com/media/4974253/50397.jpeg?timestamp=2026-07-08T01%3A50%3A05.7551101 600w, https://dam.mihomes.com/media/4974253/50423.jpeg?timestamp=2026-07-08T01%3A50%3A10.7492372 900w, https://dam.mihomes.com/media/4974253/50396.jpeg?timestamp=2026-07-08T01%3A50%3A04.5808006 1200w, https://dam.mihomes.com/media/4974253/50421.jpeg?timestamp=2026-07-08T01%3A50%3A10.2637220 1800w, https://dam.mihomes.com/media/4974253/50422.jpeg?timestamp=2026-07-08T01%3A50%3A10.0403172 2400w" title="[L3916-z020]Kitchen" width="2048" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Kitchen" height="1536" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4974254/50421.jpeg?timestamp=2026-07-08T01%3A50%3A05.8857123" srcset="https://dam.mihomes.com/media/4974254/50398.jpeg?timestamp=2026-07-08T01%3A50%3A01.2622441 300w, https://dam.mihomes.com/media/4974254/50397.jpeg?timestamp=2026-07-08T01%3A50%3A00.6155621 600w, https://dam.mihomes.com/media/4974254/50423.jpeg?timestamp=2026-07-08T01%3A50%3A08.2059407 900w, https://dam.mihomes.com/media/4974254/50396.jpeg?timestamp=2026-07-08T01%3A49%3A59.8871190 1200w, https://dam.mihomes.com/media/4974254/50421.jpeg?timestamp=2026-07-08T01%3A50%3A05.8857123 1800w, https://dam.mihomes.com/media/4974254/50422.jpeg?timestamp=2026-07-08T01%3A50%3A06.9387470 2400w" title="[L3916-z021]Kitchen" width="2048" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Interior" height="1536" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4974245/50421.jpeg?timestamp=2026-07-08T01%3A49%3A46.5331922" srcset="https://dam.mihomes.com/media/4974245/50398.jpeg?timestamp=2026-07-08T01%3A49%3A45.0173363 300w, https://dam.mihomes.com/media/4974245/50397.jpeg?timestamp=2026-07-08T01%3A49%3A44.2353360 600w, https://dam.mihomes.com/media/4974245/50423.jpeg?timestamp=2026-07-08T01%3A49%3A46.2647679 900w, https://dam.mihomes.com/media/4974245/50396.jpeg?timestamp=2026-07-08T01%3A49%3A43.1431792 1200w, https://dam.mihomes.com/media/4974245/50421.jpeg?timestamp=2026-07-08T01%3A49%3A46.5331922 1800w, https://dam.mihomes.com/media/4974245/50422.jpeg?timestamp=2026-07-08T01%3A49%3A46.1276484 2400w" title="[L3916-z019]Interior" width="2048" class="image-banner-item-more" />
+ </span>
+ </div>
+
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <div class="modal fullscreen-modal gallery-modal gallery-modal--simple" data-modal="" id="simple-gallery-modal" data-track-views="">
+ <div class="gallery-modal__list-container">
+ <div class="gallery-modal__controls">
+ <button class="close-icon" data-modal-close>
+ <svg class="icon icon-close-gallery" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close-gallery"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__list-container-arrows">
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="prev" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="59" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="next" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="0" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__controls gallery-modal__controls__zoom">
+ <button class="close-icon" data-gallery="simple-gallery-modal" data-zoom>
+ <svg class="icon icon-zoom" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#zoom"></use>
+</svg>
+ </button>
+ </div>
+ <ul class="gallery-modal__list no-transition" style="transform: translateX(-200%);">
+
+ <li class="gallery-slide-container" data-slide-id="0" data-image="https://dam.mihomes.com/media/4974219/50398.jpeg?timestamp=2026-07-08T01%3A48%3A33.0579939 300w, https://dam.mihomes.com/media/4974219/50397.jpeg?timestamp=2026-07-08T01%3A48%3A30.7719133 600w, https://dam.mihomes.com/media/4974219/50423.jpeg?timestamp=2026-07-08T01%3A48%3A42.9825572 900w, https://dam.mihomes.com/media/4974219/50396.jpeg?timestamp=2026-07-08T01%3A48%3A28.9604425 1200w, https://dam.mihomes.com/media/4974219/50421.jpeg?timestamp=2026-07-08T01%3A48%3A40.5264816 1800w, https://dam.mihomes.com/media/4974219/50422.jpeg?timestamp=2026-07-08T01%3A48%3A40.8474191 2400w" data-caption="Front Exterior" data-count="<strong>1</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Front Exterior" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4974219/50421.jpeg?timestamp=2026-07-08T01%3A48%3A40.5264816" srcset="https://dam.mihomes.com/media/4974219/50398.jpeg?timestamp=2026-07-08T01%3A48%3A33.0579939 300w, https://dam.mihomes.com/media/4974219/50397.jpeg?timestamp=2026-07-08T01%3A48%3A30.7719133 600w, https://dam.mihomes.com/media/4974219/50423.jpeg?timestamp=2026-07-08T01%3A48%3A42.9825572 900w, https://dam.mihomes.com/media/4974219/50396.jpeg?timestamp=2026-07-08T01%3A48%3A28.9604425 1200w, https://dam.mihomes.com/media/4974219/50421.jpeg?timestamp=2026-07-08T01%3A48%3A40.5264816 1800w, https://dam.mihomes.com/media/4974219/50422.jpeg?timestamp=2026-07-08T01%3A48%3A40.8474191 2400w" title="[L3916-z001]FrontExterior" width="2048" class="image-banner-item-gallery" fetchpriority="high" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="1" data-image="https://dam.mihomes.com/media/4974246/50398.jpeg?timestamp=2026-07-08T01%3A49%3A49.8475750 300w, https://dam.mihomes.com/media/4974246/50397.jpeg?timestamp=2026-07-08T01%3A49%3A48.4507774 600w, https://dam.mihomes.com/media/4974246/50423.jpeg?timestamp=2026-07-08T01%3A49%3A53.7950457 900w, https://dam.mihomes.com/media/4974246/50396.jpeg?timestamp=2026-07-08T01%3A49%3A48.7940350 1200w, https://dam.mihomes.com/media/4974246/50421.jpeg?timestamp=2026-07-08T01%3A49%3A52.4029967 1800w, https://dam.mihomes.com/media/4974246/50422.jpeg?timestamp=2026-07-08T01%3A49%3A52.5884634 2400w" data-caption="Kitchen" data-count="<strong>2</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4974246/50421.jpeg?timestamp=2026-07-08T01%3A49%3A52.4029967" srcset="https://dam.mihomes.com/media/4974246/50398.jpeg?timestamp=2026-07-08T01%3A49%3A49.8475750 300w, https://dam.mihomes.com/media/4974246/50397.jpeg?timestamp=2026-07-08T01%3A49%3A48.4507774 600w, https://dam.mihomes.com/media/4974246/50423.jpeg?timestamp=2026-07-08T01%3A49%3A53.7950457 900w, https://dam.mihomes.com/media/4974246/50396.jpeg?timestamp=2026-07-08T01%3A49%3A48.7940350 1200w, https://dam.mihomes.com/media/4974246/50421.jpeg?timestamp=2026-07-08T01%3A49%3A52.4029967 1800w, https://dam.mihomes.com/media/4974246/50422.jpeg?timestamp=2026-07-08T01%3A49%3A52.5884634 2400w" title="[L3916-z022]Kitchen" width="2048" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="2" data-image="https://dam.mihomes.com/media/4974253/50398.jpeg?timestamp=2026-07-08T01%3A50%3A06.8907267 300w, https://dam.mihomes.com/media/4974253/50397.jpeg?timestamp=2026-07-08T01%3A50%3A05.7551101 600w, https://dam.mihomes.com/media/4974253/50423.jpeg?timestamp=2026-07-08T01%3A50%3A10.7492372 900w, https://dam.mihomes.com/media/4974253/50396.jpeg?timestamp=2026-07-08T01%3A50%3A04.5808006 1200w, https://dam.mihomes.com/media/4974253/50421.jpeg?timestamp=2026-07-08T01%3A50%3A10.2637220 1800w, https://dam.mihomes.com/media/4974253/50422.jpeg?timestamp=2026-07-08T01%3A50%3A10.0403172 2400w" data-caption="Kitchen" data-count="<strong>3</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4974253/50421.jpeg?timestamp=2026-07-08T01%3A50%3A10.2637220" srcset="https://dam.mihomes.com/media/4974253/50398.jpeg?timestamp=2026-07-08T01%3A50%3A06.8907267 300w, https://dam.mihomes.com/media/4974253/50397.jpeg?timestamp=2026-07-08T01%3A50%3A05.7551101 600w, https://dam.mihomes.com/media/4974253/50423.jpeg?timestamp=2026-07-08T01%3A50%3A10.7492372 900w, https://dam.mihomes.com/media/4974253/50396.jpeg?timestamp=2026-07-08T01%3A50%3A04.5808006 1200w, https://dam.mihomes.com/media/4974253/50421.jpeg?timestamp=2026-07-08T01%3A50%3A10.2637220 1800w, https://dam.mihomes.com/media/4974253/50422.jpeg?timestamp=2026-07-08T01%3A50%3A10.0403172 2400w" title="[L3916-z020]Kitchen" width="2048" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="3" data-image="https://dam.mihomes.com/media/4974254/50398.jpeg?timestamp=2026-07-08T01%3A50%3A01.2622441 300w, https://dam.mihomes.com/media/4974254/50397.jpeg?timestamp=2026-07-08T01%3A50%3A00.6155621 600w, https://dam.mihomes.com/media/4974254/50423.jpeg?timestamp=2026-07-08T01%3A50%3A08.2059407 900w, https://dam.mihomes.com/media/4974254/50396.jpeg?timestamp=2026-07-08T01%3A49%3A59.8871190 1200w, https://dam.mihomes.com/media/4974254/50421.jpeg?timestamp=2026-07-08T01%3A50%3A05.8857123 1800w, https://dam.mihomes.com/media/4974254/50422.jpeg?timestamp=2026-07-08T01%3A50%3A06.9387470 2400w" data-caption="Kitchen" data-count="<strong>4</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4974254/50421.jpeg?timestamp=2026-07-08T01%3A50%3A05.8857123" srcset="https://dam.mihomes.com/media/4974254/50398.jpeg?timestamp=2026-07-08T01%3A50%3A01.2622441 300w, https://dam.mihomes.com/media/4974254/50397.jpeg?timestamp=2026-07-08T01%3A50%3A00.6155621 600w, https://dam.mihomes.com/media/4974254/50423.jpeg?timestamp=2026-07-08T01%3A50%3A08.2059407 900w, https://dam.mihomes.com/media/4974254/50396.jpeg?timestamp=2026-07-08T01%3A49%3A59.8871190 1200w, https://dam.mihomes.com/media/4974254/50421.jpeg?timestamp=2026-07-08T01%3A50%3A05.8857123 1800w, https://dam.mihomes.com/media/4974254/50422.jpeg?timestamp=2026-07-08T01%3A50%3A06.9387470 2400w" title="[L3916-z021]Kitchen" width="2048" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="4" data-image="https://dam.mihomes.com/media/4974245/50398.jpeg?timestamp=2026-07-08T01%3A49%3A45.0173363 300w, https://dam.mihomes.com/media/4974245/50397.jpeg?timestamp=2026-07-08T01%3A49%3A44.2353360 600w, https://dam.mihomes.com/media/4974245/50423.jpeg?timestamp=2026-07-08T01%3A49%3A46.2647679 900w, https://dam.mihomes.com/media/4974245/50396.jpeg?timestamp=2026-07-08T01%3A49%3A43.1431792 1200w, https://dam.mihomes.com/media/4974245/50421.jpeg?timestamp=2026-07-08T01%3A49%3A46.5331922 1800w, https://dam.mihomes.com/media/4974245/50422.jpeg?timestamp=2026-07-08T01%3A49%3A46.1276484 2400w" data-caption="Interior" data-count="<strong>5</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4974245/50421.jpeg?timestamp=2026-07-08T01%3A49%3A46.5331922" srcset="https://dam.mihomes.com/media/4974245/50398.jpeg?timestamp=2026-07-08T01%3A49%3A45.0173363 300w, https://dam.mihomes.com/media/4974245/50397.jpeg?timestamp=2026-07-08T01%3A49%3A44.2353360 600w, https://dam.mihomes.com/media/4974245/50423.jpeg?timestamp=2026-07-08T01%3A49%3A46.2647679 900w, https://dam.mihomes.com/media/4974245/50396.jpeg?timestamp=2026-07-08T01%3A49%3A43.1431792 1200w, https://dam.mihomes.com/media/4974245/50421.jpeg?timestamp=2026-07-08T01%3A49%3A46.5331922 1800w, https://dam.mihomes.com/media/4974245/50422.jpeg?timestamp=2026-07-08T01%3A49%3A46.1276484 2400w" title="[L3916-z019]Interior" width="2048" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="5" data-image="https://dam.mihomes.com/media/4974259/50398.jpeg 300w, https://dam.mihomes.com/media/4974259/50397.jpeg 600w, https://dam.mihomes.com/media/4974259/50423.jpeg 900w, https://dam.mihomes.com/media/4974259/50396.jpeg 1200w, https://dam.mihomes.com/media/4974259/50421.jpeg 1800w, https://dam.mihomes.com/media/4974259/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>6</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4974259/50421.jpeg?timestamp=2026-07-08T01%3A50%3A44.6280638" srcset="https://dam.mihomes.com/media/4974259/50398.jpeg 300w, https://dam.mihomes.com/media/4974259/50397.jpeg 600w, https://dam.mihomes.com/media/4974259/50423.jpeg 900w, https://dam.mihomes.com/media/4974259/50396.jpeg 1200w, https://dam.mihomes.com/media/4974259/50421.jpeg 1800w, https://dam.mihomes.com/media/4974259/50422.jpeg 2400w" title="[L3916-z006]Bedroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="6" data-image="https://dam.mihomes.com/media/4974238/50398.jpeg 300w, https://dam.mihomes.com/media/4974238/50397.jpeg 600w, https://dam.mihomes.com/media/4974238/50423.jpeg 900w, https://dam.mihomes.com/media/4974238/50396.jpeg 1200w, https://dam.mihomes.com/media/4974238/50421.jpeg 1800w, https://dam.mihomes.com/media/4974238/50422.jpeg 2400w" data-caption="Interior" data-count="<strong>7</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4974238/50421.jpeg?timestamp=2026-07-08T01%3A49%3A34.3922459" srcset="https://dam.mihomes.com/media/4974238/50398.jpeg 300w, https://dam.mihomes.com/media/4974238/50397.jpeg 600w, https://dam.mihomes.com/media/4974238/50423.jpeg 900w, https://dam.mihomes.com/media/4974238/50396.jpeg 1200w, https://dam.mihomes.com/media/4974238/50421.jpeg 1800w, https://dam.mihomes.com/media/4974238/50422.jpeg 2400w" title="[L3916-z007]Interior" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="7" data-image="https://dam.mihomes.com/media/4974241/50398.jpeg 300w, https://dam.mihomes.com/media/4974241/50397.jpeg 600w, https://dam.mihomes.com/media/4974241/50423.jpeg 900w, https://dam.mihomes.com/media/4974241/50396.jpeg 1200w, https://dam.mihomes.com/media/4974241/50421.jpeg 1800w, https://dam.mihomes.com/media/4974241/50422.jpeg 2400w" data-caption="Owner's Bathroom" data-count="<strong>8</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owner's Bathroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4974241/50421.jpeg?timestamp=2026-07-08T01%3A50%3A07.4785106" srcset="https://dam.mihomes.com/media/4974241/50398.jpeg 300w, https://dam.mihomes.com/media/4974241/50397.jpeg 600w, https://dam.mihomes.com/media/4974241/50423.jpeg 900w, https://dam.mihomes.com/media/4974241/50396.jpeg 1200w, https://dam.mihomes.com/media/4974241/50421.jpeg 1800w, https://dam.mihomes.com/media/4974241/50422.jpeg 2400w" title="[L3916-z004]OwnersBathroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="8" data-image="https://dam.mihomes.com/media/4974239/50398.jpeg 300w, https://dam.mihomes.com/media/4974239/50397.jpeg 600w, https://dam.mihomes.com/media/4974239/50423.jpeg 900w, https://dam.mihomes.com/media/4974239/50396.jpeg 1200w, https://dam.mihomes.com/media/4974239/50421.jpeg 1800w, https://dam.mihomes.com/media/4974239/50422.jpeg 2400w" data-caption="Bathroom" data-count="<strong>9</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bathroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4974239/50421.jpeg?timestamp=2026-07-08T01%3A49%3A40.1305201" srcset="https://dam.mihomes.com/media/4974239/50398.jpeg 300w, https://dam.mihomes.com/media/4974239/50397.jpeg 600w, https://dam.mihomes.com/media/4974239/50423.jpeg 900w, https://dam.mihomes.com/media/4974239/50396.jpeg 1200w, https://dam.mihomes.com/media/4974239/50421.jpeg 1800w, https://dam.mihomes.com/media/4974239/50422.jpeg 2400w" title="[L3916-z005]Bathroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="9" data-image="https://dam.mihomes.com/media/4974258/50398.jpeg 300w, https://dam.mihomes.com/media/4974258/50397.jpeg 600w, https://dam.mihomes.com/media/4974258/50423.jpeg 900w, https://dam.mihomes.com/media/4974258/50396.jpeg 1200w, https://dam.mihomes.com/media/4974258/50421.jpeg 1800w, https://dam.mihomes.com/media/4974258/50422.jpeg 2400w" data-caption="Interior" data-count="<strong>10</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4974258/50421.jpeg?timestamp=2026-07-08T01%3A51%3A01.7066188" srcset="https://dam.mihomes.com/media/4974258/50398.jpeg 300w, https://dam.mihomes.com/media/4974258/50397.jpeg 600w, https://dam.mihomes.com/media/4974258/50423.jpeg 900w, https://dam.mihomes.com/media/4974258/50396.jpeg 1200w, https://dam.mihomes.com/media/4974258/50421.jpeg 1800w, https://dam.mihomes.com/media/4974258/50422.jpeg 2400w" title="[L3916-z010]Interior" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="10" data-image="https://dam.mihomes.com/media/4974249/50398.jpeg 300w, https://dam.mihomes.com/media/4974249/50397.jpeg 600w, https://dam.mihomes.com/media/4974249/50423.jpeg 900w, https://dam.mihomes.com/media/4974249/50396.jpeg 1200w, https://dam.mihomes.com/media/4974249/50421.jpeg 1800w, https://dam.mihomes.com/media/4974249/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>11</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4974249/50421.jpeg?timestamp=2026-07-08T01%3A50%3A29.6042446" srcset="https://dam.mihomes.com/media/4974249/50398.jpeg 300w, https://dam.mihomes.com/media/4974249/50397.jpeg 600w, https://dam.mihomes.com/media/4974249/50423.jpeg 900w, https://dam.mihomes.com/media/4974249/50396.jpeg 1200w, https://dam.mihomes.com/media/4974249/50421.jpeg 1800w, https://dam.mihomes.com/media/4974249/50422.jpeg 2400w" title="[L3916-z008]Bedroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="11" data-image="https://dam.mihomes.com/media/4974240/50398.jpeg 300w, https://dam.mihomes.com/media/4974240/50397.jpeg 600w, https://dam.mihomes.com/media/4974240/50423.jpeg 900w, https://dam.mihomes.com/media/4974240/50396.jpeg 1200w, https://dam.mihomes.com/media/4974240/50421.jpeg 1800w, https://dam.mihomes.com/media/4974240/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>12</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4974240/50421.jpeg?timestamp=2026-07-08T01%3A49%3A58.6599689" srcset="https://dam.mihomes.com/media/4974240/50398.jpeg 300w, https://dam.mihomes.com/media/4974240/50397.jpeg 600w, https://dam.mihomes.com/media/4974240/50423.jpeg 900w, https://dam.mihomes.com/media/4974240/50396.jpeg 1200w, https://dam.mihomes.com/media/4974240/50421.jpeg 1800w, https://dam.mihomes.com/media/4974240/50422.jpeg 2400w" title="[L3916-z009]Bedroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="12" data-image="https://dam.mihomes.com/media/4974248/50398.jpeg 300w, https://dam.mihomes.com/media/4974248/50397.jpeg 600w, https://dam.mihomes.com/media/4974248/50423.jpeg 900w, https://dam.mihomes.com/media/4974248/50396.jpeg 1200w, https://dam.mihomes.com/media/4974248/50421.jpeg 1800w, https://dam.mihomes.com/media/4974248/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>13</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4974248/50421.jpeg?timestamp=2026-07-08T01%3A50%3A34.9518661" srcset="https://dam.mihomes.com/media/4974248/50398.jpeg 300w, https://dam.mihomes.com/media/4974248/50397.jpeg 600w, https://dam.mihomes.com/media/4974248/50423.jpeg 900w, https://dam.mihomes.com/media/4974248/50396.jpeg 1200w, https://dam.mihomes.com/media/4974248/50421.jpeg 1800w, https://dam.mihomes.com/media/4974248/50422.jpeg 2400w" title="[L3916-z013]Bedroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="13" data-image="https://dam.mihomes.com/media/4974247/50398.jpeg 300w, https://dam.mihomes.com/media/4974247/50397.jpeg 600w, https://dam.mihomes.com/media/4974247/50423.jpeg 900w, https://dam.mihomes.com/media/4974247/50396.jpeg 1200w, https://dam.mihomes.com/media/4974247/50421.jpeg 1800w, https://dam.mihomes.com/media/4974247/50422.jpeg 2400w" data-caption="Interior" data-count="<strong>14</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4974247/50421.jpeg?timestamp=2026-07-08T01%3A50%3A22.8300720" srcset="https://dam.mihomes.com/media/4974247/50398.jpeg 300w, https://dam.mihomes.com/media/4974247/50397.jpeg 600w, https://dam.mihomes.com/media/4974247/50423.jpeg 900w, https://dam.mihomes.com/media/4974247/50396.jpeg 1200w, https://dam.mihomes.com/media/4974247/50421.jpeg 1800w, https://dam.mihomes.com/media/4974247/50422.jpeg 2400w" title="[L3916-z011]Interior" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="14" data-image="https://dam.mihomes.com/media/4974260/50398.jpeg 300w, https://dam.mihomes.com/media/4974260/50397.jpeg 600w, https://dam.mihomes.com/media/4974260/50423.jpeg 900w, https://dam.mihomes.com/media/4974260/50396.jpeg 1200w, https://dam.mihomes.com/media/4974260/50421.jpeg 1800w, https://dam.mihomes.com/media/4974260/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>15</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4974260/50421.jpeg?timestamp=2026-07-08T01%3A51%3A02.3452848" srcset="https://dam.mihomes.com/media/4974260/50398.jpeg 300w, https://dam.mihomes.com/media/4974260/50397.jpeg 600w, https://dam.mihomes.com/media/4974260/50423.jpeg 900w, https://dam.mihomes.com/media/4974260/50396.jpeg 1200w, https://dam.mihomes.com/media/4974260/50421.jpeg 1800w, https://dam.mihomes.com/media/4974260/50422.jpeg 2400w" title="[L3916-z017]Bedroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="15" data-image="https://dam.mihomes.com/media/4974256/50398.jpeg 300w, https://dam.mihomes.com/media/4974256/50397.jpeg 600w, https://dam.mihomes.com/media/4974256/50423.jpeg 900w, https://dam.mihomes.com/media/4974256/50396.jpeg 1200w, https://dam.mihomes.com/media/4974256/50421.jpeg 1800w, https://dam.mihomes.com/media/4974256/50422.jpeg 2400w" data-caption="Bathroom" data-count="<strong>16</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bathroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4974256/50421.jpeg?timestamp=2026-07-08T01%3A50%3A17.9711881" srcset="https://dam.mihomes.com/media/4974256/50398.jpeg 300w, https://dam.mihomes.com/media/4974256/50397.jpeg 600w, https://dam.mihomes.com/media/4974256/50423.jpeg 900w, https://dam.mihomes.com/media/4974256/50396.jpeg 1200w, https://dam.mihomes.com/media/4974256/50421.jpeg 1800w, https://dam.mihomes.com/media/4974256/50422.jpeg 2400w" title="[L3916-z014]Bathroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="16" data-image="https://dam.mihomes.com/media/4974242/50398.jpeg 300w, https://dam.mihomes.com/media/4974242/50397.jpeg 600w, https://dam.mihomes.com/media/4974242/50423.jpeg 900w, https://dam.mihomes.com/media/4974242/50396.jpeg 1200w, https://dam.mihomes.com/media/4974242/50421.jpeg 1800w, https://dam.mihomes.com/media/4974242/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>17</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4974242/50421.jpeg?timestamp=2026-07-08T01%3A49%3A42.8431870" srcset="https://dam.mihomes.com/media/4974242/50398.jpeg 300w, https://dam.mihomes.com/media/4974242/50397.jpeg 600w, https://dam.mihomes.com/media/4974242/50423.jpeg 900w, https://dam.mihomes.com/media/4974242/50396.jpeg 1200w, https://dam.mihomes.com/media/4974242/50421.jpeg 1800w, https://dam.mihomes.com/media/4974242/50422.jpeg 2400w" title="[L3916-z003]Bedroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="17" data-image="https://dam.mihomes.com/media/4974257/50398.jpeg 300w, https://dam.mihomes.com/media/4974257/50397.jpeg 600w, https://dam.mihomes.com/media/4974257/50423.jpeg 900w, https://dam.mihomes.com/media/4974257/50396.jpeg 1200w, https://dam.mihomes.com/media/4974257/50421.jpeg 1800w, https://dam.mihomes.com/media/4974257/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>18</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4974257/50421.jpeg?timestamp=2026-07-08T01%3A50%3A31.4687808" srcset="https://dam.mihomes.com/media/4974257/50398.jpeg 300w, https://dam.mihomes.com/media/4974257/50397.jpeg 600w, https://dam.mihomes.com/media/4974257/50423.jpeg 900w, https://dam.mihomes.com/media/4974257/50396.jpeg 1200w, https://dam.mihomes.com/media/4974257/50421.jpeg 1800w, https://dam.mihomes.com/media/4974257/50422.jpeg 2400w" title="[L3916-z012]Bedroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="18" data-image="https://dam.mihomes.com/media/4974243/50398.jpeg 300w, https://dam.mihomes.com/media/4974243/50397.jpeg 600w, https://dam.mihomes.com/media/4974243/50423.jpeg 900w, https://dam.mihomes.com/media/4974243/50396.jpeg 1200w, https://dam.mihomes.com/media/4974243/50421.jpeg 1800w, https://dam.mihomes.com/media/4974243/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>19</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4974243/50421.jpeg?timestamp=2026-07-08T01%3A51%3A04.4096281" srcset="https://dam.mihomes.com/media/4974243/50398.jpeg 300w, https://dam.mihomes.com/media/4974243/50397.jpeg 600w, https://dam.mihomes.com/media/4974243/50423.jpeg 900w, https://dam.mihomes.com/media/4974243/50396.jpeg 1200w, https://dam.mihomes.com/media/4974243/50421.jpeg 1800w, https://dam.mihomes.com/media/4974243/50422.jpeg 2400w" title="[L3916-z016]Bedroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="19" data-image="https://dam.mihomes.com/media/4974244/50398.jpeg 300w, https://dam.mihomes.com/media/4974244/50397.jpeg 600w, https://dam.mihomes.com/media/4974244/50423.jpeg 900w, https://dam.mihomes.com/media/4974244/50396.jpeg 1200w, https://dam.mihomes.com/media/4974244/50421.jpeg 1800w, https://dam.mihomes.com/media/4974244/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>20</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4974244/50421.jpeg?timestamp=2026-07-08T01%3A49%3A53.9401362" srcset="https://dam.mihomes.com/media/4974244/50398.jpeg 300w, https://dam.mihomes.com/media/4974244/50397.jpeg 600w, https://dam.mihomes.com/media/4974244/50423.jpeg 900w, https://dam.mihomes.com/media/4974244/50396.jpeg 1200w, https://dam.mihomes.com/media/4974244/50421.jpeg 1800w, https://dam.mihomes.com/media/4974244/50422.jpeg 2400w" title="[L3916-z018]Bedroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="20" data-image="https://dam.mihomes.com/media/4767210/50398.jpeg 300w, https://dam.mihomes.com/media/4767210/50397.jpeg 600w, https://dam.mihomes.com/media/4767210/50423.jpeg 900w, https://dam.mihomes.com/media/4767210/50396.jpeg 1200w, https://dam.mihomes.com/media/4767210/50421.jpeg 1800w, https://dam.mihomes.com/media/4767210/50422.jpeg 2400w" data-caption="Front Exterior" data-count="<strong>21</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Front Exterior" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4767210/50421.jpeg?timestamp=2026-05-19T07%3A16%3A03.6900802" srcset="https://dam.mihomes.com/media/4767210/50398.jpeg 300w, https://dam.mihomes.com/media/4767210/50397.jpeg 600w, https://dam.mihomes.com/media/4767210/50423.jpeg 900w, https://dam.mihomes.com/media/4767210/50396.jpeg 1200w, https://dam.mihomes.com/media/4767210/50421.jpeg 1800w, https://dam.mihomes.com/media/4767210/50422.jpeg 2400w" title="[L3916-z001]FrontExterior" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="21" data-image="https://dam.mihomes.com/media/4767212/50398.jpeg 300w, https://dam.mihomes.com/media/4767212/50397.jpeg 600w, https://dam.mihomes.com/media/4767212/50423.jpeg 900w, https://dam.mihomes.com/media/4767212/50396.jpeg 1200w, https://dam.mihomes.com/media/4767212/50421.jpeg 1800w, https://dam.mihomes.com/media/4767212/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>22</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4767212/50421.jpeg?timestamp=2026-05-19T07%3A16%3A14.7323312" srcset="https://dam.mihomes.com/media/4767212/50398.jpeg 300w, https://dam.mihomes.com/media/4767212/50397.jpeg 600w, https://dam.mihomes.com/media/4767212/50423.jpeg 900w, https://dam.mihomes.com/media/4767212/50396.jpeg 1200w, https://dam.mihomes.com/media/4767212/50421.jpeg 1800w, https://dam.mihomes.com/media/4767212/50422.jpeg 2400w" title="[L3916-z007]Bedroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="22" data-image="https://dam.mihomes.com/media/4767214/50398.jpeg 300w, https://dam.mihomes.com/media/4767214/50397.jpeg 600w, https://dam.mihomes.com/media/4767214/50423.jpeg 900w, https://dam.mihomes.com/media/4767214/50396.jpeg 1200w, https://dam.mihomes.com/media/4767214/50421.jpeg 1800w, https://dam.mihomes.com/media/4767214/50422.jpeg 2400w" data-caption="Interior" data-count="<strong>23</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4767214/50421.jpeg?timestamp=2026-05-19T07%3A16%3A22.8992746" srcset="https://dam.mihomes.com/media/4767214/50398.jpeg 300w, https://dam.mihomes.com/media/4767214/50397.jpeg 600w, https://dam.mihomes.com/media/4767214/50423.jpeg 900w, https://dam.mihomes.com/media/4767214/50396.jpeg 1200w, https://dam.mihomes.com/media/4767214/50421.jpeg 1800w, https://dam.mihomes.com/media/4767214/50422.jpeg 2400w" title="[L3916-z001]Interior" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="23" data-image="https://dam.mihomes.com/media/4853446/50398.jpeg 300w, https://dam.mihomes.com/media/4853446/50397.jpeg 600w, https://dam.mihomes.com/media/4853446/50423.jpeg 900w, https://dam.mihomes.com/media/4853446/50396.jpeg 1200w, https://dam.mihomes.com/media/4853446/50421.jpeg 1800w, https://dam.mihomes.com/media/4853446/50422.jpeg 2400w" data-caption="Kitchen" data-count="<strong>24</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4853446/50421.jpeg?timestamp=2026-06-09T13%3A01%3A21.1412801" srcset="https://dam.mihomes.com/media/4853446/50398.jpeg 300w, https://dam.mihomes.com/media/4853446/50397.jpeg 600w, https://dam.mihomes.com/media/4853446/50423.jpeg 900w, https://dam.mihomes.com/media/4853446/50396.jpeg 1200w, https://dam.mihomes.com/media/4853446/50421.jpeg 1800w, https://dam.mihomes.com/media/4853446/50422.jpeg 2400w" title="[L3916-z001]Kitchen" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="24" data-image="https://dam.mihomes.com/media/4853447/50398.jpeg 300w, https://dam.mihomes.com/media/4853447/50397.jpeg 600w, https://dam.mihomes.com/media/4853447/50423.jpeg 900w, https://dam.mihomes.com/media/4853447/50396.jpeg 1200w, https://dam.mihomes.com/media/4853447/50421.jpeg 1800w, https://dam.mihomes.com/media/4853447/50422.jpeg 2400w" data-caption="Kitchen" data-count="<strong>25</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4853447/50421.jpeg?timestamp=2026-06-09T13%3A01%3A27.3145943" srcset="https://dam.mihomes.com/media/4853447/50398.jpeg 300w, https://dam.mihomes.com/media/4853447/50397.jpeg 600w, https://dam.mihomes.com/media/4853447/50423.jpeg 900w, https://dam.mihomes.com/media/4853447/50396.jpeg 1200w, https://dam.mihomes.com/media/4853447/50421.jpeg 1800w, https://dam.mihomes.com/media/4853447/50422.jpeg 2400w" title="[L3916-z003]Kitchen" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="25" data-image="https://dam.mihomes.com/media/4853448/50398.jpeg 300w, https://dam.mihomes.com/media/4853448/50397.jpeg 600w, https://dam.mihomes.com/media/4853448/50423.jpeg 900w, https://dam.mihomes.com/media/4853448/50396.jpeg 1200w, https://dam.mihomes.com/media/4853448/50421.jpeg 1800w, https://dam.mihomes.com/media/4853448/50422.jpeg 2400w" data-caption="Kitchen" data-count="<strong>26</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4853448/50421.jpeg?timestamp=2026-06-09T13%3A01%3A31.1885546" srcset="https://dam.mihomes.com/media/4853448/50398.jpeg 300w, https://dam.mihomes.com/media/4853448/50397.jpeg 600w, https://dam.mihomes.com/media/4853448/50423.jpeg 900w, https://dam.mihomes.com/media/4853448/50396.jpeg 1200w, https://dam.mihomes.com/media/4853448/50421.jpeg 1800w, https://dam.mihomes.com/media/4853448/50422.jpeg 2400w" title="[L3916-z002]Kitchen" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="26" data-image="https://dam.mihomes.com/media/4928379/50398.jpeg 300w, https://dam.mihomes.com/media/4928379/50397.jpeg 600w, https://dam.mihomes.com/media/4928379/50423.jpeg 900w, https://dam.mihomes.com/media/4928379/50396.jpeg 1200w, https://dam.mihomes.com/media/4928379/50421.jpeg 1800w, https://dam.mihomes.com/media/4928379/50422.jpeg 2400w" data-caption="Front Exterior" data-count="<strong>27</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Front Exterior" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4928379/50421.jpeg?timestamp=2026-06-27T01%3A54%3A28.5878902" srcset="https://dam.mihomes.com/media/4928379/50398.jpeg 300w, https://dam.mihomes.com/media/4928379/50397.jpeg 600w, https://dam.mihomes.com/media/4928379/50423.jpeg 900w, https://dam.mihomes.com/media/4928379/50396.jpeg 1200w, https://dam.mihomes.com/media/4928379/50421.jpeg 1800w, https://dam.mihomes.com/media/4928379/50422.jpeg 2400w" title="[L3916-z001]FrontExterior" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="27" data-image="https://dam.mihomes.com/media/4928383/50398.jpeg 300w, https://dam.mihomes.com/media/4928383/50397.jpeg 600w, https://dam.mihomes.com/media/4928383/50423.jpeg 900w, https://dam.mihomes.com/media/4928383/50396.jpeg 1200w, https://dam.mihomes.com/media/4928383/50421.jpeg 1800w, https://dam.mihomes.com/media/4928383/50422.jpeg 2400w" data-caption="Front Exterior" data-count="<strong>28</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Front Exterior" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4928383/50421.jpeg?timestamp=2026-06-27T01%3A54%3A45.6820329" srcset="https://dam.mihomes.com/media/4928383/50398.jpeg 300w, https://dam.mihomes.com/media/4928383/50397.jpeg 600w, https://dam.mihomes.com/media/4928383/50423.jpeg 900w, https://dam.mihomes.com/media/4928383/50396.jpeg 1200w, https://dam.mihomes.com/media/4928383/50421.jpeg 1800w, https://dam.mihomes.com/media/4928383/50422.jpeg 2400w" title="[L3916-z002]FrontExterior" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="28" data-image="https://dam.mihomes.com/media/4928388/50398.jpeg 300w, https://dam.mihomes.com/media/4928388/50397.jpeg 600w, https://dam.mihomes.com/media/4928388/50423.jpeg 900w, https://dam.mihomes.com/media/4928388/50396.jpeg 1200w, https://dam.mihomes.com/media/4928388/50421.jpeg 1800w, https://dam.mihomes.com/media/4928388/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>29</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4928388/50421.jpeg?timestamp=2026-06-27T01%3A56%3A10.9267965" srcset="https://dam.mihomes.com/media/4928388/50398.jpeg 300w, https://dam.mihomes.com/media/4928388/50397.jpeg 600w, https://dam.mihomes.com/media/4928388/50423.jpeg 900w, https://dam.mihomes.com/media/4928388/50396.jpeg 1200w, https://dam.mihomes.com/media/4928388/50421.jpeg 1800w, https://dam.mihomes.com/media/4928388/50422.jpeg 2400w" title="[L3916-z004]Bedroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="29" data-image="https://dam.mihomes.com/media/4928390/50398.jpeg 300w, https://dam.mihomes.com/media/4928390/50397.jpeg 600w, https://dam.mihomes.com/media/4928390/50423.jpeg 900w, https://dam.mihomes.com/media/4928390/50396.jpeg 1200w, https://dam.mihomes.com/media/4928390/50421.jpeg 1800w, https://dam.mihomes.com/media/4928390/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>30</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4928390/50421.jpeg?timestamp=2026-06-27T01%3A56%3A13.9374288" srcset="https://dam.mihomes.com/media/4928390/50398.jpeg 300w, https://dam.mihomes.com/media/4928390/50397.jpeg 600w, https://dam.mihomes.com/media/4928390/50423.jpeg 900w, https://dam.mihomes.com/media/4928390/50396.jpeg 1200w, https://dam.mihomes.com/media/4928390/50421.jpeg 1800w, https://dam.mihomes.com/media/4928390/50422.jpeg 2400w" title="[L3916-z001]Bedroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="30" data-image="https://dam.mihomes.com/media/4928392/50398.jpeg 300w, https://dam.mihomes.com/media/4928392/50397.jpeg 600w, https://dam.mihomes.com/media/4928392/50423.jpeg 900w, https://dam.mihomes.com/media/4928392/50396.jpeg 1200w, https://dam.mihomes.com/media/4928392/50421.jpeg 1800w, https://dam.mihomes.com/media/4928392/50422.jpeg 2400w" data-caption="Owner's Bathroom" data-count="<strong>31</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owner's Bathroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4928392/50421.jpeg?timestamp=2026-06-27T01%3A56%3A07.2166275" srcset="https://dam.mihomes.com/media/4928392/50398.jpeg 300w, https://dam.mihomes.com/media/4928392/50397.jpeg 600w, https://dam.mihomes.com/media/4928392/50423.jpeg 900w, https://dam.mihomes.com/media/4928392/50396.jpeg 1200w, https://dam.mihomes.com/media/4928392/50421.jpeg 1800w, https://dam.mihomes.com/media/4928392/50422.jpeg 2400w" title="[L3916-z002]OwnersBathroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="31" data-image="https://dam.mihomes.com/media/4928397/50398.jpeg 300w, https://dam.mihomes.com/media/4928397/50397.jpeg 600w, https://dam.mihomes.com/media/4928397/50423.jpeg 900w, https://dam.mihomes.com/media/4928397/50396.jpeg 1200w, https://dam.mihomes.com/media/4928397/50421.jpeg 1800w, https://dam.mihomes.com/media/4928397/50422.jpeg 2400w" data-caption="Front Exterior" data-count="<strong>32</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Front Exterior" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4928397/50421.jpeg?timestamp=2026-06-27T01%3A56%3A37.3038897" srcset="https://dam.mihomes.com/media/4928397/50398.jpeg 300w, https://dam.mihomes.com/media/4928397/50397.jpeg 600w, https://dam.mihomes.com/media/4928397/50423.jpeg 900w, https://dam.mihomes.com/media/4928397/50396.jpeg 1200w, https://dam.mihomes.com/media/4928397/50421.jpeg 1800w, https://dam.mihomes.com/media/4928397/50422.jpeg 2400w" title="[L3916-z003]FrontExterior" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="32" data-image="https://dam.mihomes.com/media/4928398/50398.jpeg 300w, https://dam.mihomes.com/media/4928398/50397.jpeg 600w, https://dam.mihomes.com/media/4928398/50423.jpeg 900w, https://dam.mihomes.com/media/4928398/50396.jpeg 1200w, https://dam.mihomes.com/media/4928398/50421.jpeg 1800w, https://dam.mihomes.com/media/4928398/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>33</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4928398/50421.jpeg?timestamp=2026-06-27T01%3A56%3A41.0281694" srcset="https://dam.mihomes.com/media/4928398/50398.jpeg 300w, https://dam.mihomes.com/media/4928398/50397.jpeg 600w, https://dam.mihomes.com/media/4928398/50423.jpeg 900w, https://dam.mihomes.com/media/4928398/50396.jpeg 1200w, https://dam.mihomes.com/media/4928398/50421.jpeg 1800w, https://dam.mihomes.com/media/4928398/50422.jpeg 2400w" title="[L3916-z004]Bedroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="33" data-image="https://dam.mihomes.com/media/4928403/50398.jpeg 300w, https://dam.mihomes.com/media/4928403/50397.jpeg 600w, https://dam.mihomes.com/media/4928403/50423.jpeg 900w, https://dam.mihomes.com/media/4928403/50396.jpeg 1200w, https://dam.mihomes.com/media/4928403/50421.jpeg 1800w, https://dam.mihomes.com/media/4928403/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>34</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4928403/50421.jpeg?timestamp=2026-06-27T01%3A57%3A02.7524395" srcset="https://dam.mihomes.com/media/4928403/50398.jpeg 300w, https://dam.mihomes.com/media/4928403/50397.jpeg 600w, https://dam.mihomes.com/media/4928403/50423.jpeg 900w, https://dam.mihomes.com/media/4928403/50396.jpeg 1200w, https://dam.mihomes.com/media/4928403/50421.jpeg 1800w, https://dam.mihomes.com/media/4928403/50422.jpeg 2400w" title="[L3916-z010]Bedroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="34" data-image="https://dam.mihomes.com/media/4928401/50398.jpeg 300w, https://dam.mihomes.com/media/4928401/50397.jpeg 600w, https://dam.mihomes.com/media/4928401/50423.jpeg 900w, https://dam.mihomes.com/media/4928401/50396.jpeg 1200w, https://dam.mihomes.com/media/4928401/50421.jpeg 1800w, https://dam.mihomes.com/media/4928401/50422.jpeg 2400w" data-caption="Interior" data-count="<strong>35</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4928401/50421.jpeg?timestamp=2026-06-27T01%3A56%3A54.7189081" srcset="https://dam.mihomes.com/media/4928401/50398.jpeg 300w, https://dam.mihomes.com/media/4928401/50397.jpeg 600w, https://dam.mihomes.com/media/4928401/50423.jpeg 900w, https://dam.mihomes.com/media/4928401/50396.jpeg 1200w, https://dam.mihomes.com/media/4928401/50421.jpeg 1800w, https://dam.mihomes.com/media/4928401/50422.jpeg 2400w" title="[L3916-z005]Interior" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="35" data-image="https://dam.mihomes.com/media/4928402/50398.jpeg 300w, https://dam.mihomes.com/media/4928402/50397.jpeg 600w, https://dam.mihomes.com/media/4928402/50423.jpeg 900w, https://dam.mihomes.com/media/4928402/50396.jpeg 1200w, https://dam.mihomes.com/media/4928402/50421.jpeg 1800w, https://dam.mihomes.com/media/4928402/50422.jpeg 2400w" data-caption="Bathroom" data-count="<strong>36</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bathroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4928402/50421.jpeg?timestamp=2026-06-27T01%3A56%3A57.7052959" srcset="https://dam.mihomes.com/media/4928402/50398.jpeg 300w, https://dam.mihomes.com/media/4928402/50397.jpeg 600w, https://dam.mihomes.com/media/4928402/50423.jpeg 900w, https://dam.mihomes.com/media/4928402/50396.jpeg 1200w, https://dam.mihomes.com/media/4928402/50421.jpeg 1800w, https://dam.mihomes.com/media/4928402/50422.jpeg 2400w" title="[L3916-z003]Bathroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="36" data-image="https://dam.mihomes.com/media/4928404/50398.jpeg 300w, https://dam.mihomes.com/media/4928404/50397.jpeg 600w, https://dam.mihomes.com/media/4928404/50423.jpeg 900w, https://dam.mihomes.com/media/4928404/50396.jpeg 1200w, https://dam.mihomes.com/media/4928404/50421.jpeg 1800w, https://dam.mihomes.com/media/4928404/50422.jpeg 2400w" data-caption="Interior" data-count="<strong>37</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4928404/50421.jpeg?timestamp=2026-06-27T01%3A57%3A08.2211473" srcset="https://dam.mihomes.com/media/4928404/50398.jpeg 300w, https://dam.mihomes.com/media/4928404/50397.jpeg 600w, https://dam.mihomes.com/media/4928404/50423.jpeg 900w, https://dam.mihomes.com/media/4928404/50396.jpeg 1200w, https://dam.mihomes.com/media/4928404/50421.jpeg 1800w, https://dam.mihomes.com/media/4928404/50422.jpeg 2400w" title="[L3916-z008]Interior" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="37" data-image="https://dam.mihomes.com/media/4928405/50398.jpeg 300w, https://dam.mihomes.com/media/4928405/50397.jpeg 600w, https://dam.mihomes.com/media/4928405/50423.jpeg 900w, https://dam.mihomes.com/media/4928405/50396.jpeg 1200w, https://dam.mihomes.com/media/4928405/50421.jpeg 1800w, https://dam.mihomes.com/media/4928405/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>38</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4928405/50421.jpeg?timestamp=2026-06-27T01%3A57%3A10.7198196" srcset="https://dam.mihomes.com/media/4928405/50398.jpeg 300w, https://dam.mihomes.com/media/4928405/50397.jpeg 600w, https://dam.mihomes.com/media/4928405/50423.jpeg 900w, https://dam.mihomes.com/media/4928405/50396.jpeg 1200w, https://dam.mihomes.com/media/4928405/50421.jpeg 1800w, https://dam.mihomes.com/media/4928405/50422.jpeg 2400w" title="[L3916-z006]Bedroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="38" data-image="https://dam.mihomes.com/media/4928408/50398.jpeg 300w, https://dam.mihomes.com/media/4928408/50397.jpeg 600w, https://dam.mihomes.com/media/4928408/50423.jpeg 900w, https://dam.mihomes.com/media/4928408/50396.jpeg 1200w, https://dam.mihomes.com/media/4928408/50421.jpeg 1800w, https://dam.mihomes.com/media/4928408/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>39</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4928408/50421.jpeg?timestamp=2026-06-27T01%3A57%3A24.7966508" srcset="https://dam.mihomes.com/media/4928408/50398.jpeg 300w, https://dam.mihomes.com/media/4928408/50397.jpeg 600w, https://dam.mihomes.com/media/4928408/50423.jpeg 900w, https://dam.mihomes.com/media/4928408/50396.jpeg 1200w, https://dam.mihomes.com/media/4928408/50421.jpeg 1800w, https://dam.mihomes.com/media/4928408/50422.jpeg 2400w" title="[L3916-z009]Bedroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="39" data-image="https://dam.mihomes.com/media/4928409/50398.jpeg 300w, https://dam.mihomes.com/media/4928409/50397.jpeg 600w, https://dam.mihomes.com/media/4928409/50423.jpeg 900w, https://dam.mihomes.com/media/4928409/50396.jpeg 1200w, https://dam.mihomes.com/media/4928409/50421.jpeg 1800w, https://dam.mihomes.com/media/4928409/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>40</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4928409/50421.jpeg?timestamp=2026-06-27T01%3A57%3A26.4422515" srcset="https://dam.mihomes.com/media/4928409/50398.jpeg 300w, https://dam.mihomes.com/media/4928409/50397.jpeg 600w, https://dam.mihomes.com/media/4928409/50423.jpeg 900w, https://dam.mihomes.com/media/4928409/50396.jpeg 1200w, https://dam.mihomes.com/media/4928409/50421.jpeg 1800w, https://dam.mihomes.com/media/4928409/50422.jpeg 2400w" title="[L3916-z007]Bedroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="40" data-image="https://dam.mihomes.com/media/4928410/50398.jpeg 300w, https://dam.mihomes.com/media/4928410/50397.jpeg 600w, https://dam.mihomes.com/media/4928410/50423.jpeg 900w, https://dam.mihomes.com/media/4928410/50396.jpeg 1200w, https://dam.mihomes.com/media/4928410/50421.jpeg 1800w, https://dam.mihomes.com/media/4928410/50422.jpeg 2400w" data-caption="Family Room" data-count="<strong>41</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Family Room" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4928410/50421.jpeg?timestamp=2026-06-27T01%3A57%3A30.9163588" srcset="https://dam.mihomes.com/media/4928410/50398.jpeg 300w, https://dam.mihomes.com/media/4928410/50397.jpeg 600w, https://dam.mihomes.com/media/4928410/50423.jpeg 900w, https://dam.mihomes.com/media/4928410/50396.jpeg 1200w, https://dam.mihomes.com/media/4928410/50421.jpeg 1800w, https://dam.mihomes.com/media/4928410/50422.jpeg 2400w" title="[L3916-z018]FamilyRoom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="41" data-image="https://dam.mihomes.com/media/4928411/50398.jpeg 300w, https://dam.mihomes.com/media/4928411/50397.jpeg 600w, https://dam.mihomes.com/media/4928411/50423.jpeg 900w, https://dam.mihomes.com/media/4928411/50396.jpeg 1200w, https://dam.mihomes.com/media/4928411/50421.jpeg 1800w, https://dam.mihomes.com/media/4928411/50422.jpeg 2400w" data-caption="Kitchen" data-count="<strong>42</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4928411/50421.jpeg?timestamp=2026-06-27T01%3A57%3A35.3699306" srcset="https://dam.mihomes.com/media/4928411/50398.jpeg 300w, https://dam.mihomes.com/media/4928411/50397.jpeg 600w, https://dam.mihomes.com/media/4928411/50423.jpeg 900w, https://dam.mihomes.com/media/4928411/50396.jpeg 1200w, https://dam.mihomes.com/media/4928411/50421.jpeg 1800w, https://dam.mihomes.com/media/4928411/50422.jpeg 2400w" title="[L3916-z015]Kitchen" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="42" data-image="https://dam.mihomes.com/media/4928415/50398.jpeg 300w, https://dam.mihomes.com/media/4928415/50397.jpeg 600w, https://dam.mihomes.com/media/4928415/50423.jpeg 900w, https://dam.mihomes.com/media/4928415/50396.jpeg 1200w, https://dam.mihomes.com/media/4928415/50421.jpeg 1800w, https://dam.mihomes.com/media/4928415/50422.jpeg 2400w" data-caption="Kitchen" data-count="<strong>43</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4928415/50421.jpeg?timestamp=2026-06-27T01%3A57%3A52.3434667" srcset="https://dam.mihomes.com/media/4928415/50398.jpeg 300w, https://dam.mihomes.com/media/4928415/50397.jpeg 600w, https://dam.mihomes.com/media/4928415/50423.jpeg 900w, https://dam.mihomes.com/media/4928415/50396.jpeg 1200w, https://dam.mihomes.com/media/4928415/50421.jpeg 1800w, https://dam.mihomes.com/media/4928415/50422.jpeg 2400w" title="[L3916-z016]Kitchen" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="43" data-image="https://dam.mihomes.com/media/4928416/50398.jpeg 300w, https://dam.mihomes.com/media/4928416/50397.jpeg 600w, https://dam.mihomes.com/media/4928416/50423.jpeg 900w, https://dam.mihomes.com/media/4928416/50396.jpeg 1200w, https://dam.mihomes.com/media/4928416/50421.jpeg 1800w, https://dam.mihomes.com/media/4928416/50422.jpeg 2400w" data-caption="Kitchen" data-count="<strong>44</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4928416/50421.jpeg?timestamp=2026-06-27T01%3A57%3A55.5233991" srcset="https://dam.mihomes.com/media/4928416/50398.jpeg 300w, https://dam.mihomes.com/media/4928416/50397.jpeg 600w, https://dam.mihomes.com/media/4928416/50423.jpeg 900w, https://dam.mihomes.com/media/4928416/50396.jpeg 1200w, https://dam.mihomes.com/media/4928416/50421.jpeg 1800w, https://dam.mihomes.com/media/4928416/50422.jpeg 2400w" title="[L3916-z017]Kitchen" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="44" data-image="https://dam.mihomes.com/media/4928418/50398.jpeg 300w, https://dam.mihomes.com/media/4928418/50397.jpeg 600w, https://dam.mihomes.com/media/4928418/50423.jpeg 900w, https://dam.mihomes.com/media/4928418/50396.jpeg 1200w, https://dam.mihomes.com/media/4928418/50421.jpeg 1800w, https://dam.mihomes.com/media/4928418/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>45</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4928418/50421.jpeg?timestamp=2026-06-27T01%3A58%3A06.4348896" srcset="https://dam.mihomes.com/media/4928418/50398.jpeg 300w, https://dam.mihomes.com/media/4928418/50397.jpeg 600w, https://dam.mihomes.com/media/4928418/50423.jpeg 900w, https://dam.mihomes.com/media/4928418/50396.jpeg 1200w, https://dam.mihomes.com/media/4928418/50421.jpeg 1800w, https://dam.mihomes.com/media/4928418/50422.jpeg 2400w" title="[L3916-z013]Bedroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="45" data-image="https://dam.mihomes.com/media/4928419/50398.jpeg 300w, https://dam.mihomes.com/media/4928419/50397.jpeg 600w, https://dam.mihomes.com/media/4928419/50423.jpeg 900w, https://dam.mihomes.com/media/4928419/50396.jpeg 1200w, https://dam.mihomes.com/media/4928419/50421.jpeg 1800w, https://dam.mihomes.com/media/4928419/50422.jpeg 2400w" data-caption="Bathroom" data-count="<strong>46</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bathroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4928419/50421.jpeg?timestamp=2026-06-27T01%3A58%3A08.3139129" srcset="https://dam.mihomes.com/media/4928419/50398.jpeg 300w, https://dam.mihomes.com/media/4928419/50397.jpeg 600w, https://dam.mihomes.com/media/4928419/50423.jpeg 900w, https://dam.mihomes.com/media/4928419/50396.jpeg 1200w, https://dam.mihomes.com/media/4928419/50421.jpeg 1800w, https://dam.mihomes.com/media/4928419/50422.jpeg 2400w" title="[L3916-z012]Bathroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="46" data-image="https://dam.mihomes.com/media/4928421/50398.jpeg 300w, https://dam.mihomes.com/media/4928421/50397.jpeg 600w, https://dam.mihomes.com/media/4928421/50423.jpeg 900w, https://dam.mihomes.com/media/4928421/50396.jpeg 1200w, https://dam.mihomes.com/media/4928421/50421.jpeg 1800w, https://dam.mihomes.com/media/4928421/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>47</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4928421/50421.jpeg?timestamp=2026-06-27T01%3A58%3A16.9152470" srcset="https://dam.mihomes.com/media/4928421/50398.jpeg 300w, https://dam.mihomes.com/media/4928421/50397.jpeg 600w, https://dam.mihomes.com/media/4928421/50423.jpeg 900w, https://dam.mihomes.com/media/4928421/50396.jpeg 1200w, https://dam.mihomes.com/media/4928421/50421.jpeg 1800w, https://dam.mihomes.com/media/4928421/50422.jpeg 2400w" title="[L3916-z011]Bedroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="47" data-image="https://dam.mihomes.com/media/4928422/50398.jpeg 300w, https://dam.mihomes.com/media/4928422/50397.jpeg 600w, https://dam.mihomes.com/media/4928422/50423.jpeg 900w, https://dam.mihomes.com/media/4928422/50396.jpeg 1200w, https://dam.mihomes.com/media/4928422/50421.jpeg 1800w, https://dam.mihomes.com/media/4928422/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>48</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4928422/50421.jpeg?timestamp=2026-06-27T01%3A58%3A20.6234279" srcset="https://dam.mihomes.com/media/4928422/50398.jpeg 300w, https://dam.mihomes.com/media/4928422/50397.jpeg 600w, https://dam.mihomes.com/media/4928422/50423.jpeg 900w, https://dam.mihomes.com/media/4928422/50396.jpeg 1200w, https://dam.mihomes.com/media/4928422/50421.jpeg 1800w, https://dam.mihomes.com/media/4928422/50422.jpeg 2400w" title="[L3916-z014]Bedroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="48" data-image="https://dam.mihomes.com/media/4974250/50398.jpeg 300w, https://dam.mihomes.com/media/4974250/50397.jpeg 600w, https://dam.mihomes.com/media/4974250/50423.jpeg 900w, https://dam.mihomes.com/media/4974250/50396.jpeg 1200w, https://dam.mihomes.com/media/4974250/50421.jpeg 1800w, https://dam.mihomes.com/media/4974250/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>49</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4974250/50421.jpeg?timestamp=2026-07-08T01%3A50%3A45.0205616" srcset="https://dam.mihomes.com/media/4974250/50398.jpeg 300w, https://dam.mihomes.com/media/4974250/50397.jpeg 600w, https://dam.mihomes.com/media/4974250/50423.jpeg 900w, https://dam.mihomes.com/media/4974250/50396.jpeg 1200w, https://dam.mihomes.com/media/4974250/50421.jpeg 1800w, https://dam.mihomes.com/media/4974250/50422.jpeg 2400w" title="[L3916-z015]Bedroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="49" data-image="https://dam.mihomes.com/media/4974251/50398.jpeg 300w, https://dam.mihomes.com/media/4974251/50397.jpeg 600w, https://dam.mihomes.com/media/4974251/50423.jpeg 900w, https://dam.mihomes.com/media/4974251/50396.jpeg 1200w, https://dam.mihomes.com/media/4974251/50421.jpeg 1800w, https://dam.mihomes.com/media/4974251/50422.jpeg 2400w" data-caption="Front Exterior" data-count="<strong>50</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Front Exterior" height="1536" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4974251/50421.jpeg?timestamp=2026-07-08T01%3A50%3A47.9696129" srcset="https://dam.mihomes.com/media/4974251/50398.jpeg 300w, https://dam.mihomes.com/media/4974251/50397.jpeg 600w, https://dam.mihomes.com/media/4974251/50423.jpeg 900w, https://dam.mihomes.com/media/4974251/50396.jpeg 1200w, https://dam.mihomes.com/media/4974251/50421.jpeg 1800w, https://dam.mihomes.com/media/4974251/50422.jpeg 2400w" title="[L3916-z002]FrontExterior" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="50" data-image="https://dam.mihomes.com/media/4265083/50398.jpeg 300w, https://dam.mihomes.com/media/4265083/50397.jpeg 600w, https://dam.mihomes.com/media/4265083/50423.jpeg 900w, https://dam.mihomes.com/media/4265083/50396.jpeg 1200w, https://dam.mihomes.com/media/4265083/50421.jpeg 1800w, https://dam.mihomes.com/media/4265083/50422.jpeg 2400w" data-caption="Front Exterior - Representational Photo" data-count="<strong>51</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Front Exterior" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4265083/50421.jpeg?timestamp=2026-01-09T01%3A18%3A24.7821569" srcset="https://dam.mihomes.com/media/4265083/50398.jpeg 300w, https://dam.mihomes.com/media/4265083/50397.jpeg 600w, https://dam.mihomes.com/media/4265083/50423.jpeg 900w, https://dam.mihomes.com/media/4265083/50396.jpeg 1200w, https://dam.mihomes.com/media/4265083/50421.jpeg 1800w, https://dam.mihomes.com/media/4265083/50422.jpeg 2400w" title="[L3709-z006]FrontExterior" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="51" data-image="https://dam.mihomes.com/media/4265078/50398.jpeg 300w, https://dam.mihomes.com/media/4265078/50397.jpeg 600w, https://dam.mihomes.com/media/4265078/50423.jpeg 900w, https://dam.mihomes.com/media/4265078/50396.jpeg 1200w, https://dam.mihomes.com/media/4265078/50421.jpeg 1800w, https://dam.mihomes.com/media/4265078/50422.jpeg 2400w" data-caption="Backyard - Representational Photo" data-count="<strong>52</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Backyard" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4265078/50421.jpeg?timestamp=2026-01-09T01%3A18%3A17.1307016" srcset="https://dam.mihomes.com/media/4265078/50398.jpeg 300w, https://dam.mihomes.com/media/4265078/50397.jpeg 600w, https://dam.mihomes.com/media/4265078/50423.jpeg 900w, https://dam.mihomes.com/media/4265078/50396.jpeg 1200w, https://dam.mihomes.com/media/4265078/50421.jpeg 1800w, https://dam.mihomes.com/media/4265078/50422.jpeg 2400w" title="[L3709-z001]Backyard" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="52" data-image="https://dam.mihomes.com/media/4265081/50398.jpeg 300w, https://dam.mihomes.com/media/4265081/50397.jpeg 600w, https://dam.mihomes.com/media/4265081/50423.jpeg 900w, https://dam.mihomes.com/media/4265081/50396.jpeg 1200w, https://dam.mihomes.com/media/4265081/50421.jpeg 1800w, https://dam.mihomes.com/media/4265081/50422.jpeg 2400w" data-caption="Backyard - Representational Photo" data-count="<strong>53</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Backyard" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4265081/50421.jpeg?timestamp=2026-01-09T01%3A18%3A18.4667259" srcset="https://dam.mihomes.com/media/4265081/50398.jpeg 300w, https://dam.mihomes.com/media/4265081/50397.jpeg 600w, https://dam.mihomes.com/media/4265081/50423.jpeg 900w, https://dam.mihomes.com/media/4265081/50396.jpeg 1200w, https://dam.mihomes.com/media/4265081/50421.jpeg 1800w, https://dam.mihomes.com/media/4265081/50422.jpeg 2400w" title="[L3709-z003]Backyard" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="53" data-image="https://dam.mihomes.com/media/4263182/50398.jpeg 300w, https://dam.mihomes.com/media/4263182/50397.jpeg 600w, https://dam.mihomes.com/media/4263182/50423.jpeg 900w, https://dam.mihomes.com/media/4263182/50396.jpeg 1200w, https://dam.mihomes.com/media/4263182/50421.jpeg 1800w, https://dam.mihomes.com/media/4263182/50422.jpeg 2400w" data-caption="Kitchen - Representational Photo" data-count="<strong>54</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4263182/50421.jpeg?timestamp=2026-01-08T01%3A15%3A27.5776219" srcset="https://dam.mihomes.com/media/4263182/50398.jpeg 300w, https://dam.mihomes.com/media/4263182/50397.jpeg 600w, https://dam.mihomes.com/media/4263182/50423.jpeg 900w, https://dam.mihomes.com/media/4263182/50396.jpeg 1200w, https://dam.mihomes.com/media/4263182/50421.jpeg 1800w, https://dam.mihomes.com/media/4263182/50422.jpeg 2400w" title="[L3709-z011]Kitchen" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="54" data-image="https://dam.mihomes.com/media/4263194/50398.jpeg 300w, https://dam.mihomes.com/media/4263194/50397.jpeg 600w, https://dam.mihomes.com/media/4263194/50423.jpeg 900w, https://dam.mihomes.com/media/4263194/50396.jpeg 1200w, https://dam.mihomes.com/media/4263194/50421.jpeg 1800w, https://dam.mihomes.com/media/4263194/50422.jpeg 2400w" data-caption="Family Room - Representational Photo" data-count="<strong>55</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Family Room" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4263194/50421.jpeg?timestamp=2026-01-08T01%3A16%3A03.7274895" srcset="https://dam.mihomes.com/media/4263194/50398.jpeg 300w, https://dam.mihomes.com/media/4263194/50397.jpeg 600w, https://dam.mihomes.com/media/4263194/50423.jpeg 900w, https://dam.mihomes.com/media/4263194/50396.jpeg 1200w, https://dam.mihomes.com/media/4263194/50421.jpeg 1800w, https://dam.mihomes.com/media/4263194/50422.jpeg 2400w" title="[L3709-z016]FamilyRoom" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="55" data-image="https://dam.mihomes.com/media/4263210/50398.jpeg 300w, https://dam.mihomes.com/media/4263210/50397.jpeg 600w, https://dam.mihomes.com/media/4263210/50423.jpeg 900w, https://dam.mihomes.com/media/4263210/50396.jpeg 1200w, https://dam.mihomes.com/media/4263210/50421.jpeg 1800w, https://dam.mihomes.com/media/4263210/50422.jpeg 2400w" data-caption="Bedroom - Representational Photo" data-count="<strong>56</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4263210/50421.jpeg?timestamp=2026-01-08T01%3A18%3A11.3100209" srcset="https://dam.mihomes.com/media/4263210/50398.jpeg 300w, https://dam.mihomes.com/media/4263210/50397.jpeg 600w, https://dam.mihomes.com/media/4263210/50423.jpeg 900w, https://dam.mihomes.com/media/4263210/50396.jpeg 1200w, https://dam.mihomes.com/media/4263210/50421.jpeg 1800w, https://dam.mihomes.com/media/4263210/50422.jpeg 2400w" title="[L3709-z024]Bedroom" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="56" data-image="https://dam.mihomes.com/media/4263205/50398.jpeg 300w, https://dam.mihomes.com/media/4263205/50397.jpeg 600w, https://dam.mihomes.com/media/4263205/50423.jpeg 900w, https://dam.mihomes.com/media/4263205/50396.jpeg 1200w, https://dam.mihomes.com/media/4263205/50421.jpeg 1800w, https://dam.mihomes.com/media/4263205/50422.jpeg 2400w" data-caption="Owner's Bathroom - Representational Photo" data-count="<strong>57</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owner's Bathroom" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4263205/50421.jpeg?timestamp=2026-01-08T01%3A18%3A04.3284083" srcset="https://dam.mihomes.com/media/4263205/50398.jpeg 300w, https://dam.mihomes.com/media/4263205/50397.jpeg 600w, https://dam.mihomes.com/media/4263205/50423.jpeg 900w, https://dam.mihomes.com/media/4263205/50396.jpeg 1200w, https://dam.mihomes.com/media/4263205/50421.jpeg 1800w, https://dam.mihomes.com/media/4263205/50422.jpeg 2400w" title="[L3709-z026]OwnersBathroom" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="57" data-image="https://dam.mihomes.com/media/4263211/50398.jpeg 300w, https://dam.mihomes.com/media/4263211/50397.jpeg 600w, https://dam.mihomes.com/media/4263211/50423.jpeg 900w, https://dam.mihomes.com/media/4263211/50396.jpeg 1200w, https://dam.mihomes.com/media/4263211/50421.jpeg 1800w, https://dam.mihomes.com/media/4263211/50422.jpeg 2400w" data-caption="Family Room - Representational Photo" data-count="<strong>58</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Family Room" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4263211/50421.jpeg?timestamp=2026-01-08T01%3A18%3A13.4067756" srcset="https://dam.mihomes.com/media/4263211/50398.jpeg 300w, https://dam.mihomes.com/media/4263211/50397.jpeg 600w, https://dam.mihomes.com/media/4263211/50423.jpeg 900w, https://dam.mihomes.com/media/4263211/50396.jpeg 1200w, https://dam.mihomes.com/media/4263211/50421.jpeg 1800w, https://dam.mihomes.com/media/4263211/50422.jpeg 2400w" title="[L3709-z021]FamilyRoom" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="58" data-image="https://dam.mihomes.com/media/4263185/50398.jpeg 300w, https://dam.mihomes.com/media/4263185/50397.jpeg 600w, https://dam.mihomes.com/media/4263185/50423.jpeg 900w, https://dam.mihomes.com/media/4263185/50396.jpeg 1200w, https://dam.mihomes.com/media/4263185/50421.jpeg 1800w, https://dam.mihomes.com/media/4263185/50422.jpeg 2400w" data-caption="Bedroom - Representational Photo" data-count="<strong>59</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4263185/50421.jpeg?timestamp=2026-01-08T01%3A15%3A32.8543809" srcset="https://dam.mihomes.com/media/4263185/50398.jpeg 300w, https://dam.mihomes.com/media/4263185/50397.jpeg 600w, https://dam.mihomes.com/media/4263185/50423.jpeg 900w, https://dam.mihomes.com/media/4263185/50396.jpeg 1200w, https://dam.mihomes.com/media/4263185/50421.jpeg 1800w, https://dam.mihomes.com/media/4263185/50422.jpeg 2400w" title="[L3709-z007]Bedroom" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="59" data-image="https://dam.mihomes.com/media/4263177/50398.jpeg 300w, https://dam.mihomes.com/media/4263177/50397.jpeg 600w, https://dam.mihomes.com/media/4263177/50423.jpeg 900w, https://dam.mihomes.com/media/4263177/50396.jpeg 1200w, https://dam.mihomes.com/media/4263177/50421.jpeg 1800w, https://dam.mihomes.com/media/4263177/50422.jpeg 2400w" data-caption="Bathroom - Representational Photo" data-count="<strong>60</strong> of <strong>60</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bathroom" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4263177/50421.jpeg?timestamp=2026-01-08T01%3A15%3A19.7899964" srcset="https://dam.mihomes.com/media/4263177/50398.jpeg 300w, https://dam.mihomes.com/media/4263177/50397.jpeg 600w, https://dam.mihomes.com/media/4263177/50423.jpeg 900w, https://dam.mihomes.com/media/4263177/50396.jpeg 1200w, https://dam.mihomes.com/media/4263177/50421.jpeg 1800w, https://dam.mihomes.com/media/4263177/50422.jpeg 2400w" title="[L3709-z001]Bathroom" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ </ul>
+ <div class="gallery-slide__footer">
+ <span class="gallery-slide__title title-caption"></span>
+ <div class="gallery-slide__share-buttons">
+ <span class="count"></span>
+ </div>
+ </div>
+ </div>
+ </div>
+</div><script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Product",
+ "additionalType": "https://schema.org/SingleFamilyResidence",
+ "name": "4717 Lava Island Drive",
+ "sku": "C3sUs8VXGUmMOZBxsJh-FA",
+ "description": "Check out this impressive new home at 4717 Lava Island Drive in Austin, TX. This two-story residence offers a spacious and smart layout that perfectly balances busy social areas with quiet private retreats across two levels of living space.",
+ "image": [
+ "https://dam.mihomes.com/media/4974219/50421.jpeg",
+ "https://dam.mihomes.com/media/4974246/50421.jpeg",
+ "https://dam.mihomes.com/media/4974253/50421.jpeg",
+ "https://dam.mihomes.com/media/4974254/50421.jpeg",
+ "https://dam.mihomes.com/media/4974245/50421.jpeg",
+ "https://dam.mihomes.com/media/4974259/50421.jpeg",
+ "https://dam.mihomes.com/media/4974238/50421.jpeg",
+ "https://dam.mihomes.com/media/4974241/50421.jpeg",
+ "https://dam.mihomes.com/media/4974239/50421.jpeg",
+ "https://dam.mihomes.com/media/4974258/50421.jpeg",
+ "https://dam.mihomes.com/media/4974249/50421.jpeg",
+ "https://dam.mihomes.com/media/4974240/50421.jpeg",
+ "https://dam.mihomes.com/media/4974248/50421.jpeg",
+ "https://dam.mihomes.com/media/4974247/50421.jpeg",
+ "https://dam.mihomes.com/media/4974260/50421.jpeg",
+ "https://dam.mihomes.com/media/4974256/50421.jpeg",
+ "https://dam.mihomes.com/media/4974242/50421.jpeg",
+ "https://dam.mihomes.com/media/4974257/50421.jpeg",
+ "https://dam.mihomes.com/media/4974243/50421.jpeg",
+ "https://dam.mihomes.com/media/4974244/50421.jpeg",
+ "https://dam.mihomes.com/media/4767210/50421.jpeg",
+ "https://dam.mihomes.com/media/4767212/50421.jpeg",
+ "https://dam.mihomes.com/media/4767214/50421.jpeg",
+ "https://dam.mihomes.com/media/4853446/50421.jpeg",
+ "https://dam.mihomes.com/media/4853447/50421.jpeg",
+ "https://dam.mihomes.com/media/4853448/50421.jpeg",
+ "https://dam.mihomes.com/media/4928379/50421.jpeg",
+ "https://dam.mihomes.com/media/4928383/50421.jpeg",
+ "https://dam.mihomes.com/media/4928388/50421.jpeg",
+ "https://dam.mihomes.com/media/4928390/50421.jpeg",
+ "https://dam.mihomes.com/media/4928392/50421.jpeg",
+ "https://dam.mihomes.com/media/4928397/50421.jpeg",
+ "https://dam.mihomes.com/media/4928398/50421.jpeg",
+ "https://dam.mihomes.com/media/4928403/50421.jpeg",
+ "https://dam.mihomes.com/media/4928401/50421.jpeg",
+ "https://dam.mihomes.com/media/4928402/50421.jpeg",
+ "https://dam.mihomes.com/media/4928404/50421.jpeg",
+ "https://dam.mihomes.com/media/4928405/50421.jpeg",
+ "https://dam.mihomes.com/media/4928408/50421.jpeg",
+ "https://dam.mihomes.com/media/4928409/50421.jpeg",
+ "https://dam.mihomes.com/media/4928410/50421.jpeg",
+ "https://dam.mihomes.com/media/4928411/50421.jpeg",
+ "https://dam.mihomes.com/media/4928415/50421.jpeg",
+ "https://dam.mihomes.com/media/4928416/50421.jpeg",
+ "https://dam.mihomes.com/media/4928418/50421.jpeg",
+ "https://dam.mihomes.com/media/4928419/50421.jpeg",
+ "https://dam.mihomes.com/media/4928421/50421.jpeg",
+ "https://dam.mihomes.com/media/4928422/50421.jpeg",
+ "https://dam.mihomes.com/media/4974250/50421.jpeg",
+ "https://dam.mihomes.com/media/4974251/50421.jpeg",
+ "https://dam.mihomes.com/media/4265083/50421.jpeg",
+ "https://dam.mihomes.com/media/4265078/50421.jpeg",
+ "https://dam.mihomes.com/media/4265081/50421.jpeg",
+ "https://dam.mihomes.com/media/4263182/50421.jpeg",
+ "https://dam.mihomes.com/media/4263194/50421.jpeg",
+ "https://dam.mihomes.com/media/4263210/50421.jpeg",
+ "https://dam.mihomes.com/media/4263205/50421.jpeg",
+ "https://dam.mihomes.com/media/4263211/50421.jpeg",
+ "https://dam.mihomes.com/media/4263185/50421.jpeg",
+ "https://dam.mihomes.com/media/4263177/50421.jpeg"
+ ],
+ "url": "https://www.mihomes.com/new-homes/texas/greater-austin/austin/cascades-at-onion-creek/falcon-plan/4717-lava-island-drive",
+ "brand": {
+ "@type": "Organization",
+ "parentOrganization": {
+ "@type": "Organization",
+ "name": "M/I Homes"
+ },
+ "name": "Cascades at Onion Creek"
+ },
+ "address": {
+ "@type": "PostalAddress",
+ "streetAddress": "4717 Lava Island Drive",
+ "addressLocality": "Austin",
+ "addressRegion": "TX",
+ "postalCode": "78747",
+ "addressCountry": "US"
+ },
+ "geo": {
+ "@type": "GeoCoordinates",
+ "latitude": 30.1271637619853,
+ "longitude": -97.7894700544911
+ },
+ "telephone": "+15122650288",
+ "offers": {
+ "@type": "Offer",
+ "url": "/new-homes/texas/greater-austin/austin/cascades-at-onion-creek/falcon-plan/4717-lava-island-drive",
+ "price": "404990.00",
+ "priceCurrency": "USD",
+ "priceValidUntil": "08-12-2026",
+ "itemCondition": "https://schema.org/NewCondition",
+ "availability": "https://schema.org/InStock"
+ },
+ "model": "https://www.mihomes.com/new-homes/texas/greater-austin/austin/cascades-at-onion-creek/falcon-plan",
+ "numberOfBedrooms": {
+ "@type": "Integer",
+ "value": 4
+ },
+ "numberOfFullBathrooms": {
+ "@type": "Integer",
+ "value": 2
+ },
+ "numberOfPartialBathrooms": {
+ "@type": "Integer",
+ "value": 1
+ },
+ "petsAllowed": true,
+ "yearBuilt": "2026",
+ "floorSize": {
+ "@type": "QuantitativeValue",
+ "value": 2323,
+ "unitCode": "FTK"
+ }
+}</script>
+<div class="modals" data-modal-container aria-hidden="true">
+ <div class="modal box" data-modal id="signup-modal">
+ <button class="modal-close" data-modal-close>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+
+ <h2 class="h1 alt">Sign up for an M/I Homes account</h2>
+ <p>Save your favorite home plans and communities, compare home plans and share your dream home with sales associates and real estate agents.</p>
+ <p>
+ Already a member?
+ <a class="button-plain" href="/account/login">Log In to your account »</a>
+ </p>
+ <a class="button button-wide" href="/account/register">
+ <span class="button-text">
+ Sign up with email
+ </span>
+ </a>
+ </div>
+</div>
+
+<div class="product-header" data-yes="true">
+
+ <div class="product-header-row product-header__top">
+
+ <div class="product-header-centered ">
+ <div>
+ <a href="/new-homes/texas/greater-austin/austin/cascades-at-onion-creek" class="button-plain">
+ Cascades at Onion Creek
+ </a>
+
+ <h1 class="header-seo-h2">
+ 4717 Lava Island Drive, Austin, TX 78747
+ <button class="aux-nav-link button-favorite-product gami-favorite-save" data-favorite-type="Home" data-favorite-id="b3147b0b-57c5-4919-8c39-9071b0987e14" data-favorite-fav-id="b3147b0b-57c5-4919-8c39-9071b0987e14" data-add-favorite>
+ <svg class="icon icon-favorite" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#favorite"></use>
+</svg>
+ <span class="aux-nav-link-action-text">
+ Favorite
+ </span>
+ </button>
+ </h1>
+ </div>
+
+ <div class="product-header__actions">
+ <a class="button button-mobile-link button-virtual-tour event-click" href="https://my.matterport.com/show/?m=feAMYWCDUpk" target="_blank" data-event-category=VirtualTour
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <span class="button-text">Virtual Tour</span>
+ </a>
+ </div>
+ </div>
+ </div>
+
+ <div class="product-header-row">
+ <div class="product-header-centered tooptip-container">
+ <div>
+ <dl>
+ <dt>Ready date:</dt>
+ <dd>
+ <strong class="current-size">
+ Ready Now
+ </strong>
+ </dd>
+ </dl>
+ </div>
+ <div class="product-header-price">
+
+ Price:
+ <span class="home-card-price-old">$427,040</span>
+ <span class="product-header-price-new" content="404990">$404,990</span>
+
+ (
+ <span data-open-modal="mortgage-payment-calculator-modal" data-tooltip="Click estimate to see how we calculate this monthly payment" data-annualinsurance="100" data-taxrate="0" data-interestrate="4.875" data-downpayment="3.5" data-price="404990" data-mortgage-monthly-payment tabindex="0" class="product-header-price-monthly"></span>
+ )
+
+
+ <span class="product-header-calculator">
+ <a class="button-plain button-plain-icon small button-icon-right gami-mortcalc-view" data-open-modal="mortgage-payment-calculator-modal">
+ <svg class="icon icon-calculator" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#calculator"></use>
+</svg>
+ Estimate Your Monthly Payment
+ </a>
+ </span>
+ </div>
+ </div>
+ </div>
+</div> <a rel="noopener" href="/new-homes/texas/greater-austin/austin/cascades-at-onion-creek/plat map?lot=262123003916" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=4800 Seadrift Drive, Austin, TX 78747&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=TVAW5An_ijls6jn68Y1SHd-CD0Y=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+<div class="product-header-centered product-header-centered--contact-card-only">
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Cascades at Onion Creek Sales Office</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://www.google.com/maps/dir/?api=1&destination=30.1271637619853,-97.7894700544911">
+ 2701 Sebring Circle<br>Austin, TX 78747
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+</div><div class="product-header">
+ <div class="product-header product-header-navigation">
+ <nav class="product-header-subnav" data-subnav="">
+ <div class="product-header-subnav-wrapper">
+ <div class="product-header-subnav-mobile-bottom">
+ <a class="button button-contact-us" href="/support/sales">
+ <span class="button-text">
+ Contact Us
+ </span>
+ </a>
+ </div>
+
+
+ <a class="product-header-subnav-toggle subnav-link" data-subnav-toggle="">
+ <span class="text" data-subnav-text="">Overview</span>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </a>
+
+ <ul class="product-header-subnav-links" data-subnav-links=""></ul>
+ </div>
+ </nav>
+
+ <div class="product-header-subnav-spacer"></div>
+
+ <a href="#overview" class="product-header__back-to-top is-hidden" data-back-to-top>
+ <div class="arrow arrow--up"></div>
+ </a>
+ </div>
+</div><section class="content-inner-with-sidebar content-inner-with-sidebar-right">
+
+
+ <div class="content-inner-content">
+
+
+
+
+
+<section class="plan-specification">
+ <h2 class="plan-specification__header">
+ About 4717 Lava Island Drive
+ </h2>
+ <a class="plan-specification__get-directions button-plain button-plain-alt negative-top gami-directions-exit" target="_blank" href="https://www.google.com/maps/search/?api=1&query=30.1271637619853,-97.7894700544911">Get Directions</a>
+ <ul class="plan-specification__list">
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sq-ft" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sq-ft"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">square feet</span>
+ <strong class="plan-specification-item__value">
+ 2,323
+ </strong>
+ </div>
+ </li>
+ <li class="stories-specification">
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-homes" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#homes"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">stories</span>
+ <strong class="plan-specification-item__value">
+ 2
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-bed" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#bed"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">bedrooms</span>
+ <strong class="plan-specification-item__value">
+ 4
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-shower" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#shower"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">full bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 2
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sink" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sink"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">half bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 1
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-car" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#car"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">garages</span>
+ <strong class="plan-specification-item__value">
+ 2
+ <span data-tooltip="The most common approach to a home's garage, the front load garage incorporates the garage entry into a home's front elevation.">(Front Load)</span>
+
+ </strong>
+ </div>
+ </li>
+ </ul>
+</section>
+
+<div class="overview-table">
+ <div class="overview-table-table">
+ <dl>
+ <dt>City</dt>
+ <dd>Austin, TX</dd>
+
+ <dt>Owner's Suite</dt>
+ <dd>First Floor</dd>
+
+ <dt>County</dt>
+ <dd>Travis</dd>
+
+ <dt>Home Type</dt>
+ <dd>Single Family Home</dd>
+
+ <dt>School District</dt>
+ <dd>Austin ISD</dd>
+
+ <dt>Foundation Type</dt>
+ <dd>Slab</dd>
+
+ <dt>Home Plan</dt>
+ <dd>Falcon</dd>
+
+ <dt>MLS Number</dt>
+ <dd>9658337</dd>
+
+ <dt>Homesite</dt>
+ <dd>3916</dd>
+
+ <dt> Base Plan Width & Depth</dt>
+ <dd>34.4 x 56.8 </dd>
+ </dl>
+ </div>
+</div>
+<article class="faq__question-item faq__question-item--mobile-only">
+ <button class="faq__question" data-expander="" aria-controls="community-series-teaser" aria-expanded="false">
+ <span class="faq__icon-wrapper">
+ <span class="faq__icon gami-directions-view">
+ <svg class="icon icon-arrow" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#arrow"></use>
+</svg>
+ </span>
+ </span>
+ Part of the Smart Series
+ <span class="show-hide-text hidden-text">Hide</span>
+ </button>
+ <div class="faq__answer preview-box preview-box--series-tout" id="community-series-teaser" role="region" tabindex="-1">
+ <a class="preview-box__image preview-box__preview one-fourth" href="/new-homes/texas/greater-austin/austin/cascades-at-onion-creek/series/smart-series">
+ <img data-dam-generated alt="Preview image" height="1600" loading="lazy" sizes="(min-width: 48rem) 193px, 100vw" src="https://dam.mihomes.com/media/2309247/50396.jpeg?timestamp=2024-09-17T14%3A30%3A33.4374943" srcset="https://dam.mihomes.com/media/2309247/50398.jpeg?timestamp=2024-09-17T14%3A30%3A25.9810620 300w, https://dam.mihomes.com/media/2309247/50397.jpeg?timestamp=2024-09-17T14%3A30%3A24.7207649 600w, https://dam.mihomes.com/media/2309247/50423.jpeg?timestamp=2024-09-17T14%3A30%3A33.1601917 900w, https://dam.mihomes.com/media/2309247/50396.jpeg?timestamp=2024-09-17T14%3A30%3A33.4374943 1200w, https://dam.mihomes.com/media/2309247/50421.jpeg?timestamp=2024-09-17T14%3A30%3A30.8029695 1800w, https://dam.mihomes.com/media/2309247/50422.jpeg?timestamp=2024-09-17T14%3A30%3A42.2764126 2400w" title="AUST-Abilene-ElevationC-Brick-Gen3-elev_DAY" width="2400" class="cover-image" />
+ </a>
+ <div class="preview-box__content ">
+ <div class="preview-box__text__series-teaser">
+ <h3>Part of the Smart Series</h3>
+ <p>
+ With plans ranging from 1,553–2,778 square feet and 3–5 bedrooms, our Smart Series homes offer spacious, versatile living for every lifestyle. Enjoy professionally curated design packages that make styling effortless, along with energy efficient features that save you money for years to come.
+ </p>
+ </div>
+ <p>
+ <a class="button" href="/new-homes/texas/greater-austin/austin/cascades-at-onion-creek/series/smart-series">Learn More</a>
+ </p>
+ </div>
+ </div>
+</article> <h2>
+ New 4-Bedroom Home for Sale in Austin, Texas
+ </h2>
+ <div class="content-inner-content__capped-mobile-content">
+ <p>Check out this impressive new home at 4717 Lava Island Drive in Austin, TX. This two-story residence offers a spacious and smart layout that perfectly balances busy social areas with quiet private retreats across two levels of living space.</p>
+<strong>Key Features:</strong><br />
+• 4 generous bedrooms, including a private owner’s suite located on the first floor<br />
+• 2 full bathrooms plus a well-placed half bath for guests and daily convenience<br />
+• 2,323 square feet of functional living space distributed throughout the home<br />
+• Open-concept main hub that joins the kitchen and family room for a connected feel<br />
+• Brand-new construction featuring modern energy standards and high-quality craftsmanship<br />
+<br />
+<strong>Neighborhood & Location Benefits:</strong><br />
+• Situated in a sought-after Austin community with a welcoming, residential vibe<br />
+• Near local parks and green spaces, ideal for outdoor enthusiasts and fresh air<br />
+• A premier location that balances a quiet home life with easy access to city services<br />
+<p>The heart of the home is the expansive main-floor living area, where the kitchen and family room flow together for a comfortable, airy feel. While the primary suite offers a tucked-away retreat on the first level, the second story houses the additional bedrooms, giving family members their own dedicated floor. This multi-level configuration is ideal for those who want to keep the sleeping quarters separate from the heart of the home.</p>
+<p>With its practical floorplan and move-in-ready features, this home provides a comfortable and stylish environment for your next chapter.</p>
+<p>Schedule your tour today.</p>
+
+ <!-- and done -->
+ <h3>
+ About the Community
+ </h3>
+ <p>
+ Cascades at Onion Creek in South Austin offers new single family homes in a convenient location just off I‑35, with quick access to Downtown Austin. The community is part of Austin ISD, making it appealing for a range of homeowners seeking comfort and connection.
+
+Thoughtfully designed Smart Series floorplans provide modern layouts with flexible spaces that adapt to your lifestyle. Homes sit on 50‑foot homesites and blend practical design with inviting style.
+
+At the heart of the neighborhood, residents enjoy a pool with a tanning ledge, a splash pad, a playscape, a dog park, and shaded gathering areas that create a welcoming place to unwind and meet neighbors.
+
+With its accessible location, well‑planned amenities, and contemporary home designs, Cascades at Onion Creek offers a balanced South Austin lifestyle close to everything you need.
+ <br />
+ <a class="button-plain button-plain-alt" href="/new-homes/texas/greater-austin/austin/cascades-at-onion-creek">Learn more about this community »</a>
+ </p>
+ </div>
+ <button class="faq__question color-aqua" aria-expanded="false" data-read-more="">
+ <span class="faq__icon-wrapper">
+ <span class="faq__icon">
+ <svg class="icon icon-arrow" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#arrow"></use>
+</svg>
+ </span>
+ </span>
+ <span data-read-more-collapsed="">Read More</span>
+ <span data-read-more-expanded="">Show Less</span>
+ <span class="show-hide-text hidden-text">Show</span>
+ </button>
+ <div class="matterport-wrapper">
+ <iframe loading="lazy" class="box-full" width="803" height="480" src="https://my.matterport.com/show/?m=H7pTr4BdVv6" frameborder="0" allowfullscreen allow="vr" style="align-self: center" data-subnav-page-link="3D Tour" id="3dTour"></iframe>
+ </div>
+
+
+
+ </div>
+
+ <div class="content-sidebar-right">
+ <a rel="noopener" href="/new-homes/texas/greater-austin/austin/cascades-at-onion-creek/plat map?lot=262123003916" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=4800 Seadrift Drive, Austin, TX 78747&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=TVAW5An_ijls6jn68Y1SHd-CD0Y=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Cascades at Onion Creek Sales Office</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://www.google.com/maps/dir/?api=1&destination=30.1271637619853,-97.7894700544911">
+ 2701 Sebring Circle<br>Austin, TX 78747
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+
+
+ <figure class="lead-form lead-form-sidebar lead-form-sidebar--compact lead-form-sidebar-signup">
+ <div class="lead-form-container">
+ <div id="lead-sidebar-header" class="lead-form-sidebar-header lead-form-sidebar-header-image">
+ <div id="isa-information" data-sidebar-section="1">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="vescobedo@mihomes.com-0627202506.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3307272/50421.jpeg?timestamp=2025-06-27T10%3A55%3A23.8134313" srcset="https://dam.mihomes.com/media/3307272/50398.jpeg?timestamp=2025-06-27T10%3A55%3A22.0491671 300w, https://dam.mihomes.com/media/3307272/50397.jpeg?timestamp=2025-06-27T10%3A55%3A21.9994951 600w, https://dam.mihomes.com/media/3307272/50423.jpeg?timestamp=2025-06-27T10%3A55%3A24.3943122 900w, https://dam.mihomes.com/media/3307272/50396.jpeg?timestamp=2025-06-27T10%3A55%3A21.9990722 1200w, https://dam.mihomes.com/media/3307272/50421.jpeg?timestamp=2025-06-27T10%3A55%3A23.8134313 1800w, https://dam.mihomes.com/media/3307272/50422.jpeg?timestamp=2025-06-27T10%3A55%3A23.9812354 2400w" title="vescobedo@mihomes.com-0627202506" width="96" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="amoore@mihomes.com-0627202506.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3307273/50421.jpeg?timestamp=2025-06-27T10%3A55%3A27.1280435" srcset="https://dam.mihomes.com/media/3307273/50398.jpeg?timestamp=2025-06-27T10%3A55%3A28.1689021 300w, https://dam.mihomes.com/media/3307273/50397.jpeg?timestamp=2025-06-27T10%3A55%3A28.6732007 600w, https://dam.mihomes.com/media/3307273/50423.jpeg?timestamp=2025-06-27T10%3A55%3A29.7473420 900w, https://dam.mihomes.com/media/3307273/50396.jpeg?timestamp=2025-06-27T10%3A55%3A26.5784159 1200w, https://dam.mihomes.com/media/3307273/50421.jpeg?timestamp=2025-06-27T10%3A55%3A27.1280435 1800w, https://dam.mihomes.com/media/3307273/50422.jpeg?timestamp=2025-06-27T10%3A55%3A27.6258427 2400w" title="amoore@mihomes.com-0627202506" width="96" class="cover-image" />
+ </div>
+ </div>
+ <h3 class="">Have questions for us?</h3>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=5122650288'>(512) 265-0288</a>
+ </p>
+ </div>
+ <div id="form-agent-header" class="lead-form-sidebar-section right" style="display: none;">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+
+ </div>
+ <div class="lead-form-sidebar-form" data-lead-form-sidebar="">
+ <div class="lead-form-sidebar-errors"></div>
+<form action="/api/LeadGenFormSidebar/LeadGenFormSidebar" data-gami-event="gami-form-question" data-parsley-validate="" data-sidebar-hidden-required="" data-sidebar-nav-check="visit_sidebar" method="post" name="basic_sidebar" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="b0cb8f77-209a-4968-843e-5587dc52480a" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Inventory" /><input id="PostType" name="PostType" type="hidden" value="sidebar" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:38 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="ItemId" name="ItemId" type="hidden" value="b3147b0b-57c5-4919-8c39-9071b0987e14" /><input id="HomeType" name="HomeType" type="hidden" value="Single Family Home" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 443px;">
+ <div class="align-left center lead-form-sidebar-section" data-cta="Request Information" data-sidebar-section="0">
+ <div>
+
+ <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="">
+ </div>
+
+ <div class="form-field no-label-errors" style="margin-top: 1px">
+ <label for="fullname_sidebar"></label>
+ <input type="text"
+ name="FormFullName"
+ id="fullname_sidebar"
+ placeholder="Full Name"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required." data-parsley-trigger="blur"
+ maxlength="60"
+ data-parsley-filter-emoji=""
+ >
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormEmailAddress"
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="phone_sidebar">Phone Number</label>
+ <input class="gami-tel" type="tel"
+ autocomplete="tel-national"
+ name="FormPhoneNumber"
+ id="phone_sidebar"
+ placeholder="Phone Number" +
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ value=""
+
+ data-parsley-phone-number="" data-parsley-trigger="blur"
+ maxlength="25">
+ </div>
+
+ <div class="form-field no-label-errors">
+ <label for="comments_sidebar">Questions or Comments</label>
+ <textarea rows="5"
+ name="FormComments"
+ id="comments_sidebar"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000">Please send me information about 4717 Lava Island Drive</textarea>
+ </div>
+ </div>
+ <div>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox hide" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input data-parsley-multiple="visit_sidebar" name="visit_sidebar" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to plan a visit</span>
+ </label>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormEmailOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSAssociateCommunicationsOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" data-sidebar-section="1" tabindex="-1">
+ <div>
+ <h4>Plan a visit</h4>
+ <p>Select your preferred day and time and we’ll help set up the perfect visit.</p>
+ </div>
+ <div>
+ <div class="select no-label-errors">
+ <label for="tripday_sidebar"> </label>
+ <div class="select-wrap">
+<select data-nested-select="#select-triptime-block-sidebar" data-parsley-group="visit_sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+
+ <div class="select no-label-errors">
+ <label for="triptime_sidebar"> </label>
+ <div class="select-wrap">
+<select data-parsley-group="visit_sidebar" id="triptime_sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" dta-cta="Continue" data-sidebar-section="2" data-agent-section tabindex="-1">
+
+ <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0">
+ <div class="align-left center lead-form-sidebar-section" data-sidebar-section="0">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button form-submit">
+ <span class="button-text">Request Information</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-left lead-form-sidebar-section right" data-sidebar-section="1">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit" disabled tabindex="-1">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="2">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button" disabled tabindex="-1">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit" disabled tabindex="-1">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+ </div>
+ </div>
+</form> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 25px;">
+ <div class="align-center center lead-form-sidebar-section" data-sidebar-section="0">
+ <button class="button-plain small" data-open-modal="privacy-policy-modal" href="javascript:void()">Privacy Policy</button>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="1">
+ <button class="button-plain small" data-sidebar-nav="0" tabindex="-1">« Go Back</button>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <!-- THANK YOU MESSAGE -->
+ <div class="lead-form-container-success">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-success lead-form-sidebar-header-image">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" data-parsley-validate="" method="POST" name="thanksyou_sidebar" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+ <div>
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+ <div class="form-field form-field-password">
+ <label for="password"> </label>
+ <input data-parsley-required-message="Password is required." data-parsley-valid-password="" id="password" minlength="8" name="password" placeholder="Password" required="" type="password" data-parsley-filter-emoji="" data-parsley-trigger="blur">
+ <button class="password-input-change" data-input-change="" type="button">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)" tabindex="0">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">
+ Create Account
+ </span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+
+</div>
+</section>
+
+ <div id="design" class="box box-full box-no-padding-bottom" data-subnav-page-link="Design Options">
+ <div class="content-inner-centered">
+ <h2>Add the perfect finishing touch</h2>
+ <p class="subtitle content-inner-centered-narrow negative-top">
+ Put your personal touch on these Quick Move-In Homes with some selections from our Design Studio.
+ </p>
+ <div class="button-tooltip-wrapper">
+ <a class="button button-tooltip event-click" href="https://edc.envisionoptions.com/browser.aspx?NHTNumber=MIHOMES&Loc1=100&Lev1=CORP&Loc2=262&Lev2=DIV&HomeNumber=12E8FE&Page=Confirmselection&utm_source=mihomes.com&utm_campaign=&utm_content=cascades-at-onion-creek-Falcon-4717-Lava-Island-Drive&utm_term=" target="_blank" data-event-category=OptionsGallery
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ See This Home's Options
+ </a>
+
+
+ </div>
+ <a class="button" href="/design/design-studio">
+ <span class="button-text">
+ Visit a Design Studio
+ </span>
+ </a>
+ </div>
+ </div>
+ <div class="box box-full box-no-padding-top">
+ <div class="contained-width">
+ <hr class="hr-even">
+
+ <h4>Incentives</h4>
+ <article class="preview-box ">
+ <a class="preview-box-link" href="/new-homes/texas/greater-austin/incentives/2026-save-by-the-bell">
+ <div class="preview-box__image preview-box__preview one-third">
+ <img data-dam-generated alt="Save by the Bell | Reusable Banner Block" height="400" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/205398/50421.jpeg" srcset="https://dam.mihomes.com/media/205398/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/205398/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/205398/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w" title="Save-By-the-Bell-600x400" width="600" class="cover-image" maxwidth="900" />
+ </div>
+ <div class="preview-box__content">
+ <h3 class="h3 preview-box__header">
+ Save Before The Bell Rings
+ <span class="preview-box__separator">|</span>
+ <time datetime="">Aug 6-31, 2026</time>
+
+
+ </h3>
+ <p class="preview-box__text">Save by the Bell and move into a new home before the school year begins. Enjoy open spaces for backpacks to land, homework to get done, and backyards made for after school adventures. Make the move before the bell rings and start the school year in a place your family will love.</p>
+ <p>
+ <span class="button-plain button-plain-alt" href="/new-homes/texas/greater-austin/incentives/2026-save-by-the-bell">View Details »</span>
+ </p>
+ </div>
+ </a>
+ </article>
+ </div>
+ </div>
+
+ <div id="floor" class="box box-full box-last event-inview" data-subnav-page-link="FloorPlan" data-event-category=Floorplan
+ data-event-action=scroll
+ data-event-label=view
+>
+ <div class="content-inner-centered content-inner-centered--mobile">
+<img data-dam-generated alt="Falcon Floorplan " height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/2309269/50396.jpeg?timestamp=2024-09-17T14%3A43%3A08.9325449" srcset="https://dam.mihomes.com/media/2309269/50398.jpeg?timestamp=2024-09-17T14%3A43%3A11.0824166 300w, https://dam.mihomes.com/media/2309269/50397.jpeg?timestamp=2024-09-17T14%3A43%3A10.9977810 600w, https://dam.mihomes.com/media/2309269/50423.jpeg?timestamp=2024-09-17T14%3A43%3A16.5866723 900w, https://dam.mihomes.com/media/2309269/50396.jpeg?timestamp=2024-09-17T14%3A43%3A08.9325449 1200w, https://dam.mihomes.com/media/2309269/50421.jpeg?timestamp=2024-09-17T14%3A43%3A14.2715752 1800w, https://dam.mihomes.com/media/2309269/50422.jpeg?timestamp=2024-09-17T14%3A43%3A16.8037806 2400w" title="AUST-S404-falcon-35smartimpervious-print" width="1800" class="cover-image cover-image--abs" /> <h2>Floorplan Options for Your New Home</h2>
+ <p class="content-inner-centered-narrow negative-top subtitle">The Falcon accommodates a variety of household living arrangements with its highly desired flexibility and modern design. Explore the many possibilities in the popular Falcon plan.</p>
+ <a target="_blank" class="button floor-plan-options__button event-click" href="https://rifp.ml3ds-icon.com/#/floorplan/503739" data-event-category=Floorplan
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <svg class="icon icon-fullscreen" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#fullscreen"></use>
+</svg>
+ <span class="button-text">
+ Show Floorplan
+ </span>
+ </a>
+ </div>
+ <section class="floor-plan-options">
+ <iframe loading="lazy" id="floor-plan" data-fullsize class="floor-plan-options__iframe" data-src="https://rifp.ml3ds-icon.com/#/floorplan/503739" scrolling="no" style="overflow: hidden">
+ <p>Your browser does not support iframes.</p>
+ </iframe>
+ </section>
+ </div>
+
+ <div class="box box-full box-no-padding-top-bottom " id="">
+ <div class="content-inner-centered">
+ <div class="leadgenTitleBlock">
+ <h2 class="h2">Ready to plan a visit? We can help</h2>
+ <p class="subtitle marginless">Send us your preferred time to stop by and a sales representative will take care of the rest</p>
+ </div>
+ <section class="lead-form">
+ <div id="lead-form-block-user-info" class="lead-form-container lead-form-block" data-lead-form-sidebar="">
+ <aside class="lead-form-block__details" style="">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="vescobedo@mihomes.com-0627202506.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3307272/50421.jpeg?timestamp=2025-06-27T10%3A55%3A23.8134313" srcset="https://dam.mihomes.com/media/3307272/50398.jpeg?timestamp=2025-06-27T10%3A55%3A22.0491671 300w, https://dam.mihomes.com/media/3307272/50397.jpeg?timestamp=2025-06-27T10%3A55%3A21.9994951 600w, https://dam.mihomes.com/media/3307272/50423.jpeg?timestamp=2025-06-27T10%3A55%3A24.3943122 900w, https://dam.mihomes.com/media/3307272/50396.jpeg?timestamp=2025-06-27T10%3A55%3A21.9990722 1200w, https://dam.mihomes.com/media/3307272/50421.jpeg?timestamp=2025-06-27T10%3A55%3A23.8134313 1800w, https://dam.mihomes.com/media/3307272/50422.jpeg?timestamp=2025-06-27T10%3A55%3A23.9812354 2400w" title="vescobedo@mihomes.com-0627202506" width="96" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="amoore@mihomes.com-0627202506.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3307273/50421.jpeg?timestamp=2025-06-27T10%3A55%3A27.1280435" srcset="https://dam.mihomes.com/media/3307273/50398.jpeg?timestamp=2025-06-27T10%3A55%3A28.1689021 300w, https://dam.mihomes.com/media/3307273/50397.jpeg?timestamp=2025-06-27T10%3A55%3A28.6732007 600w, https://dam.mihomes.com/media/3307273/50423.jpeg?timestamp=2025-06-27T10%3A55%3A29.7473420 900w, https://dam.mihomes.com/media/3307273/50396.jpeg?timestamp=2025-06-27T10%3A55%3A26.5784159 1200w, https://dam.mihomes.com/media/3307273/50421.jpeg?timestamp=2025-06-27T10%3A55%3A27.1280435 1800w, https://dam.mihomes.com/media/3307273/50422.jpeg?timestamp=2025-06-27T10%3A55%3A27.6258427 2400w" title="amoore@mihomes.com-0627202506" width="96" class="cover-image" />
+ </div>
+ </div>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=5122650288'>(512) 265-0288</a>
+ </p>
+ </aside>
+<form action="/api/LeadGenFormBlock/LeadGenFormBlock" class="lead-form-block__form" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="b0cb8f77-209a-4968-843e-5587dc52480a" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Model" /><input id="PostType" name="PostType" type="hidden" value="block" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:38 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="FormAgentEmailAddress" name="FormAgentEmailAddress" type="hidden" value="" /><input id="ItemId" name="ItemId" type="hidden" value="b3147b0b-57c5-4919-8c39-9071b0987e14" /><input id="HomeType" name="HomeType" type="hidden" value="Single Family Home" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="" hidden>
+ </div>
+ <div class="form-field">
+ <label for="fullname">Full Name </label>
+ <input type="text"
+ name="FormFullName"
+ placeholder="John Doe"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required."
+ maxlength="60"
+
+ data-parsley-filter-emoji=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="emailaddress">Email Address </label>
+ <input type="email"
+ name="FormEmailAddress" ,
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field">
+ <label for="phone">Phone Number </label>
+ <input class="gami-tel" type="tel"
+ name="FormPhoneNumber"
+ id="phone"
+ placeholder="5555555555"
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ maxlength="25"
+ value=""
+
+ data-parsley-phone-number=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="input">Questions or Comments </label>
+ <textarea rows="5"
+ name="FormComments"
+ id="input"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000"></textarea>
+ </div>
+ <div class="lead-form-block__contacts">
+ <div class="form-field select" {="">
+ <label for="tripday_block">Preferred Day <em> (Optional)</em></label>
+ <div class="select-wrap">
+ <div class="select-wrap">
+<select date-nested-select="#select-triptime-block-sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+
+ <div class="form-field select" {="">
+ <label for="triptime_block">Preferred Time <em> (Optional)</em></label>
+ <div class="select-wrap">
+
+<select id="select-triptime-block-sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-block__checkboxes-container">
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormEmailOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSAssociateCommunicationsOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ <div class="lead-form-block__submit">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+
+ <span class="align-center">
+ <a class="button-plain small" data-open-modal="privacy-policy-modal">Privacy Policy</a>
+ </span>
+ </div>
+</form> </div>
+ <div id="lead-form-block-agent-form" class="lead-form-container lead-form-block" data-lead-form-sidebar="" data-agent-section style="display: none;">
+ <figure class="lead-form lead-form-sidebar">
+ <div id="form-agent-header" class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+<form action="/new-homes/texas/greater-austin/austin/cascades-at-onion-creek/falcon-plan/4717-lava-island-drive" class="lead-form-sidebar-section" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""> <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ id="block-agent-email"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+</form> </div>
+ </figure>
+ </div>
+
+
+
+ <div class="lead-form-container-success">
+ <figure class="lead-form lead-form-sidebar">
+ <div class="lead-form-container-success" style="display: block">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" method="POST" name="thanksyou_sidebar" data-parsley-validate="" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+
+ <div>
+ <div class="form-field form-field-password">
+ <label for="password"></label>
+ <input type="password"
+ name="password"
+ id="password"
+ placeholder="Password"
+ data-parsley-valid-password=""
+ minlength="8"
+ required=""
+ data-parsley-required-message="Password is required."
+ data-parsley-trigger="blur">
+
+ <button type="button" class="password-input-change" data-input-change="">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span tabindex="0"
+ data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">Create Account</span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ </div>
+ </section>
+ </div>
+ </div>
+
+ <div class="box box-centered box-full box-transparent" id="neraby">
+ <div class="box-full-inner">
+ <h3 class="h2">
+ Other Quick Move-In Homes
+ </h3>
+
+ <div class="featured-grid">
+ <div class="row">
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/texas/greater-austin/austin/cascades-at-onion-creek/falcon-plan/12004-dillon-falls-drive">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Front Exterior" height="1536" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/5137224/50422.jpeg?timestamp=2026-08-10T05%3A37%3A12.5577635" srcset="https://dam.mihomes.com/media/5137224/50398.jpeg?timestamp=2026-08-10T05%3A37%3A10.3998850 300w, https://dam.mihomes.com/media/5137224/50397.jpeg?timestamp=2026-08-10T05%3A37%3A09.8023715 600w, https://dam.mihomes.com/media/5137224/50423.jpeg?timestamp=2026-08-10T05%3A37%3A15.0885004 900w, https://dam.mihomes.com/media/5137224/50396.jpeg?timestamp=2026-08-10T05%3A37%3A08.6645659 1200w, https://dam.mihomes.com/media/5137224/50421.jpeg?timestamp=2026-08-10T05%3A37%3A15.1279731 1800w, https://dam.mihomes.com/media/5137224/50422.jpeg?timestamp=2026-08-10T05%3A37%3A12.5577635 2400w" title="[L3309-z001]FrontExterior" width="2048" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Falcon</p>
+ <p class="featured-grid-middle">12004 Dillon Falls Drive, Austin, Texas</p>
+ <p class="featured-grid-subtitle">Listed at $409,990</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/texas/greater-austin/austin/cascades-at-onion-creek/falcon-plan/4721-lava-island-drive">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Falcon Elevation C " height="1600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/2309240/50421.jpeg?timestamp=2024-09-17T14%3A29%3A55.8807834" srcset="https://dam.mihomes.com/media/2309240/50398.jpeg?timestamp=2024-09-17T14%3A29%3A54.0226175 300w, https://dam.mihomes.com/media/2309240/50397.jpeg?timestamp=2024-09-17T14%3A29%3A52.7711846 600w, https://dam.mihomes.com/media/2309240/50423.jpeg?timestamp=2024-09-17T14%3A29%3A59.6641732 900w, https://dam.mihomes.com/media/2309240/50396.jpeg?timestamp=2024-09-17T14%3A29%3A51.4122747 1200w, https://dam.mihomes.com/media/2309240/50421.jpeg?timestamp=2024-09-17T14%3A29%3A55.8807834 1800w, https://dam.mihomes.com/media/2309240/50422.jpeg?timestamp=2024-09-17T14%3A29%3A57.0665861 2400w" title="AUST-Falcon-ElevationC-Gen3-elev_DAY" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Falcon</p>
+ <p class="featured-grid-middle">4721 Lava Island Drive, Austin, Texas</p>
+ <p class="featured-grid-subtitle">Listed at $426,990</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/texas/greater-austin/austin/cascades-at-onion-creek/falcon-plan/4517-bridal-veil-drive">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Falcon Elevation C " height="1600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/2309240/50421.jpeg?timestamp=2024-09-17T14%3A29%3A55.8807834" srcset="https://dam.mihomes.com/media/2309240/50398.jpeg?timestamp=2024-09-17T14%3A29%3A54.0226175 300w, https://dam.mihomes.com/media/2309240/50397.jpeg?timestamp=2024-09-17T14%3A29%3A52.7711846 600w, https://dam.mihomes.com/media/2309240/50423.jpeg?timestamp=2024-09-17T14%3A29%3A59.6641732 900w, https://dam.mihomes.com/media/2309240/50396.jpeg?timestamp=2024-09-17T14%3A29%3A51.4122747 1200w, https://dam.mihomes.com/media/2309240/50421.jpeg?timestamp=2024-09-17T14%3A29%3A55.8807834 1800w, https://dam.mihomes.com/media/2309240/50422.jpeg?timestamp=2024-09-17T14%3A29%3A57.0665861 2400w" title="AUST-Falcon-ElevationC-Gen3-elev_DAY" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Falcon</p>
+ <p class="featured-grid-middle">4517 Bridal Veil Drive, Austin, Texas</p>
+ <p class="featured-grid-subtitle">Listed at $429,990</p>
+ </a>
+</div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ </main>
+
+
+<footer class="main-footer">
+ <div class="main-footer-inner">
+ <ul class="horizontal-list">
+ <li><a href="https://apply.workable.com/mi-homes/" target="_blank" rel="noopener noreferrer" >Careers</a></li>
+ <li><a href="/support/warranty" >Warranty</a></li>
+ <li><a href="https://investors.mihomes.com/" rel="noopener noreferrer" title="Investor Relations" target="_blank" >Investors</a></li>
+ <li><a href="/events" >Events</a></li>
+ <li><a href="/incentives" >Incentives</a></li>
+ <li><a href="/agent/agent-info" >Agents & Brokers</a></li>
+ <li><a href="/resources" >Home Buying Resources</a></li>
+ <li><a href="/why-mi/journey" >Journey</a></li>
+ <li><a href="/blog/" >Blog</a></li>
+ </ul>
+ <ul class="horizontal-list">
+ <li><a href="/policies/privacy-policy" >Privacy Policy</a></li>
+ <li><a href="/policies/terms-of-use" >Terms of Use</a></li>
+ <li><a href="/subscriptions" >Manage Subscriptions</a></li>
+ <li><a href="/support/ccpa" >CCPA</a></li>
+ </ul>
+ <ul class="icon-list">
+ <li>
+<a href="https://www.instagram.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Instagram" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704717/50399.png" srcset="https://dam.mihomes.com/media/4704717/50399.png?timestamp=2026-05-04T18%3A56%3A58.4036491 300w, https://dam.mihomes.com/media/4704717/50420.png 600w" title="instagram" width="24" /></a> </li>
+ <li>
+<a href="https://www.facebook.com/MIHomesInc/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Facebook" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57191/50399.png" srcset="https://dam.mihomes.com/media/57191/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57191/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="facebook" width="24" /></a> </li>
+ <li>
+<a href="https://www.youtube.com/MIHomesInc" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Youtube" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704715/50399.png" srcset="https://dam.mihomes.com/media/4704715/50399.png?timestamp=2026-05-04T18%3A34%3A30.5730196 300w, https://dam.mihomes.com/media/4704715/50420.png 600w" title="youtube" width="24" /></a> </li>
+ <li>
+<a href="https://www.pinterest.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Pinterest" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57192/50399.png" srcset="https://dam.mihomes.com/media/57192/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57192/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="pintrest" width="24" /></a> </li>
+ <li>
+<a href="http://www.houzz.com/pro/mi-homes/m-i-homes" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Houzz" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57193/50399.png" srcset="https://dam.mihomes.com/media/57193/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57193/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="houzz" width="24" /></a> </li>
+ <li>
+<a href="http://portal.hud.gov" class="" rel="me" target="_blank" ><img data-dam-generated alt="Equal Housing" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704718/50399.png" srcset="https://dam.mihomes.com/media/4704718/50399.png?timestamp=2026-05-04T19%3A02%3A51.2896193 300w, https://dam.mihomes.com/media/4704718/50420.png 600w" title="equal-housing" width="28" /></a> </li>
+ </ul>
+ <p class="main-footer-copyright">
+ Copyright 2026, M/I Homes, Inc. All rights reserved.
+ </p>
+ <p id="division-disclaimer" class="main-footer-copyright">
+
+
+ </p>
+ </div>
+</footer>
+</div>
+<div aria-label="Cookie Consent" role="dialog" id="ccpa-modal" class="ccpa-modal">
+ <p>By browsing, you accept our <a href="/policies/terms-of-use">terms of use</a> and <a href="/policies/privacy-policy">privacy policy</a>.</p>
+ <button class="button" type="button">OK</button>
+</div>
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/modals.css?ver=202608092245" rel="stylesheet" fetchpriority="low">
+ <div class="modal modal-wide box" data-modal="" id="privacy-policy-modal">
+ <button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div id="privacy-policy-text"></div>
+</div><div class="modal box box-wide box-paddingless" data-modal="" id="mortgage-payment-calculator-modal">
+<button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+</button>
+ <div id="mortgage-payment-calculator" data-price="404990" data-values="e45dcede-23f5-43b0-bb81-22ac0c444fee"></div>
+</div>
+ <div class="modal" data-modal id="search-modal">
+ <form action="/search" class="search-form ">
+ <input class="search-form-input" id="search-form-input" name="search" placeholder="Search M/I Homes"
+ type="search" />
+ <button class="button search-form-clear-button" type="button">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+
+ </button>
+ <button class="button search-form-submit" type="submit">
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ <div class="search-form-results">
+ <div class="search-form-results-list"></div>
+ </div>
+ </form>
+ </div>
+</div>
+
+<!-- toolkit scripts -->
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit_common.js?ver=202608092245"></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit.js?ver=202608092245"></script>
+ <script src="https://cdn.mihomes.com/assets/toolkit/js/product.js?ver=202608092245"></script>
+ <script defer src="https://cdn.mihomes.com/assets/toolkit/js/mortgage-calculator.js?ver=202608092245"></script>
+<script>window.jQuery = window.$ = window.JQUERY;</script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/common.js?ver=202608092245" defer></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/favorites.js?ver=202608092245" defer></script>
+
+
+<script>
+ var w = Math.max(
+ document.body.scrollWidth,
+ document.documentElement.scrollWidth,
+ document.body.offsetWidth,
+ document.documentElement.offsetWidth,
+ document.documentElement.clientWidth
+ );
+ window.setCookie('screen-width', encodeURIComponent(w), { expires: 14, path: "/" })
+ </script>
+
+<script>
+
+
+</script>
+<script type="text/javascript">
+ const millisecondsPerDay = 86400000;
+ const millisecondsPerHour = millisecondsPerDay / 24;
+ const millisecondsPerMinute = millisecondsPerHour / 60;
+ const millisecondsPerSecond = 1000;
+ function addLeadingZero(val) {
+ if(val.toString().length < 2) {
+ return '0'+val;
+ }
+ return val;
+ }
+ function change() {
+ const list = Array.from(document.querySelectorAll('[data-countdown]'));
+ const now = new Date().getTime();
+ list.forEach((el) => {
+ const d = new Date(el.getAttribute('data-countdown')).getTime();
+ let diff = d - now;
+ let days = 0;
+ let hours = 0;
+ let minutes = 0;
+ let seconds = 0;
+ if(diff > 0) {
+ days = Math.floor(diff / millisecondsPerDay);
+ diff = diff - (days * millisecondsPerDay)
+ hours = Math.floor(diff/millisecondsPerHour);
+ diff = diff - (hours * millisecondsPerHour)
+ minutes = Math.floor(diff/millisecondsPerMinute);
+ diff = diff - (minutes * millisecondsPerMinute);
+ seconds = Math.floor(diff/millisecondsPerSecond);
+ }
+ try {
+ el.querySelector('.days').innerText = addLeadingZero(Math.max(days, 0));
+
+ } catch (e) {}
+ try {
+ el.querySelector('.hours').innerText = addLeadingZero(Math.max(hours, 0));
+ } catch(e) {}
+ try {
+ el.querySelector('.minutes').innerText = addLeadingZero(Math.max(minutes, 0));
+ } catch (e) {}
+ try {
+ el.querySelector('.seconds').innerText = addLeadingZero(Math.max(seconds, 0));
+ } catch (e) {}
+
+ });
+ setTimeout(()=>requestAnimationFrame(change), millisecondsPerSecond);
+ }
+ requestAnimationFrame(change);
+</script>
+<script>(function(){function c(){var b=a.contentDocument||(a.contentWindow&&a.contentWindow.document);if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'a29496134a8cb74c',t:'MTc4NjQyMzQ3OA=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
+
+</html>
\ No newline at end of file
diff --git a/collectors/mi-homes/fixtures/homes/h12.html b/collectors/mi-homes/fixtures/homes/h12.html
new file mode 100644
index 00000000..2d33f80e
--- /dev/null
+++ b/collectors/mi-homes/fixtures/homes/h12.html
@@ -0,0 +1,2244 @@
+
+
+<!doctype html>
+<html lang="en">
+
+<head>
+
+ <script>
+ var G = G || {};
+ G.pingForEmployee = true;
+ </script>
+
+
+<meta name="VIcurrentDateTime" content="639220202813276812" />
+<meta name="VirtualFolder" content="/" />
+<script type="text/javascript" src="/layouts/system/VisitorIdentification.js"></script>
+
+
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" name="viewport">
+ <title>New Home in West Chester Township - The Allen - M/I Homes</title>
+ <!-- font -->
+ <link rel="preconnect" href="https://cdn.mihomes.com" crossorigin>
+ <link rel="preconnect" href="https://use.typekit.net" crossorigin>
+
+
+
+<!-- Google Tag Script -->
+
+ <script id="js-GTM-script">
+ window.dataLayer = window.dataLayer || [];
+ window.dataLayer.push({
+ "PageType": "Spec",
+ "MIAccount": "No",
+ "Division": "Cincinnati"
+});
+
+(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=
+'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
+})(window,document,'script','dataLayer','GTM-M2JH3QJ');
+ </script>
+
+
+<!-- End Google Tag Script -->
+ <meta name="referrer" content="always" />
+
+ <link href="https://use.typekit.net/sgt3sit.css" rel="stylesheet" type="text/css" media="print" onload="this.media='all'" id="fonts-loaded" />
+
+<script>
+ try {
+ document.fonts.ready.then(() => {
+ document.body.classList.add('body--fonts-loaded');
+ if(window.setCookiie) {
+ window.setCookie('fonts-cached', 'true', { expires: 7, path: '/' });
+ }
+ });
+ } catch (e) { }
+</script>
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/toolkit.css?ver=202608092245" type="text/css" rel="stylesheet">
+ <!-- conditionally load css for blog -->
+
+ <script>
+ window.environment = "Prod";
+ window.googleApiKey = "REDACTED-THIRD-PARTY-PUBLIC-KEY";
+ </script>
+ <script>
+
+ window.maps =[];
+ window.AssetRootUrl = 'https://cdn.mihomes.com';
+
+ </script>
+
+ <meta name="twitter:card" content="summary" />
+<meta name="twitter:site" content="@mihomes" />
+<meta name="twitter:creator" content="@mihomes">
+
+<meta property="og:site_name" content="https://www.mihomes.com" />
+<meta property="og:type" content="article" />
+<meta property="og:url" content="https://www.mihomes.com/new-homes/ohio/greater-cincinnati/west-chester/grandway/allen-plan/7219-grandway-drive" />
+
+
+ <meta property="og:title" content="7219 Grandway Drive" />
+ <meta name="twitter:title" content="7219 Grandway Drive" />
+
+
+
+ <meta property="og:description" content="Discover the Allen model townhome at 7219 Grandway Drive in West Chester Township, Ohio—a modern, low‑maintenance home by M/I Homes designed for comfort, style, and everyday ease. This beautifully decorated model showcases 3 bedrooms, 2.5 bathrooms, and 1,464 square feet of thoughtfully planned living space across two levels." />
+ <meta name="twitter:description" content="Discover the Allen model townhome at 7219 Grandway Drive in West Chester Township, Ohio—a modern, low‑maintenance home by M/I Homes designed for comfort, style, and everyday ease. This beautifully decorated model showcases 3 bedrooms, 2.5 bathrooms, and 1,464 square feet of thoughtfully planned living space across two levels." />
+ <meta name="description" content="Discover the Allen model townhome at 7219 Grandway Drive in West Chester Township, Ohio—a modern, low‑maintenance home by M/I Homes designed for comfort, style, and everyday ease. This beautifully decorated model showcases 3 bedrooms, 2.5 bathrooms, and 1,464 square feet of thoughtfully planned living space across two levels." />
+
+
+
+ <link rel="canonical" href="https://www.mihomes.com/new-homes/ohio/greater-cincinnati/west-chester/grandway/allen-plan/7219-grandway-drive">
+ <link defer href="https://dam.mihomes.com/media/4179716/50399.png" rel="icon" type="image/vnd.microsoft.icon" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="57x57"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-57x57.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="114x114"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-114x114.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="72x72"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-72x72.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="144x144"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-144x144.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="60x60"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-60x60.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="120x120"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-120x120.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="76x76"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-76x76.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="152x152"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-152x152.png" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-196x196.png"
+ sizes="196x196" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-96x96.png"
+ sizes="96x96" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-32x32.png"
+ sizes="32x32" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-16x16.png"
+ sizes="16x16" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-128.png"
+ sizes="128x128" />
+ <meta name="application-name" content=" " />
+ <meta name="msapplication-TileColor" content="#FFFFFF" />
+ <meta name="msapplication-TileImage" content="https://cdn.mihomes.com/assets/favicons/images/mstile-144x144.png" />
+ <meta name="msapplication-square70x70logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-70x70.png" />
+ <meta name="msapplication-square150x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-150x150.png" />
+ <meta name="msapplication-wide310x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x150.png" />
+ <meta name="msapplication-square310x310logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x310.png" />
+
+ <script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Organization",
+ "foundingDate": "1976",
+ "duns": "071649743",
+ "founders": [
+ {
+ "@type": "Person",
+ "name": "Melvin Schottenstein"
+ },
+ {
+ "@type": "Person",
+ "name": "Irving Schottenstein"
+ }
+ ],
+ "employees": [
+ {
+ "@type": "Person",
+ "name": "Robert H. Schottenstein",
+ "jobTitle": "Chairman, President, and CEO"
+ }
+ ],
+ "sameAs": [
+ "https://www.facebook.com/MIHomesInc",
+ "https://twitter.com/mihomes",
+ "https://www.instagram.com/mihomes/",
+ "https://www.youtube.com/MIHomesInc",
+ "https://www.houzz.com/pro/mi-homes/m-i-homes",
+ "https://www.pinterest.com/mihomes/"
+ ],
+ "logo": {
+ "@type": "ImageObject",
+ "name": "M/I Homes logo",
+ "contentUrl": "https://dam.mihomes.com/media/39664/50399.png"
+ },
+ "name": "M/I Homes",
+ "description": "M/I Homes, Inc. founded in 1976, M/I Homes is one of nation's leading builders of single family homes. M/I has established an exemplary reputation based on a strong commitment to superior customer service, innovative design, quality construction and premium locations. Listed on the New York Stock Exchange, M/I Homes serves a broad segment of the housing market including first-time, move-up, luxury and empty nester buyers.",
+ "url": "https://www.mihomes.com",
+ "isicv4": "4100"
+}</script>
+ <script defer src="https://www.youtube.com/iframe_api"></script>
+ <script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
+ <script>
+ window.addEventListener('load', () => {
+ const swUrl = "https://cdn.mihomes.com/assets/workers/product-page-service-worker.js"
+ navigator.serviceWorker
+ .register(swUrl, {
+ scope: '/'
+ })
+ .then(registration => {
+ console.log('Service Worker registered with scope:', registration.scope);
+ })
+ .catch(error => {
+ console.error('Error during service worker registration:', error);
+ });
+ });
+ </script>
+</head>
+
+<body class="no-js body--home-template">
+
+
+
+<!-- Google Tag Manager --><!-- Global site tag (gtag.js) - Google Analytics -->
+
+ <noscript>
+ <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M2JH3QJ"
+ height="0" width="0" style="display: none; visibility: hidden">
+ </iframe>
+ </noscript>
+
+<!-- End Google Tag Manager GTMM2JH3QJ -->
+<a class="skip-link" href="#content">Skip To Content</a>
+
+<div class="page-container">
+ <div id="overview" data-subnav-page-link="Overview"></div>
+
+
+<header class="main-header">
+ <div class="main-header-inner">
+<a href="/" class="main-header-logo" > <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png">
+<svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg></a> <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png" />
+ <button class="main-header-open-nav" data-open-nav="" title="Toggle Hamburger Navigation">
+ <svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg>
+ <svg class="icon icon-menu" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#menu"></use>
+</svg>
+ </button>
+ <div class="main-header-nav-items" data-a11y-focus data-nav-tray>
+ <nav class="main-nav">
+ <ul>
+ <li>
+
+ <a href="/" class="main-nav-link mobile-only" >Home</a>
+ </li>
+ <li>
+
+ <a href="/new-homes/ohio/greater-cincinnati" class="main-nav-link find-a-home-link" >Find a Home</a>
+ </li>
+ <li>
+
+ <a href="/about-us/overview" class="main-nav-link " >About</a>
+ </li>
+ <li>
+
+ <a href="/why-mi/overview" class="main-nav-link " >Why M/I</a>
+ </li>
+ <li>
+
+ <a href="/incentives" class="main-nav-link " >Incentives</a>
+ </li>
+ <li>
+
+ <a href="/financing" class="main-nav-link " >Financing</a>
+ </li>
+ <li>
+
+ <a href="/support/warranty" class="main-nav-link " >Warranty</a>
+ </li>
+ <li>
+
+ <a href="/support" class="main-nav-link " >Contact</a>
+ </li>
+ <li>
+
+ <a href="/resources" class="main-nav-link " >Resources</a>
+ </li>
+ </ul>
+ </nav>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ <div class="aux-nav">
+ <ul>
+ <li data-a11y-focus>
+ <a href="/account/register" class="main-nav-link" >Sign Up</a>
+ </li>
+ <li data-a11y-focus>
+ <a href="/account/login" class="main-nav-link" >Log In</a>
+ </li>
+ </ul>
+ </div>
+ </div>
+ <button class="main-header-close-nav" data-close-nav>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ </div>
+</header>
+ <div class="breadcrumbs-bar">
+ <div class="breadcrumbs-wrapper">
+ <nav class="breadcrumbs">
+ <a class="button-plain" href="/">Home</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/ohio/communities">Ohio</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/ohio/greater-cincinnati/communities">Greater Cincinnati</a>
+ <span class="seperator"> • </span>
+ <span>West Chester</span>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/ohio/greater-cincinnati/west-chester/grandway">Grandway</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/ohio/greater-cincinnati/west-chester/grandway/allen-plan">Allen</a>
+ <span class="seperator"> • </span>
+ <span>7219 Grandway Drive</span>
+ </nav>
+ </div>
+ </div>
+ <script>var bar = document.querySelector('.breadcrumbs-bar'); bar.setAttribute('style', 'height:' + bar.getBoundingClientRect().height + 'px');</script>
+<script type="application/ld+json">
+{
+"@context": "https://schema.org",
+"@type": "BreadcrumbList",
+"itemListElement":[
+{
+"@type":"ListItem",
+"position":1,
+"name":"Ohio",
+"item":"https://www.mihomes.com/new-homes/ohio/communities"
+},
+{
+"@type":"ListItem",
+"position":2,
+"name":"Greater Cincinnati",
+"item":"https://www.mihomes.com/new-homes/ohio/greater-cincinnati/communities"
+},
+{
+"@type":"ListItem",
+"position":3,
+"name":"West Chester",
+
+},
+{
+"@type":"ListItem",
+"position":4,
+"name":"Grandway",
+"item":"https://www.mihomes.com/new-homes/ohio/greater-cincinnati/west-chester/grandway"
+},
+{
+"@type":"ListItem",
+"position":5,
+"name":"Allen",
+"item":"https://www.mihomes.com/new-homes/ohio/greater-cincinnati/west-chester/grandway/allen-plan"
+},
+{
+"@type":"ListItem",
+"position":6,
+"name":"7219 Grandway Drive",
+
+}
+]
+}
+</script>
+
+
+ <div class="page-notice-wrapper" id="page-notification"></div>
+ <main class="main-content" id="content" tabindex="0">
+
+<ul class="product-flags">
+ <li>
+
+
+<div class="product-flag product-flag-default " style="">
+ <span class="product-flag-text">Model</span>
+</div> </li>
+</ul>
+<div class="image-banner">
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <img data-dam-generated alt="Front Exterior " height="4480" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/4717905/50421.jpeg?timestamp=2026-05-06T18%3A27%3A28.0414896" srcset="https://dam.mihomes.com/media/4717905/50398.jpeg?timestamp=2026-05-06T18%3A27%3A20.5842957 300w, https://dam.mihomes.com/media/4717905/50397.jpeg?timestamp=2026-05-06T18%3A27%3A29.2986762 600w, https://dam.mihomes.com/media/4717905/50423.jpeg?timestamp=2026-05-06T18%3A27%3A33.9636315 900w, https://dam.mihomes.com/media/4717905/50396.jpeg?timestamp=2026-05-06T18%3A27%3A28.5248928 1200w, https://dam.mihomes.com/media/4717905/50421.jpeg?timestamp=2026-05-06T18%3A27%3A28.0414896 1800w, https://dam.mihomes.com/media/4717905/50422.jpeg?timestamp=2026-05-06T18%3A27%3A18.2109643 2400w" title="[001-z040]" width="6720" class="image-banner-item-gallery" fetchpriority="high" />
+ </a>
+ <div class="image-banner-more">
+ <a href="#product-gallery"
+ data-goto-slide="1"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="1"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Front Exterior " height="4480" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4693933/50421.jpeg?timestamp=2026-04-30T13%3A47%3A50.2256092" srcset="https://dam.mihomes.com/media/4693933/50398.jpeg?timestamp=2026-04-30T13%3A47%3A43.5139561 300w, https://dam.mihomes.com/media/4693933/50397.jpeg?timestamp=2026-04-30T13%3A47%3A45.1096493 600w, https://dam.mihomes.com/media/4693933/50423.jpeg?timestamp=2026-04-30T13%3A47%3A54.1322352 900w, https://dam.mihomes.com/media/4693933/50396.jpeg?timestamp=2026-04-30T13%3A47%3A39.8280697 1200w, https://dam.mihomes.com/media/4693933/50421.jpeg?timestamp=2026-04-30T13%3A47%3A50.2256092 1800w, https://dam.mihomes.com/media/4693933/50422.jpeg?timestamp=2026-04-30T13%3A47%3A54.7514777 2400w" title="[002-z001]" width="6720" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="2"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="2"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Front Exterior " height="4480" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4693932/50421.jpeg?timestamp=2026-04-30T13%3A47%3A11.1210887" srcset="https://dam.mihomes.com/media/4693932/50398.jpeg?timestamp=2026-04-30T13%3A47%3A03.9629543 300w, https://dam.mihomes.com/media/4693932/50397.jpeg?timestamp=2026-04-30T13%3A47%3A00.3789225 600w, https://dam.mihomes.com/media/4693932/50423.jpeg?timestamp=2026-04-30T13%3A47%3A14.0202988 900w, https://dam.mihomes.com/media/4693932/50396.jpeg?timestamp=2026-04-30T13%3A47%3A00.9026314 1200w, https://dam.mihomes.com/media/4693932/50421.jpeg?timestamp=2026-04-30T13%3A47%3A11.1210887 1800w, https://dam.mihomes.com/media/4693932/50422.jpeg?timestamp=2026-04-30T13%3A47%3A10.6994466 2400w" title="[002-z003]" width="6720" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="3"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="3"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Front Exterior " height="4480" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4693931/50421.jpeg?timestamp=2026-04-30T13%3A47%3A31.5985350" srcset="https://dam.mihomes.com/media/4693931/50398.jpeg?timestamp=2026-04-30T13%3A47%3A23.4973424 300w, https://dam.mihomes.com/media/4693931/50397.jpeg?timestamp=2026-04-30T13%3A47%3A22.5988498 600w, https://dam.mihomes.com/media/4693931/50423.jpeg?timestamp=2026-04-30T13%3A47%3A32.8608200 900w, https://dam.mihomes.com/media/4693931/50396.jpeg?timestamp=2026-04-30T13%3A47%3A17.3244581 1200w, https://dam.mihomes.com/media/4693931/50421.jpeg?timestamp=2026-04-30T13%3A47%3A31.5985350 1800w, https://dam.mihomes.com/media/4693931/50422.jpeg?timestamp=2026-04-30T13%3A47%3A33.6442531 2400w" title="[002-z002]" width="6720" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="4"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="4"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Entryway" height="4480" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4693910/50421.jpeg?timestamp=2026-04-30T13%3A39%3A55.8482414" srcset="https://dam.mihomes.com/media/4693910/50398.jpeg?timestamp=2026-04-30T13%3A39%3A39.1715659 300w, https://dam.mihomes.com/media/4693910/50397.jpeg?timestamp=2026-04-30T13%3A39%3A45.4179927 600w, https://dam.mihomes.com/media/4693910/50423.jpeg?timestamp=2026-04-30T13%3A40%3A00.7353198 900w, https://dam.mihomes.com/media/4693910/50396.jpeg?timestamp=2026-04-30T13%3A39%3A33.2246475 1200w, https://dam.mihomes.com/media/4693910/50421.jpeg?timestamp=2026-04-30T13%3A39%3A55.8482414 1800w, https://dam.mihomes.com/media/4693910/50422.jpeg?timestamp=2026-04-30T13%3A39%3A54.2474582 2400w" title="[002-z004]" width="6720" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="third event-click image-banner-total gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <span class="button button-transparent">
+ View 41 Photos
+ </span>
+ </a>
+ </div>
+</div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Front Exterior " height="4480" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/4717905/50421.jpeg?timestamp=2026-05-06T18%3A27%3A28.0414896" srcset="https://dam.mihomes.com/media/4717905/50398.jpeg?timestamp=2026-05-06T18%3A27%3A20.5842957 300w, https://dam.mihomes.com/media/4717905/50397.jpeg?timestamp=2026-05-06T18%3A27%3A29.2986762 600w, https://dam.mihomes.com/media/4717905/50423.jpeg?timestamp=2026-05-06T18%3A27%3A33.9636315 900w, https://dam.mihomes.com/media/4717905/50396.jpeg?timestamp=2026-05-06T18%3A27%3A28.5248928 1200w, https://dam.mihomes.com/media/4717905/50421.jpeg?timestamp=2026-05-06T18%3A27%3A28.0414896 1800w, https://dam.mihomes.com/media/4717905/50422.jpeg?timestamp=2026-05-06T18%3A27%3A18.2109643 2400w" title="[001-z040]" width="6720" class="image-banner-item-gallery" fetchpriority="high" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Front Exterior " height="4480" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4693933/50421.jpeg?timestamp=2026-04-30T13%3A47%3A50.2256092" srcset="https://dam.mihomes.com/media/4693933/50398.jpeg?timestamp=2026-04-30T13%3A47%3A43.5139561 300w, https://dam.mihomes.com/media/4693933/50397.jpeg?timestamp=2026-04-30T13%3A47%3A45.1096493 600w, https://dam.mihomes.com/media/4693933/50423.jpeg?timestamp=2026-04-30T13%3A47%3A54.1322352 900w, https://dam.mihomes.com/media/4693933/50396.jpeg?timestamp=2026-04-30T13%3A47%3A39.8280697 1200w, https://dam.mihomes.com/media/4693933/50421.jpeg?timestamp=2026-04-30T13%3A47%3A50.2256092 1800w, https://dam.mihomes.com/media/4693933/50422.jpeg?timestamp=2026-04-30T13%3A47%3A54.7514777 2400w" title="[002-z001]" width="6720" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Front Exterior " height="4480" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4693932/50421.jpeg?timestamp=2026-04-30T13%3A47%3A11.1210887" srcset="https://dam.mihomes.com/media/4693932/50398.jpeg?timestamp=2026-04-30T13%3A47%3A03.9629543 300w, https://dam.mihomes.com/media/4693932/50397.jpeg?timestamp=2026-04-30T13%3A47%3A00.3789225 600w, https://dam.mihomes.com/media/4693932/50423.jpeg?timestamp=2026-04-30T13%3A47%3A14.0202988 900w, https://dam.mihomes.com/media/4693932/50396.jpeg?timestamp=2026-04-30T13%3A47%3A00.9026314 1200w, https://dam.mihomes.com/media/4693932/50421.jpeg?timestamp=2026-04-30T13%3A47%3A11.1210887 1800w, https://dam.mihomes.com/media/4693932/50422.jpeg?timestamp=2026-04-30T13%3A47%3A10.6994466 2400w" title="[002-z003]" width="6720" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Front Exterior " height="4480" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4693931/50421.jpeg?timestamp=2026-04-30T13%3A47%3A31.5985350" srcset="https://dam.mihomes.com/media/4693931/50398.jpeg?timestamp=2026-04-30T13%3A47%3A23.4973424 300w, https://dam.mihomes.com/media/4693931/50397.jpeg?timestamp=2026-04-30T13%3A47%3A22.5988498 600w, https://dam.mihomes.com/media/4693931/50423.jpeg?timestamp=2026-04-30T13%3A47%3A32.8608200 900w, https://dam.mihomes.com/media/4693931/50396.jpeg?timestamp=2026-04-30T13%3A47%3A17.3244581 1200w, https://dam.mihomes.com/media/4693931/50421.jpeg?timestamp=2026-04-30T13%3A47%3A31.5985350 1800w, https://dam.mihomes.com/media/4693931/50422.jpeg?timestamp=2026-04-30T13%3A47%3A33.6442531 2400w" title="[002-z002]" width="6720" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Entryway" height="4480" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4693910/50421.jpeg?timestamp=2026-04-30T13%3A39%3A55.8482414" srcset="https://dam.mihomes.com/media/4693910/50398.jpeg?timestamp=2026-04-30T13%3A39%3A39.1715659 300w, https://dam.mihomes.com/media/4693910/50397.jpeg?timestamp=2026-04-30T13%3A39%3A45.4179927 600w, https://dam.mihomes.com/media/4693910/50423.jpeg?timestamp=2026-04-30T13%3A40%3A00.7353198 900w, https://dam.mihomes.com/media/4693910/50396.jpeg?timestamp=2026-04-30T13%3A39%3A33.2246475 1200w, https://dam.mihomes.com/media/4693910/50421.jpeg?timestamp=2026-04-30T13%3A39%3A55.8482414 1800w, https://dam.mihomes.com/media/4693910/50422.jpeg?timestamp=2026-04-30T13%3A39%3A54.2474582 2400w" title="[002-z004]" width="6720" class="image-banner-item-more" />
+ </span>
+ </div>
+
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <div class="modal fullscreen-modal gallery-modal gallery-modal--simple" data-modal="" id="simple-gallery-modal" data-track-views="">
+ <div class="gallery-modal__list-container">
+ <div class="gallery-modal__controls">
+ <button class="close-icon" data-modal-close>
+ <svg class="icon icon-close-gallery" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close-gallery"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__list-container-arrows">
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="prev" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="40" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="next" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="0" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__controls gallery-modal__controls__zoom">
+ <button class="close-icon" data-gallery="simple-gallery-modal" data-zoom>
+ <svg class="icon icon-zoom" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#zoom"></use>
+</svg>
+ </button>
+ </div>
+ <ul class="gallery-modal__list no-transition" style="transform: translateX(-200%);">
+
+ <li class="gallery-slide-container" data-slide-id="0" data-image="https://dam.mihomes.com/media/4717905/50398.jpeg?timestamp=2026-05-06T18%3A27%3A20.5842957 300w, https://dam.mihomes.com/media/4717905/50397.jpeg?timestamp=2026-05-06T18%3A27%3A29.2986762 600w, https://dam.mihomes.com/media/4717905/50423.jpeg?timestamp=2026-05-06T18%3A27%3A33.9636315 900w, https://dam.mihomes.com/media/4717905/50396.jpeg?timestamp=2026-05-06T18%3A27%3A28.5248928 1200w, https://dam.mihomes.com/media/4717905/50421.jpeg?timestamp=2026-05-06T18%3A27%3A28.0414896 1800w, https://dam.mihomes.com/media/4717905/50422.jpeg?timestamp=2026-05-06T18%3A27%3A18.2109643 2400w" data-caption="Front Exterior " data-count="<strong>1</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Front Exterior " height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4717905/50421.jpeg?timestamp=2026-05-06T18%3A27%3A28.0414896" srcset="https://dam.mihomes.com/media/4717905/50398.jpeg?timestamp=2026-05-06T18%3A27%3A20.5842957 300w, https://dam.mihomes.com/media/4717905/50397.jpeg?timestamp=2026-05-06T18%3A27%3A29.2986762 600w, https://dam.mihomes.com/media/4717905/50423.jpeg?timestamp=2026-05-06T18%3A27%3A33.9636315 900w, https://dam.mihomes.com/media/4717905/50396.jpeg?timestamp=2026-05-06T18%3A27%3A28.5248928 1200w, https://dam.mihomes.com/media/4717905/50421.jpeg?timestamp=2026-05-06T18%3A27%3A28.0414896 1800w, https://dam.mihomes.com/media/4717905/50422.jpeg?timestamp=2026-05-06T18%3A27%3A18.2109643 2400w" title="[001-z040]" width="6720" class="image-banner-item-gallery" fetchpriority="high" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="1" data-image="https://dam.mihomes.com/media/4693933/50398.jpeg?timestamp=2026-04-30T13%3A47%3A43.5139561 300w, https://dam.mihomes.com/media/4693933/50397.jpeg?timestamp=2026-04-30T13%3A47%3A45.1096493 600w, https://dam.mihomes.com/media/4693933/50423.jpeg?timestamp=2026-04-30T13%3A47%3A54.1322352 900w, https://dam.mihomes.com/media/4693933/50396.jpeg?timestamp=2026-04-30T13%3A47%3A39.8280697 1200w, https://dam.mihomes.com/media/4693933/50421.jpeg?timestamp=2026-04-30T13%3A47%3A50.2256092 1800w, https://dam.mihomes.com/media/4693933/50422.jpeg?timestamp=2026-04-30T13%3A47%3A54.7514777 2400w" data-caption="Front Exterior " data-count="<strong>2</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Front Exterior " height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693933/50421.jpeg?timestamp=2026-04-30T13%3A47%3A50.2256092" srcset="https://dam.mihomes.com/media/4693933/50398.jpeg?timestamp=2026-04-30T13%3A47%3A43.5139561 300w, https://dam.mihomes.com/media/4693933/50397.jpeg?timestamp=2026-04-30T13%3A47%3A45.1096493 600w, https://dam.mihomes.com/media/4693933/50423.jpeg?timestamp=2026-04-30T13%3A47%3A54.1322352 900w, https://dam.mihomes.com/media/4693933/50396.jpeg?timestamp=2026-04-30T13%3A47%3A39.8280697 1200w, https://dam.mihomes.com/media/4693933/50421.jpeg?timestamp=2026-04-30T13%3A47%3A50.2256092 1800w, https://dam.mihomes.com/media/4693933/50422.jpeg?timestamp=2026-04-30T13%3A47%3A54.7514777 2400w" title="[002-z001]" width="6720" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="2" data-image="https://dam.mihomes.com/media/4693932/50398.jpeg?timestamp=2026-04-30T13%3A47%3A03.9629543 300w, https://dam.mihomes.com/media/4693932/50397.jpeg?timestamp=2026-04-30T13%3A47%3A00.3789225 600w, https://dam.mihomes.com/media/4693932/50423.jpeg?timestamp=2026-04-30T13%3A47%3A14.0202988 900w, https://dam.mihomes.com/media/4693932/50396.jpeg?timestamp=2026-04-30T13%3A47%3A00.9026314 1200w, https://dam.mihomes.com/media/4693932/50421.jpeg?timestamp=2026-04-30T13%3A47%3A11.1210887 1800w, https://dam.mihomes.com/media/4693932/50422.jpeg?timestamp=2026-04-30T13%3A47%3A10.6994466 2400w" data-caption="Front Exterior " data-count="<strong>3</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Front Exterior " height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693932/50421.jpeg?timestamp=2026-04-30T13%3A47%3A11.1210887" srcset="https://dam.mihomes.com/media/4693932/50398.jpeg?timestamp=2026-04-30T13%3A47%3A03.9629543 300w, https://dam.mihomes.com/media/4693932/50397.jpeg?timestamp=2026-04-30T13%3A47%3A00.3789225 600w, https://dam.mihomes.com/media/4693932/50423.jpeg?timestamp=2026-04-30T13%3A47%3A14.0202988 900w, https://dam.mihomes.com/media/4693932/50396.jpeg?timestamp=2026-04-30T13%3A47%3A00.9026314 1200w, https://dam.mihomes.com/media/4693932/50421.jpeg?timestamp=2026-04-30T13%3A47%3A11.1210887 1800w, https://dam.mihomes.com/media/4693932/50422.jpeg?timestamp=2026-04-30T13%3A47%3A10.6994466 2400w" title="[002-z003]" width="6720" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="3" data-image="https://dam.mihomes.com/media/4693931/50398.jpeg?timestamp=2026-04-30T13%3A47%3A23.4973424 300w, https://dam.mihomes.com/media/4693931/50397.jpeg?timestamp=2026-04-30T13%3A47%3A22.5988498 600w, https://dam.mihomes.com/media/4693931/50423.jpeg?timestamp=2026-04-30T13%3A47%3A32.8608200 900w, https://dam.mihomes.com/media/4693931/50396.jpeg?timestamp=2026-04-30T13%3A47%3A17.3244581 1200w, https://dam.mihomes.com/media/4693931/50421.jpeg?timestamp=2026-04-30T13%3A47%3A31.5985350 1800w, https://dam.mihomes.com/media/4693931/50422.jpeg?timestamp=2026-04-30T13%3A47%3A33.6442531 2400w" data-caption="Front Exterior " data-count="<strong>4</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Front Exterior " height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693931/50421.jpeg?timestamp=2026-04-30T13%3A47%3A31.5985350" srcset="https://dam.mihomes.com/media/4693931/50398.jpeg?timestamp=2026-04-30T13%3A47%3A23.4973424 300w, https://dam.mihomes.com/media/4693931/50397.jpeg?timestamp=2026-04-30T13%3A47%3A22.5988498 600w, https://dam.mihomes.com/media/4693931/50423.jpeg?timestamp=2026-04-30T13%3A47%3A32.8608200 900w, https://dam.mihomes.com/media/4693931/50396.jpeg?timestamp=2026-04-30T13%3A47%3A17.3244581 1200w, https://dam.mihomes.com/media/4693931/50421.jpeg?timestamp=2026-04-30T13%3A47%3A31.5985350 1800w, https://dam.mihomes.com/media/4693931/50422.jpeg?timestamp=2026-04-30T13%3A47%3A33.6442531 2400w" title="[002-z002]" width="6720" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="4" data-image="https://dam.mihomes.com/media/4693910/50398.jpeg?timestamp=2026-04-30T13%3A39%3A39.1715659 300w, https://dam.mihomes.com/media/4693910/50397.jpeg?timestamp=2026-04-30T13%3A39%3A45.4179927 600w, https://dam.mihomes.com/media/4693910/50423.jpeg?timestamp=2026-04-30T13%3A40%3A00.7353198 900w, https://dam.mihomes.com/media/4693910/50396.jpeg?timestamp=2026-04-30T13%3A39%3A33.2246475 1200w, https://dam.mihomes.com/media/4693910/50421.jpeg?timestamp=2026-04-30T13%3A39%3A55.8482414 1800w, https://dam.mihomes.com/media/4693910/50422.jpeg?timestamp=2026-04-30T13%3A39%3A54.2474582 2400w" data-caption="Entryway" data-count="<strong>5</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Entryway" height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693910/50421.jpeg?timestamp=2026-04-30T13%3A39%3A55.8482414" srcset="https://dam.mihomes.com/media/4693910/50398.jpeg?timestamp=2026-04-30T13%3A39%3A39.1715659 300w, https://dam.mihomes.com/media/4693910/50397.jpeg?timestamp=2026-04-30T13%3A39%3A45.4179927 600w, https://dam.mihomes.com/media/4693910/50423.jpeg?timestamp=2026-04-30T13%3A40%3A00.7353198 900w, https://dam.mihomes.com/media/4693910/50396.jpeg?timestamp=2026-04-30T13%3A39%3A33.2246475 1200w, https://dam.mihomes.com/media/4693910/50421.jpeg?timestamp=2026-04-30T13%3A39%3A55.8482414 1800w, https://dam.mihomes.com/media/4693910/50422.jpeg?timestamp=2026-04-30T13%3A39%3A54.2474582 2400w" title="[002-z004]" width="6720" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="5" data-image="https://dam.mihomes.com/media/4693908/50398.jpeg 300w, https://dam.mihomes.com/media/4693908/50397.jpeg 600w, https://dam.mihomes.com/media/4693908/50423.jpeg 900w, https://dam.mihomes.com/media/4693908/50396.jpeg 1200w, https://dam.mihomes.com/media/4693908/50421.jpeg 1800w, https://dam.mihomes.com/media/4693908/50422.jpeg 2400w" data-caption="Family Room" data-count="<strong>6</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Family Room" height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693908/50421.jpeg?timestamp=2026-04-30T13%3A38%3A43.4437971" srcset="https://dam.mihomes.com/media/4693908/50398.jpeg 300w, https://dam.mihomes.com/media/4693908/50397.jpeg 600w, https://dam.mihomes.com/media/4693908/50423.jpeg 900w, https://dam.mihomes.com/media/4693908/50396.jpeg 1200w, https://dam.mihomes.com/media/4693908/50421.jpeg 1800w, https://dam.mihomes.com/media/4693908/50422.jpeg 2400w" title="[002-z005]" width="6720" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="6" data-image="https://dam.mihomes.com/media/4693905/50398.jpeg 300w, https://dam.mihomes.com/media/4693905/50397.jpeg 600w, https://dam.mihomes.com/media/4693905/50423.jpeg 900w, https://dam.mihomes.com/media/4693905/50396.jpeg 1200w, https://dam.mihomes.com/media/4693905/50421.jpeg 1800w, https://dam.mihomes.com/media/4693905/50422.jpeg 2400w" data-caption="Family Room" data-count="<strong>7</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Family Room" height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693905/50421.jpeg?timestamp=2026-04-30T13%3A39%3A17.2597634" srcset="https://dam.mihomes.com/media/4693905/50398.jpeg 300w, https://dam.mihomes.com/media/4693905/50397.jpeg 600w, https://dam.mihomes.com/media/4693905/50423.jpeg 900w, https://dam.mihomes.com/media/4693905/50396.jpeg 1200w, https://dam.mihomes.com/media/4693905/50421.jpeg 1800w, https://dam.mihomes.com/media/4693905/50422.jpeg 2400w" title="[002-z006]" width="6720" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="7" data-image="https://dam.mihomes.com/media/4693911/50398.jpeg 300w, https://dam.mihomes.com/media/4693911/50397.jpeg 600w, https://dam.mihomes.com/media/4693911/50423.jpeg 900w, https://dam.mihomes.com/media/4693911/50396.jpeg 1200w, https://dam.mihomes.com/media/4693911/50421.jpeg 1800w, https://dam.mihomes.com/media/4693911/50422.jpeg 2400w" data-caption="Kitchen" data-count="<strong>8</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693911/50421.jpeg?timestamp=2026-04-30T13%3A40%3A23.6446449" srcset="https://dam.mihomes.com/media/4693911/50398.jpeg 300w, https://dam.mihomes.com/media/4693911/50397.jpeg 600w, https://dam.mihomes.com/media/4693911/50423.jpeg 900w, https://dam.mihomes.com/media/4693911/50396.jpeg 1200w, https://dam.mihomes.com/media/4693911/50421.jpeg 1800w, https://dam.mihomes.com/media/4693911/50422.jpeg 2400w" title="[002-z007]" width="6720" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="8" data-image="https://dam.mihomes.com/media/4693913/50398.jpeg 300w, https://dam.mihomes.com/media/4693913/50397.jpeg 600w, https://dam.mihomes.com/media/4693913/50423.jpeg 900w, https://dam.mihomes.com/media/4693913/50396.jpeg 1200w, https://dam.mihomes.com/media/4693913/50421.jpeg 1800w, https://dam.mihomes.com/media/4693913/50422.jpeg 2400w" data-caption="Kitchen" data-count="<strong>9</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693913/50421.jpeg?timestamp=2026-04-30T13%3A41%3A05.3370296" srcset="https://dam.mihomes.com/media/4693913/50398.jpeg 300w, https://dam.mihomes.com/media/4693913/50397.jpeg 600w, https://dam.mihomes.com/media/4693913/50423.jpeg 900w, https://dam.mihomes.com/media/4693913/50396.jpeg 1200w, https://dam.mihomes.com/media/4693913/50421.jpeg 1800w, https://dam.mihomes.com/media/4693913/50422.jpeg 2400w" title="[002-z008]" width="6720" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="9" data-image="https://dam.mihomes.com/media/4693923/50398.jpeg 300w, https://dam.mihomes.com/media/4693923/50397.jpeg 600w, https://dam.mihomes.com/media/4693923/50423.jpeg 900w, https://dam.mihomes.com/media/4693923/50396.jpeg 1200w, https://dam.mihomes.com/media/4693923/50421.jpeg 1800w, https://dam.mihomes.com/media/4693923/50422.jpeg 2400w" data-caption="Kitchen" data-count="<strong>10</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693923/50421.jpeg?timestamp=2026-04-30T13%3A44%3A24.2490844" srcset="https://dam.mihomes.com/media/4693923/50398.jpeg 300w, https://dam.mihomes.com/media/4693923/50397.jpeg 600w, https://dam.mihomes.com/media/4693923/50423.jpeg 900w, https://dam.mihomes.com/media/4693923/50396.jpeg 1200w, https://dam.mihomes.com/media/4693923/50421.jpeg 1800w, https://dam.mihomes.com/media/4693923/50422.jpeg 2400w" title="[002-z009]" width="6720" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="10" data-image="https://dam.mihomes.com/media/4693907/50398.jpeg 300w, https://dam.mihomes.com/media/4693907/50397.jpeg 600w, https://dam.mihomes.com/media/4693907/50423.jpeg 900w, https://dam.mihomes.com/media/4693907/50396.jpeg 1200w, https://dam.mihomes.com/media/4693907/50421.jpeg 1800w, https://dam.mihomes.com/media/4693907/50422.jpeg 2400w" data-caption="Pantry" data-count="<strong>11</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Pantry" height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693907/50421.jpeg?timestamp=2026-04-30T13%3A39%3A22.8885117" srcset="https://dam.mihomes.com/media/4693907/50398.jpeg 300w, https://dam.mihomes.com/media/4693907/50397.jpeg 600w, https://dam.mihomes.com/media/4693907/50423.jpeg 900w, https://dam.mihomes.com/media/4693907/50396.jpeg 1200w, https://dam.mihomes.com/media/4693907/50421.jpeg 1800w, https://dam.mihomes.com/media/4693907/50422.jpeg 2400w" title="[002-z010]" width="6720" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="11" data-image="https://dam.mihomes.com/media/4693922/50398.jpeg 300w, https://dam.mihomes.com/media/4693922/50397.jpeg 600w, https://dam.mihomes.com/media/4693922/50423.jpeg 900w, https://dam.mihomes.com/media/4693922/50396.jpeg 1200w, https://dam.mihomes.com/media/4693922/50421.jpeg 1800w, https://dam.mihomes.com/media/4693922/50422.jpeg 2400w" data-caption="Pantry" data-count="<strong>12</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Pantry" height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693922/50421.jpeg?timestamp=2026-04-30T13%3A44%3A06.7375113" srcset="https://dam.mihomes.com/media/4693922/50398.jpeg 300w, https://dam.mihomes.com/media/4693922/50397.jpeg 600w, https://dam.mihomes.com/media/4693922/50423.jpeg 900w, https://dam.mihomes.com/media/4693922/50396.jpeg 1200w, https://dam.mihomes.com/media/4693922/50421.jpeg 1800w, https://dam.mihomes.com/media/4693922/50422.jpeg 2400w" title="[002-z011]" width="6720" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="12" data-image="https://dam.mihomes.com/media/4693912/50398.jpeg 300w, https://dam.mihomes.com/media/4693912/50397.jpeg 600w, https://dam.mihomes.com/media/4693912/50423.jpeg 900w, https://dam.mihomes.com/media/4693912/50396.jpeg 1200w, https://dam.mihomes.com/media/4693912/50421.jpeg 1800w, https://dam.mihomes.com/media/4693912/50422.jpeg 2400w" data-caption="Kitchen " data-count="<strong>13</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen " height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693912/50421.jpeg?timestamp=2026-04-30T13%3A40%3A48.8476883" srcset="https://dam.mihomes.com/media/4693912/50398.jpeg 300w, https://dam.mihomes.com/media/4693912/50397.jpeg 600w, https://dam.mihomes.com/media/4693912/50423.jpeg 900w, https://dam.mihomes.com/media/4693912/50396.jpeg 1200w, https://dam.mihomes.com/media/4693912/50421.jpeg 1800w, https://dam.mihomes.com/media/4693912/50422.jpeg 2400w" title="[002-z012]" width="6720" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="13" data-image="https://dam.mihomes.com/media/4693909/50398.jpeg 300w, https://dam.mihomes.com/media/4693909/50397.jpeg 600w, https://dam.mihomes.com/media/4693909/50423.jpeg 900w, https://dam.mihomes.com/media/4693909/50396.jpeg 1200w, https://dam.mihomes.com/media/4693909/50421.jpeg 1800w, https://dam.mihomes.com/media/4693909/50422.jpeg 2400w" data-caption="Dining Area" data-count="<strong>14</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Dining Area" height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693909/50421.jpeg?timestamp=2026-04-30T13%3A40%3A08.0718027" srcset="https://dam.mihomes.com/media/4693909/50398.jpeg 300w, https://dam.mihomes.com/media/4693909/50397.jpeg 600w, https://dam.mihomes.com/media/4693909/50423.jpeg 900w, https://dam.mihomes.com/media/4693909/50396.jpeg 1200w, https://dam.mihomes.com/media/4693909/50421.jpeg 1800w, https://dam.mihomes.com/media/4693909/50422.jpeg 2400w" title="[002-z013]" width="6720" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="14" data-image="https://dam.mihomes.com/media/4693906/50398.jpeg 300w, https://dam.mihomes.com/media/4693906/50397.jpeg 600w, https://dam.mihomes.com/media/4693906/50423.jpeg 900w, https://dam.mihomes.com/media/4693906/50396.jpeg 1200w, https://dam.mihomes.com/media/4693906/50421.jpeg 1800w, https://dam.mihomes.com/media/4693906/50422.jpeg 2400w" data-caption="Family Room " data-count="<strong>15</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Family Room " height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693906/50421.jpeg?timestamp=2026-04-30T13%3A38%3A36.7927927" srcset="https://dam.mihomes.com/media/4693906/50398.jpeg 300w, https://dam.mihomes.com/media/4693906/50397.jpeg 600w, https://dam.mihomes.com/media/4693906/50423.jpeg 900w, https://dam.mihomes.com/media/4693906/50396.jpeg 1200w, https://dam.mihomes.com/media/4693906/50421.jpeg 1800w, https://dam.mihomes.com/media/4693906/50422.jpeg 2400w" title="[002-z014]" width="6720" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="15" data-image="https://dam.mihomes.com/media/4693914/50398.jpeg 300w, https://dam.mihomes.com/media/4693914/50397.jpeg 600w, https://dam.mihomes.com/media/4693914/50423.jpeg 900w, https://dam.mihomes.com/media/4693914/50396.jpeg 1200w, https://dam.mihomes.com/media/4693914/50421.jpeg 1800w, https://dam.mihomes.com/media/4693914/50422.jpeg 2400w" data-caption="Bathroom" data-count="<strong>16</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bathroom" height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693914/50421.jpeg?timestamp=2026-04-30T13%3A41%3A30.1521933" srcset="https://dam.mihomes.com/media/4693914/50398.jpeg 300w, https://dam.mihomes.com/media/4693914/50397.jpeg 600w, https://dam.mihomes.com/media/4693914/50423.jpeg 900w, https://dam.mihomes.com/media/4693914/50396.jpeg 1200w, https://dam.mihomes.com/media/4693914/50421.jpeg 1800w, https://dam.mihomes.com/media/4693914/50422.jpeg 2400w" title="[002-z015]" width="6720" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="16" data-image="https://dam.mihomes.com/media/4693921/50398.jpeg 300w, https://dam.mihomes.com/media/4693921/50397.jpeg 600w, https://dam.mihomes.com/media/4693921/50423.jpeg 900w, https://dam.mihomes.com/media/4693921/50396.jpeg 1200w, https://dam.mihomes.com/media/4693921/50421.jpeg 1800w, https://dam.mihomes.com/media/4693921/50422.jpeg 2400w" data-caption="Hallway" data-count="<strong>17</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Hallway" height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693921/50421.jpeg?timestamp=2026-04-30T13%3A43%3A25.2849461" srcset="https://dam.mihomes.com/media/4693921/50398.jpeg 300w, https://dam.mihomes.com/media/4693921/50397.jpeg 600w, https://dam.mihomes.com/media/4693921/50423.jpeg 900w, https://dam.mihomes.com/media/4693921/50396.jpeg 1200w, https://dam.mihomes.com/media/4693921/50421.jpeg 1800w, https://dam.mihomes.com/media/4693921/50422.jpeg 2400w" title="[002-z016]" width="6720" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="17" data-image="https://dam.mihomes.com/media/4693924/50398.jpeg 300w, https://dam.mihomes.com/media/4693924/50397.jpeg 600w, https://dam.mihomes.com/media/4693924/50423.jpeg 900w, https://dam.mihomes.com/media/4693924/50396.jpeg 1200w, https://dam.mihomes.com/media/4693924/50421.jpeg 1800w, https://dam.mihomes.com/media/4693924/50422.jpeg 2400w" data-caption="Hallway" data-count="<strong>18</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Hallway" height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693924/50421.jpeg?timestamp=2026-04-30T13%3A44%3A46.4955906" srcset="https://dam.mihomes.com/media/4693924/50398.jpeg 300w, https://dam.mihomes.com/media/4693924/50397.jpeg 600w, https://dam.mihomes.com/media/4693924/50423.jpeg 900w, https://dam.mihomes.com/media/4693924/50396.jpeg 1200w, https://dam.mihomes.com/media/4693924/50421.jpeg 1800w, https://dam.mihomes.com/media/4693924/50422.jpeg 2400w" title="[002-z017]" width="6720" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="18" data-image="https://dam.mihomes.com/media/4693918/50398.jpeg 300w, https://dam.mihomes.com/media/4693918/50397.jpeg 600w, https://dam.mihomes.com/media/4693918/50423.jpeg 900w, https://dam.mihomes.com/media/4693918/50396.jpeg 1200w, https://dam.mihomes.com/media/4693918/50421.jpeg 1800w, https://dam.mihomes.com/media/4693918/50422.jpeg 2400w" data-caption="Hallway" data-count="<strong>19</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Hallway" height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693918/50421.jpeg?timestamp=2026-04-30T13%3A42%3A49.0618241" srcset="https://dam.mihomes.com/media/4693918/50398.jpeg 300w, https://dam.mihomes.com/media/4693918/50397.jpeg 600w, https://dam.mihomes.com/media/4693918/50423.jpeg 900w, https://dam.mihomes.com/media/4693918/50396.jpeg 1200w, https://dam.mihomes.com/media/4693918/50421.jpeg 1800w, https://dam.mihomes.com/media/4693918/50422.jpeg 2400w" title="[002-z018]" width="6720" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="19" data-image="https://dam.mihomes.com/media/4693927/50398.jpeg 300w, https://dam.mihomes.com/media/4693927/50397.jpeg 600w, https://dam.mihomes.com/media/4693927/50423.jpeg 900w, https://dam.mihomes.com/media/4693927/50396.jpeg 1200w, https://dam.mihomes.com/media/4693927/50421.jpeg 1800w, https://dam.mihomes.com/media/4693927/50422.jpeg 2400w" data-caption="Owners Bedroom" data-count="<strong>20</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owners Bedroom" height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693927/50421.jpeg?timestamp=2026-04-30T13%3A45%3A27.3215842" srcset="https://dam.mihomes.com/media/4693927/50398.jpeg 300w, https://dam.mihomes.com/media/4693927/50397.jpeg 600w, https://dam.mihomes.com/media/4693927/50423.jpeg 900w, https://dam.mihomes.com/media/4693927/50396.jpeg 1200w, https://dam.mihomes.com/media/4693927/50421.jpeg 1800w, https://dam.mihomes.com/media/4693927/50422.jpeg 2400w" title="[002-z019]" width="6720" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="20" data-image="https://dam.mihomes.com/media/4693926/50398.jpeg 300w, https://dam.mihomes.com/media/4693926/50397.jpeg 600w, https://dam.mihomes.com/media/4693926/50423.jpeg 900w, https://dam.mihomes.com/media/4693926/50396.jpeg 1200w, https://dam.mihomes.com/media/4693926/50421.jpeg 1800w, https://dam.mihomes.com/media/4693926/50422.jpeg 2400w" data-caption="Owners Bedroom" data-count="<strong>21</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owners Bedroom" height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693926/50421.jpeg?timestamp=2026-04-30T13%3A45%3A51.3705145" srcset="https://dam.mihomes.com/media/4693926/50398.jpeg 300w, https://dam.mihomes.com/media/4693926/50397.jpeg 600w, https://dam.mihomes.com/media/4693926/50423.jpeg 900w, https://dam.mihomes.com/media/4693926/50396.jpeg 1200w, https://dam.mihomes.com/media/4693926/50421.jpeg 1800w, https://dam.mihomes.com/media/4693926/50422.jpeg 2400w" title="[002-z020]" width="6720" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="21" data-image="https://dam.mihomes.com/media/4693920/50398.jpeg 300w, https://dam.mihomes.com/media/4693920/50397.jpeg 600w, https://dam.mihomes.com/media/4693920/50423.jpeg 900w, https://dam.mihomes.com/media/4693920/50396.jpeg 1200w, https://dam.mihomes.com/media/4693920/50421.jpeg 1800w, https://dam.mihomes.com/media/4693920/50422.jpeg 2400w" data-caption="Owners Bathroom" data-count="<strong>22</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owners Bathroom" height="4331" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693920/50421.jpeg?timestamp=2026-04-30T13%3A43%3A46.2764598" srcset="https://dam.mihomes.com/media/4693920/50398.jpeg 300w, https://dam.mihomes.com/media/4693920/50397.jpeg 600w, https://dam.mihomes.com/media/4693920/50423.jpeg 900w, https://dam.mihomes.com/media/4693920/50396.jpeg 1200w, https://dam.mihomes.com/media/4693920/50421.jpeg 1800w, https://dam.mihomes.com/media/4693920/50422.jpeg 2400w" title="[002-z021]" width="6497" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="22" data-image="https://dam.mihomes.com/media/4693928/50398.jpeg 300w, https://dam.mihomes.com/media/4693928/50397.jpeg 600w, https://dam.mihomes.com/media/4693928/50423.jpeg 900w, https://dam.mihomes.com/media/4693928/50396.jpeg 1200w, https://dam.mihomes.com/media/4693928/50421.jpeg 1800w, https://dam.mihomes.com/media/4693928/50422.jpeg 2400w" data-caption="Owners Bathroom" data-count="<strong>23</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owners Bathroom" height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693928/50421.jpeg?timestamp=2026-04-30T13%3A46%3A04.7344536" srcset="https://dam.mihomes.com/media/4693928/50398.jpeg 300w, https://dam.mihomes.com/media/4693928/50397.jpeg 600w, https://dam.mihomes.com/media/4693928/50423.jpeg 900w, https://dam.mihomes.com/media/4693928/50396.jpeg 1200w, https://dam.mihomes.com/media/4693928/50421.jpeg 1800w, https://dam.mihomes.com/media/4693928/50422.jpeg 2400w" title="[002-z022]" width="6720" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="23" data-image="https://dam.mihomes.com/media/4693925/50398.jpeg 300w, https://dam.mihomes.com/media/4693925/50397.jpeg 600w, https://dam.mihomes.com/media/4693925/50423.jpeg 900w, https://dam.mihomes.com/media/4693925/50396.jpeg 1200w, https://dam.mihomes.com/media/4693925/50421.jpeg 1800w, https://dam.mihomes.com/media/4693925/50422.jpeg 2400w" data-caption="Owners Bathroom" data-count="<strong>24</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owners Bathroom" height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693925/50421.jpeg?timestamp=2026-04-30T13%3A45%3A07.6889121" srcset="https://dam.mihomes.com/media/4693925/50398.jpeg 300w, https://dam.mihomes.com/media/4693925/50397.jpeg 600w, https://dam.mihomes.com/media/4693925/50423.jpeg 900w, https://dam.mihomes.com/media/4693925/50396.jpeg 1200w, https://dam.mihomes.com/media/4693925/50421.jpeg 1800w, https://dam.mihomes.com/media/4693925/50422.jpeg 2400w" title="[002-z023]" width="6720" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="24" data-image="https://dam.mihomes.com/media/4693930/50398.jpeg 300w, https://dam.mihomes.com/media/4693930/50397.jpeg 600w, https://dam.mihomes.com/media/4693930/50423.jpeg 900w, https://dam.mihomes.com/media/4693930/50396.jpeg 1200w, https://dam.mihomes.com/media/4693930/50421.jpeg 1800w, https://dam.mihomes.com/media/4693930/50422.jpeg 2400w" data-caption="Owners Closet " data-count="<strong>25</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owners Closet " height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693930/50421.jpeg?timestamp=2026-04-30T13%3A46%3A54.1026232" srcset="https://dam.mihomes.com/media/4693930/50398.jpeg 300w, https://dam.mihomes.com/media/4693930/50397.jpeg 600w, https://dam.mihomes.com/media/4693930/50423.jpeg 900w, https://dam.mihomes.com/media/4693930/50396.jpeg 1200w, https://dam.mihomes.com/media/4693930/50421.jpeg 1800w, https://dam.mihomes.com/media/4693930/50422.jpeg 2400w" title="[002-z024]" width="6720" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="25" data-image="https://dam.mihomes.com/media/4693919/50398.jpeg 300w, https://dam.mihomes.com/media/4693919/50397.jpeg 600w, https://dam.mihomes.com/media/4693919/50423.jpeg 900w, https://dam.mihomes.com/media/4693919/50396.jpeg 1200w, https://dam.mihomes.com/media/4693919/50421.jpeg 1800w, https://dam.mihomes.com/media/4693919/50422.jpeg 2400w" data-caption="Hallway" data-count="<strong>26</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Hallway" height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693919/50421.jpeg?timestamp=2026-04-30T13%3A43%3A05.5151539" srcset="https://dam.mihomes.com/media/4693919/50398.jpeg 300w, https://dam.mihomes.com/media/4693919/50397.jpeg 600w, https://dam.mihomes.com/media/4693919/50423.jpeg 900w, https://dam.mihomes.com/media/4693919/50396.jpeg 1200w, https://dam.mihomes.com/media/4693919/50421.jpeg 1800w, https://dam.mihomes.com/media/4693919/50422.jpeg 2400w" title="[002-z025]" width="6720" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="26" data-image="https://dam.mihomes.com/media/4693915/50398.jpeg 300w, https://dam.mihomes.com/media/4693915/50397.jpeg 600w, https://dam.mihomes.com/media/4693915/50423.jpeg 900w, https://dam.mihomes.com/media/4693915/50396.jpeg 1200w, https://dam.mihomes.com/media/4693915/50421.jpeg 1800w, https://dam.mihomes.com/media/4693915/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>27</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693915/50421.jpeg?timestamp=2026-04-30T13%3A42%3A25.9736064" srcset="https://dam.mihomes.com/media/4693915/50398.jpeg 300w, https://dam.mihomes.com/media/4693915/50397.jpeg 600w, https://dam.mihomes.com/media/4693915/50423.jpeg 900w, https://dam.mihomes.com/media/4693915/50396.jpeg 1200w, https://dam.mihomes.com/media/4693915/50421.jpeg 1800w, https://dam.mihomes.com/media/4693915/50422.jpeg 2400w" title="[002-z026]" width="6720" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="27" data-image="https://dam.mihomes.com/media/4693929/50398.jpeg 300w, https://dam.mihomes.com/media/4693929/50397.jpeg 600w, https://dam.mihomes.com/media/4693929/50423.jpeg 900w, https://dam.mihomes.com/media/4693929/50396.jpeg 1200w, https://dam.mihomes.com/media/4693929/50421.jpeg 1800w, https://dam.mihomes.com/media/4693929/50422.jpeg 2400w" data-caption="Study" data-count="<strong>28</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Study" height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693929/50421.jpeg?timestamp=2026-04-30T13%3A46%3A30.3778863" srcset="https://dam.mihomes.com/media/4693929/50398.jpeg 300w, https://dam.mihomes.com/media/4693929/50397.jpeg 600w, https://dam.mihomes.com/media/4693929/50423.jpeg 900w, https://dam.mihomes.com/media/4693929/50396.jpeg 1200w, https://dam.mihomes.com/media/4693929/50421.jpeg 1800w, https://dam.mihomes.com/media/4693929/50422.jpeg 2400w" title="[002-z027]" width="6720" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="28" data-image="https://dam.mihomes.com/media/4693917/50398.jpeg 300w, https://dam.mihomes.com/media/4693917/50397.jpeg 600w, https://dam.mihomes.com/media/4693917/50423.jpeg 900w, https://dam.mihomes.com/media/4693917/50396.jpeg 1200w, https://dam.mihomes.com/media/4693917/50421.jpeg 1800w, https://dam.mihomes.com/media/4693917/50422.jpeg 2400w" data-caption="Bathroom" data-count="<strong>29</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bathroom" height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693917/50421.jpeg?timestamp=2026-04-30T13%3A41%3A46.3659706" srcset="https://dam.mihomes.com/media/4693917/50398.jpeg 300w, https://dam.mihomes.com/media/4693917/50397.jpeg 600w, https://dam.mihomes.com/media/4693917/50423.jpeg 900w, https://dam.mihomes.com/media/4693917/50396.jpeg 1200w, https://dam.mihomes.com/media/4693917/50421.jpeg 1800w, https://dam.mihomes.com/media/4693917/50422.jpeg 2400w" title="[002-z028]" width="6720" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="29" data-image="https://dam.mihomes.com/media/4693916/50398.jpeg 300w, https://dam.mihomes.com/media/4693916/50397.jpeg 600w, https://dam.mihomes.com/media/4693916/50423.jpeg 900w, https://dam.mihomes.com/media/4693916/50396.jpeg 1200w, https://dam.mihomes.com/media/4693916/50421.jpeg 1800w, https://dam.mihomes.com/media/4693916/50422.jpeg 2400w" data-caption="Bathroom" data-count="<strong>30</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bathroom" height="4480" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4693916/50421.jpeg?timestamp=2026-04-30T13%3A42%3A08.9684103" srcset="https://dam.mihomes.com/media/4693916/50398.jpeg 300w, https://dam.mihomes.com/media/4693916/50397.jpeg 600w, https://dam.mihomes.com/media/4693916/50423.jpeg 900w, https://dam.mihomes.com/media/4693916/50396.jpeg 1200w, https://dam.mihomes.com/media/4693916/50421.jpeg 1800w, https://dam.mihomes.com/media/4693916/50422.jpeg 2400w" title="[002-z029]" width="6720" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="30" data-image="https://dam.mihomes.com/media/4261460/50398.jpeg 300w, https://dam.mihomes.com/media/4261460/50397.jpeg 600w, https://dam.mihomes.com/media/4261460/50423.jpeg 900w, https://dam.mihomes.com/media/4261460/50396.jpeg 1200w, https://dam.mihomes.com/media/4261460/50421.jpeg 1800w, https://dam.mihomes.com/media/4261460/50422.jpeg 2400w" data-caption="Interior" data-count="<strong>31</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4261460/50421.jpeg?timestamp=2026-01-07T01%3A03%3A50.1285404" srcset="https://dam.mihomes.com/media/4261460/50398.jpeg 300w, https://dam.mihomes.com/media/4261460/50397.jpeg 600w, https://dam.mihomes.com/media/4261460/50423.jpeg 900w, https://dam.mihomes.com/media/4261460/50396.jpeg 1200w, https://dam.mihomes.com/media/4261460/50421.jpeg 1800w, https://dam.mihomes.com/media/4261460/50422.jpeg 2400w" title="[L2-z007]Interior" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="31" data-image="https://dam.mihomes.com/media/4362619/50398.jpeg 300w, https://dam.mihomes.com/media/4362619/50397.jpeg 600w, https://dam.mihomes.com/media/4362619/50423.jpeg 900w, https://dam.mihomes.com/media/4362619/50396.jpeg 1200w, https://dam.mihomes.com/media/4362619/50421.jpeg 1800w, https://dam.mihomes.com/media/4362619/50422.jpeg 2400w" data-caption="Framing" data-count="<strong>32</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Framing" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4362619/50421.jpeg?timestamp=2026-02-03T07%3A09%3A29.4575514" srcset="https://dam.mihomes.com/media/4362619/50398.jpeg 300w, https://dam.mihomes.com/media/4362619/50397.jpeg 600w, https://dam.mihomes.com/media/4362619/50423.jpeg 900w, https://dam.mihomes.com/media/4362619/50396.jpeg 1200w, https://dam.mihomes.com/media/4362619/50421.jpeg 1800w, https://dam.mihomes.com/media/4362619/50422.jpeg 2400w" title="[L2-z004]Framing" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="32" data-image="https://dam.mihomes.com/media/4419007/50398.jpeg 300w, https://dam.mihomes.com/media/4419007/50397.jpeg 600w, https://dam.mihomes.com/media/4419007/50423.jpeg 900w, https://dam.mihomes.com/media/4419007/50396.jpeg 1200w, https://dam.mihomes.com/media/4419007/50421.jpeg 1800w, https://dam.mihomes.com/media/4419007/50422.jpeg 2400w" data-caption="Drywall" data-count="<strong>33</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Drywall" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4419007/50421.jpeg?timestamp=2026-02-17T06%3A53%3A37.6858879" srcset="https://dam.mihomes.com/media/4419007/50398.jpeg 300w, https://dam.mihomes.com/media/4419007/50397.jpeg 600w, https://dam.mihomes.com/media/4419007/50423.jpeg 900w, https://dam.mihomes.com/media/4419007/50396.jpeg 1200w, https://dam.mihomes.com/media/4419007/50421.jpeg 1800w, https://dam.mihomes.com/media/4419007/50422.jpeg 2400w" title="[L2-z004]Drywall" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="33" data-image="https://dam.mihomes.com/media/4419011/50398.jpeg 300w, https://dam.mihomes.com/media/4419011/50397.jpeg 600w, https://dam.mihomes.com/media/4419011/50423.jpeg 900w, https://dam.mihomes.com/media/4419011/50396.jpeg 1200w, https://dam.mihomes.com/media/4419011/50421.jpeg 1800w, https://dam.mihomes.com/media/4419011/50422.jpeg 2400w" data-caption="Drywall" data-count="<strong>34</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Drywall" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4419011/50421.jpeg?timestamp=2026-02-17T06%3A54%3A01.3655350" srcset="https://dam.mihomes.com/media/4419011/50398.jpeg 300w, https://dam.mihomes.com/media/4419011/50397.jpeg 600w, https://dam.mihomes.com/media/4419011/50423.jpeg 900w, https://dam.mihomes.com/media/4419011/50396.jpeg 1200w, https://dam.mihomes.com/media/4419011/50421.jpeg 1800w, https://dam.mihomes.com/media/4419011/50422.jpeg 2400w" title="[L2-z005]Drywall" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="34" data-image="https://dam.mihomes.com/media/4419016/50398.jpeg 300w, https://dam.mihomes.com/media/4419016/50397.jpeg 600w, https://dam.mihomes.com/media/4419016/50423.jpeg 900w, https://dam.mihomes.com/media/4419016/50396.jpeg 1200w, https://dam.mihomes.com/media/4419016/50421.jpeg 1800w, https://dam.mihomes.com/media/4419016/50422.jpeg 2400w" data-caption="Front Exterior" data-count="<strong>35</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Front Exterior" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4419016/50421.jpeg?timestamp=2026-02-17T06%3A54%3A10.6604524" srcset="https://dam.mihomes.com/media/4419016/50398.jpeg 300w, https://dam.mihomes.com/media/4419016/50397.jpeg 600w, https://dam.mihomes.com/media/4419016/50423.jpeg 900w, https://dam.mihomes.com/media/4419016/50396.jpeg 1200w, https://dam.mihomes.com/media/4419016/50421.jpeg 1800w, https://dam.mihomes.com/media/4419016/50422.jpeg 2400w" title="[L2-z006]FrontExterior" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="35" data-image="https://dam.mihomes.com/media/4419017/50398.jpeg 300w, https://dam.mihomes.com/media/4419017/50397.jpeg 600w, https://dam.mihomes.com/media/4419017/50423.jpeg 900w, https://dam.mihomes.com/media/4419017/50396.jpeg 1200w, https://dam.mihomes.com/media/4419017/50421.jpeg 1800w, https://dam.mihomes.com/media/4419017/50422.jpeg 2400w" data-caption="Owner's Closet" data-count="<strong>36</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owner's Closet" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4419017/50421.jpeg?timestamp=2026-02-17T06%3A54%3A11.4634372" srcset="https://dam.mihomes.com/media/4419017/50398.jpeg 300w, https://dam.mihomes.com/media/4419017/50397.jpeg 600w, https://dam.mihomes.com/media/4419017/50423.jpeg 900w, https://dam.mihomes.com/media/4419017/50396.jpeg 1200w, https://dam.mihomes.com/media/4419017/50421.jpeg 1800w, https://dam.mihomes.com/media/4419017/50422.jpeg 2400w" title="[L2-z003]OwnersCloset" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="36" data-image="https://dam.mihomes.com/media/4419018/50398.jpeg 300w, https://dam.mihomes.com/media/4419018/50397.jpeg 600w, https://dam.mihomes.com/media/4419018/50423.jpeg 900w, https://dam.mihomes.com/media/4419018/50396.jpeg 1200w, https://dam.mihomes.com/media/4419018/50421.jpeg 1800w, https://dam.mihomes.com/media/4419018/50422.jpeg 2400w" data-caption="Drywall" data-count="<strong>37</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Drywall" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4419018/50421.jpeg?timestamp=2026-02-17T06%3A54%3A14.4610766" srcset="https://dam.mihomes.com/media/4419018/50398.jpeg 300w, https://dam.mihomes.com/media/4419018/50397.jpeg 600w, https://dam.mihomes.com/media/4419018/50423.jpeg 900w, https://dam.mihomes.com/media/4419018/50396.jpeg 1200w, https://dam.mihomes.com/media/4419018/50421.jpeg 1800w, https://dam.mihomes.com/media/4419018/50422.jpeg 2400w" title="[L2-z002]Drywall" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="37" data-image="https://dam.mihomes.com/media/4419019/50398.jpeg 300w, https://dam.mihomes.com/media/4419019/50397.jpeg 600w, https://dam.mihomes.com/media/4419019/50423.jpeg 900w, https://dam.mihomes.com/media/4419019/50396.jpeg 1200w, https://dam.mihomes.com/media/4419019/50421.jpeg 1800w, https://dam.mihomes.com/media/4419019/50422.jpeg 2400w" data-caption="Laundry Room" data-count="<strong>38</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Laundry Room" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4419019/50421.jpeg?timestamp=2026-02-17T06%3A54%3A17.3350095" srcset="https://dam.mihomes.com/media/4419019/50398.jpeg 300w, https://dam.mihomes.com/media/4419019/50397.jpeg 600w, https://dam.mihomes.com/media/4419019/50423.jpeg 900w, https://dam.mihomes.com/media/4419019/50396.jpeg 1200w, https://dam.mihomes.com/media/4419019/50421.jpeg 1800w, https://dam.mihomes.com/media/4419019/50422.jpeg 2400w" title="[L2-z001]LaundryRoom" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="38" data-image="https://dam.mihomes.com/media/4520329/50398.jpeg 300w, https://dam.mihomes.com/media/4520329/50397.jpeg 600w, https://dam.mihomes.com/media/4520329/50423.jpeg 900w, https://dam.mihomes.com/media/4520329/50396.jpeg 1200w, https://dam.mihomes.com/media/4520329/50421.jpeg 1800w, https://dam.mihomes.com/media/4520329/50422.jpeg 2400w" data-caption="Exterior" data-count="<strong>39</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Exterior" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4520329/50421.jpeg?timestamp=2026-03-17T01%3A41%3A29.8392970" srcset="https://dam.mihomes.com/media/4520329/50398.jpeg 300w, https://dam.mihomes.com/media/4520329/50397.jpeg 600w, https://dam.mihomes.com/media/4520329/50423.jpeg 900w, https://dam.mihomes.com/media/4520329/50396.jpeg 1200w, https://dam.mihomes.com/media/4520329/50421.jpeg 1800w, https://dam.mihomes.com/media/4520329/50422.jpeg 2400w" title="[L2-z001]Exterior" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="39" data-image="https://dam.mihomes.com/media/4520330/50398.jpeg 300w, https://dam.mihomes.com/media/4520330/50397.jpeg 600w, https://dam.mihomes.com/media/4520330/50423.jpeg 900w, https://dam.mihomes.com/media/4520330/50396.jpeg 1200w, https://dam.mihomes.com/media/4520330/50421.jpeg 1800w, https://dam.mihomes.com/media/4520330/50422.jpeg 2400w" data-caption="Exterior" data-count="<strong>40</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Exterior" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4520330/50421.jpeg?timestamp=2026-03-17T01%3A41%3A29.6784666" srcset="https://dam.mihomes.com/media/4520330/50398.jpeg 300w, https://dam.mihomes.com/media/4520330/50397.jpeg 600w, https://dam.mihomes.com/media/4520330/50423.jpeg 900w, https://dam.mihomes.com/media/4520330/50396.jpeg 1200w, https://dam.mihomes.com/media/4520330/50421.jpeg 1800w, https://dam.mihomes.com/media/4520330/50422.jpeg 2400w" title="[L2-z002]Exterior" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="40" data-image="https://dam.mihomes.com/media/4520345/50398.jpeg 300w, https://dam.mihomes.com/media/4520345/50397.jpeg 600w, https://dam.mihomes.com/media/4520345/50423.jpeg 900w, https://dam.mihomes.com/media/4520345/50396.jpeg 1200w, https://dam.mihomes.com/media/4520345/50421.jpeg 1800w, https://dam.mihomes.com/media/4520345/50422.jpeg 2400w" data-caption="Exterior" data-count="<strong>41</strong> of <strong>41</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Exterior" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4520345/50421.jpeg?timestamp=2026-03-17T01%3A42%3A02.1771914" srcset="https://dam.mihomes.com/media/4520345/50398.jpeg 300w, https://dam.mihomes.com/media/4520345/50397.jpeg 600w, https://dam.mihomes.com/media/4520345/50423.jpeg 900w, https://dam.mihomes.com/media/4520345/50396.jpeg 1200w, https://dam.mihomes.com/media/4520345/50421.jpeg 1800w, https://dam.mihomes.com/media/4520345/50422.jpeg 2400w" title="[L2-z003]Exterior" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ </ul>
+ <div class="gallery-slide__footer">
+ <span class="gallery-slide__title title-caption"></span>
+ <div class="gallery-slide__share-buttons">
+ <span class="count"></span>
+ </div>
+ </div>
+ </div>
+ </div>
+</div>
+<div class="modals" data-modal-container aria-hidden="true">
+ <div class="modal box" data-modal id="signup-modal">
+ <button class="modal-close" data-modal-close>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+
+ <h2 class="h1 alt">Sign up for an M/I Homes account</h2>
+ <p>Save your favorite home plans and communities, compare home plans and share your dream home with sales associates and real estate agents.</p>
+ <p>
+ Already a member?
+ <a class="button-plain" href="/account/login">Log In to your account »</a>
+ </p>
+ <a class="button button-wide" href="/account/register">
+ <span class="button-text">
+ Sign up with email
+ </span>
+ </a>
+ </div>
+</div>
+
+<div class="product-header" data-yes="true">
+
+ <div class="product-header-row product-header__top">
+
+ <div class="product-header-centered ">
+ <div>
+ <a href="/new-homes/ohio/greater-cincinnati/west-chester/grandway" class="button-plain">
+ Grandway
+ </a>
+
+ <h1 class="header-seo-h2">
+ 7219 Grandway Drive, West Chester Township, OH 45069
+ <button class="aux-nav-link button-favorite-product gami-favorite-save" data-favorite-type="Home" data-favorite-id="e8860f93-096d-431d-80e3-f216d0f6c1ed" data-favorite-fav-id="e8860f93-096d-431d-80e3-f216d0f6c1ed" data-add-favorite>
+ <svg class="icon icon-favorite" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#favorite"></use>
+</svg>
+ <span class="aux-nav-link-action-text">
+ Favorite
+ </span>
+ </button>
+ </h1>
+ </div>
+
+ <div class="product-header__actions">
+ <a class="button button-mobile-link button-virtual-tour event-click" href="https://www.zillow.com/view-imx/3abde22e-8589-4a71-992a-1d5bfebf7fea?wl=true&setAttribution=mls&initialViewType=pano" target="_blank" data-event-category=VirtualTour
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <span class="button-text">Virtual Tour</span>
+ </a>
+ </div>
+ </div>
+ </div>
+
+ <div class="product-header-row">
+ <div class="product-header-centered tooptip-container">
+ </div>
+ </div>
+</div> <a rel="noopener" href="/new-homes/ohio/greater-cincinnati/west-chester/grandway/plat map?lot=220215000002" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=Hamilton Mason Road, West Chester Twp, OH 45069&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=B5SJQ3JT1k3s0Ok5g04e-C5v7mA=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+<div class="product-header-centered product-header-centered--contact-card-only">
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Grandway</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://www.google.com/maps/dir/?api=1&destination=39.3706281373085,-84.3977240710452">
+ 7215 Grandway Drive<br>West Chester Township, OH 45069
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+</div><div class="product-header">
+ <div class="product-header product-header-navigation">
+ <nav class="product-header-subnav" data-subnav="">
+ <div class="product-header-subnav-wrapper">
+ <div class="product-header-subnav-mobile-bottom">
+ <a class="button button-contact-us" href="/support/sales">
+ <span class="button-text">
+ Contact Us
+ </span>
+ </a>
+ </div>
+
+
+ <a class="product-header-subnav-toggle subnav-link" data-subnav-toggle="">
+ <span class="text" data-subnav-text="">Overview</span>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </a>
+
+ <ul class="product-header-subnav-links" data-subnav-links=""></ul>
+ </div>
+ </nav>
+
+ <div class="product-header-subnav-spacer"></div>
+
+ <a href="#overview" class="product-header__back-to-top is-hidden" data-back-to-top>
+ <div class="arrow arrow--up"></div>
+ </a>
+ </div>
+</div><section class="content-inner-with-sidebar content-inner-with-sidebar-right">
+
+
+ <div class="content-inner-content">
+
+
+
+
+
+<section class="plan-specification">
+ <h2 class="plan-specification__header">
+ About The Allen - A Model Home
+ </h2>
+ <a class="plan-specification__get-directions button-plain button-plain-alt negative-top gami-directions-exit" target="_blank" href="https://www.google.com/maps/search/?api=1&query=39.370728,-84.397617">Get Directions</a>
+ <ul class="plan-specification__list">
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sq-ft" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sq-ft"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">square feet</span>
+ <strong class="plan-specification-item__value">
+ 1,464
+ </strong>
+ </div>
+ </li>
+ <li class="stories-specification">
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-homes" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#homes"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">stories</span>
+ <strong class="plan-specification-item__value">
+ 2
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-bed" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#bed"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">bedrooms</span>
+ <strong class="plan-specification-item__value">
+ 3
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-shower" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#shower"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">full bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 2
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sink" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sink"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">half bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 1
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-car" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#car"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">garages</span>
+ <strong class="plan-specification-item__value">
+ 2
+ <span data-tooltip="The most common approach to a home's garage, the front load garage incorporates the garage entry into a home's front elevation.">(Front Load)</span>
+
+ </strong>
+ </div>
+ </li>
+ </ul>
+</section>
+
+<div class="overview-table">
+ <div class="overview-table-table">
+ <dl>
+ <dt>City</dt>
+ <dd>West Chester Township, OH</dd>
+
+ <dt>Owner's Suite</dt>
+ <dd>Second Floor</dd>
+
+ <dt>County</dt>
+ <dd>Butler</dd>
+
+ <dt>Home Type</dt>
+ <dd>Townhome</dd>
+
+ <dt>School District</dt>
+ <dd>Lakota Local</dd>
+
+ <dt>Foundation Type</dt>
+ <dd>Slab</dd>
+
+ <dt>Home Plan</dt>
+ <dd>Allen</dd>
+
+
+ <dt>Homesite</dt>
+ <dd>2</dd>
+
+ <dt> Base Plan Width & Depth</dt>
+ <dd>24'4" x 47 </dd>
+ </dl>
+ </div>
+</div> <h2>
+ A Spacious 2-Story Townhome Model Available to Tour at Grandway
+ </h2>
+ <div class="content-inner-content__capped-mobile-content">
+ <p>Discover the Allen model townhome at 7219 Grandway Drive in West Chester Township, Ohio—a modern, low‑maintenance home by M/I Homes designed for comfort, style, and everyday ease. This beautifully decorated model showcases 3 bedrooms, 2.5 bathrooms, and 1,464 square feet of thoughtfully planned living space across two levels.</p>
+<p>An inviting exterior with a <strong>covered front porch</strong> and 2‑car garage sets the tone for the open, welcoming interior. Step inside through the foyer to an open‑concept main level that connects the kitchen, breakfast area, and family room—creating a natural flow for both daily living and entertaining.</p>
+<p>The kitchen is the heart of the home, featuring a <strong>large center island</strong>, contemporary cabinetry, and ample counter space ideal for meal prep, casual dining, and gathering with guests. The adjacent breakfast area opens to the patio, offering seamless indoor‑outdoor living, while the family room provides a comfortable space to relax or host. A <strong>powder room and convenient storage</strong> round out the main floor.</p>
+<p>Upstairs, the <strong>owner’s suite</strong> offers a private retreat with generous closet space and a well‑appointed en‑suite bath. Two additional bedrooms share a full hall bathroom, providing flexibility for guests, a home office, or hobbies. The <strong>second‑floor laundry area</strong> adds everyday convenience right where you need it most.</p>
+<p>Designed with efficiency and livability in mind, the Allen model townhome offers a stylish preview of modern townhome living. Schedule your tour today to experience this inviting design in person and envision how the Allen plan can fit your lifestyle.</p>
+
+ <!-- and done -->
+ <h3>
+ About the Community
+ </h3>
+ <p>
+ Grandway is a new townhome community in West Chester, Ohio, just north of Downtown Cincinnati. Located near I‑75 and minutes from Liberty Center, the community offers easy access to shopping, dining, and entertainment while maintaining a more private, residential feel. Homes at Grandway are modern townhomes designed for everyday comfort.
+
+Open, connected living areas support daily routines, working from home, and time with friends, while thoughtful layouts balance function and style for easy living. More than half of the community is preserved as open green space, creating a peaceful setting shaped by nature.
+
+Residents can enjoy lakes with seating areas, landscaped gathering spaces, and a central firepit for relaxed outdoor time. Lawn care, landscaping, and snow removal are included, making it easier to focus on life beyond home maintenance. With nearby conveniences and a calm environment, Grandway offers a connected, low‑maintenance lifestyle close to it all.
+ <br />
+ <a class="button-plain button-plain-alt" href="/new-homes/ohio/greater-cincinnati/west-chester/grandway">Learn more about this community »</a>
+ </p>
+ </div>
+ <button class="faq__question color-aqua" aria-expanded="false" data-read-more="">
+ <span class="faq__icon-wrapper">
+ <span class="faq__icon">
+ <svg class="icon icon-arrow" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#arrow"></use>
+</svg>
+ </span>
+ </span>
+ <span data-read-more-collapsed="">Read More</span>
+ <span data-read-more-expanded="">Show Less</span>
+ <span class="show-hide-text hidden-text">Show</span>
+ </button>
+ <div class="matterport-wrapper">
+ <iframe loading="lazy" class="box-full" width="803" height="480" src="https://my.matterport.com/show/?m=1gHusSJUQQu" frameborder="0" allowfullscreen allow="vr" style="align-self: center" data-subnav-page-link="3D Tour" id="3dTour"></iframe>
+ </div>
+
+
+ <h4>Upcoming Events</h4>
+ <article class="preview-box">
+ <div class="preview-box-link">
+ <div class="preview-box__image preview-box__preview one-fifth">
+ <a href="/new-homes/ohio/greater-cincinnati/events/greater-cincinnati-open-houses">
+ <img data-dam-generated alt="Model Interior" height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/44257/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/44257/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/44257/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/44257/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w" title="Z5Westview_Interior" width="1800" class="cover-image" maxwidth="900" />
+ </a>
+ </div>
+ <div class="preview-box__content -multiple-times">
+ <h3 class="h3 preview-box__header">
+ Open House Weekend
+ </h3>
+ <time class="preview-box__time" datetime="2026-08-15T12:00:00">Aug 15, 2026, 12:00 PM - 4:00 PM</time>
+ <p class="preview-box__text"><p>Come tour our ready-now homes and talk with our on-site staff about several of our Greater Cincinnati new home communities! </p></p>
+ <p>
+ <a class="button-plain button-plain-alt" href="/new-homes/ohio/greater-cincinnati/events/greater-cincinnati-open-houses">RSVP for this event »</a>
+ </p>
+ </div>
+ </div>
+ </article>
+ <a class="button-plain button-plain-alt negative-top" href="/new-homes/ohio/greater-cincinnati/events">RSVP for this event »</a>
+
+ </div>
+
+ <div class="content-sidebar-right">
+ <a rel="noopener" href="/new-homes/ohio/greater-cincinnati/west-chester/grandway/plat map?lot=220215000002" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=Hamilton Mason Road, West Chester Twp, OH 45069&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=B5SJQ3JT1k3s0Ok5g04e-C5v7mA=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Grandway</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://www.google.com/maps/dir/?api=1&destination=39.3706281373085,-84.3977240710452">
+ 7215 Grandway Drive<br>West Chester Township, OH 45069
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+
+
+ <figure class="lead-form lead-form-sidebar lead-form-sidebar--compact lead-form-sidebar-signup">
+ <div class="lead-form-container">
+ <div id="lead-sidebar-header" class="lead-form-sidebar-header lead-form-sidebar-header-image">
+ <div id="isa-information" data-sidebar-section="1">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="gstorer@mihomes.com-1029202406.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/2452798/50421.jpeg?timestamp=2024-10-29T10%3A57%3A56.3594453" srcset="https://dam.mihomes.com/media/2452798/50398.jpeg?timestamp=2024-10-29T10%3A57%3A51.6148632 300w, https://dam.mihomes.com/media/2452798/50397.jpeg?timestamp=2024-10-29T10%3A57%3A52.1416879 600w, https://dam.mihomes.com/media/2452798/50423.jpeg?timestamp=2024-10-29T10%3A57%3A56.8788158 900w, https://dam.mihomes.com/media/2452798/50396.jpeg?timestamp=2024-10-29T10%3A57%3A53.1820748 1200w, https://dam.mihomes.com/media/2452798/50421.jpeg?timestamp=2024-10-29T10%3A57%3A56.3594453 1800w, https://dam.mihomes.com/media/2452798/50422.jpeg?timestamp=2024-10-29T10%3A57%3A55.8290979 2400w" title="gstorer@mihomes.com-1029202406" width="96" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="Internet Sales Manager" height="600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/2961896/50399.png?timestamp=2025-04-09T13%3A36%3A53.1792083" srcset="https://dam.mihomes.com/media/2961896/50399.png?timestamp=2025-04-09T13%3A36%3A53.1792083 300w, https://dam.mihomes.com/media/2961896/50420.png 600w" title="CINC-ISM-AlishaWoodeshick" width="600" class="cover-image" />
+ </div>
+ </div>
+ <h3 class="">Have questions for us?</h3>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=5134458550'>(513) 445-8550</a>
+ </p>
+ </div>
+ <div id="form-agent-header" class="lead-form-sidebar-section right" style="display: none;">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+
+ </div>
+ <div class="lead-form-sidebar-form" data-lead-form-sidebar="">
+ <div class="lead-form-sidebar-errors"></div>
+<form action="/api/LeadGenFormSidebar/LeadGenFormSidebar" data-gami-event="gami-form-question" data-parsley-validate="" data-sidebar-hidden-required="" data-sidebar-nav-check="visit_sidebar" method="post" name="basic_sidebar" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="584d5693-313e-43db-a3c9-f38194f70470" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Inventory" /><input id="PostType" name="PostType" type="hidden" value="sidebar" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:43 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="ItemId" name="ItemId" type="hidden" value="e8860f93-096d-431d-80e3-f216d0f6c1ed" /><input id="HomeType" name="HomeType" type="hidden" value="Townhome" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 443px;">
+ <div class="align-left center lead-form-sidebar-section" data-cta="Request Information" data-sidebar-section="0">
+ <div>
+
+ <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="">
+ </div>
+
+ <div class="form-field no-label-errors" style="margin-top: 1px">
+ <label for="fullname_sidebar"></label>
+ <input type="text"
+ name="FormFullName"
+ id="fullname_sidebar"
+ placeholder="Full Name"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required." data-parsley-trigger="blur"
+ maxlength="60"
+ data-parsley-filter-emoji=""
+ >
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormEmailAddress"
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="phone_sidebar">Phone Number</label>
+ <input class="gami-tel" type="tel"
+ autocomplete="tel-national"
+ name="FormPhoneNumber"
+ id="phone_sidebar"
+ placeholder="Phone Number" +
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ value=""
+
+ data-parsley-phone-number="" data-parsley-trigger="blur"
+ maxlength="25">
+ </div>
+
+ <div class="form-field no-label-errors">
+ <label for="comments_sidebar">Questions or Comments</label>
+ <textarea rows="5"
+ name="FormComments"
+ id="comments_sidebar"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000">Please send me information about 7219 Grandway Drive</textarea>
+ </div>
+ </div>
+ <div>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox hide" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input data-parsley-multiple="visit_sidebar" name="visit_sidebar" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to plan a visit</span>
+ </label>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormEmailOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSAssociateCommunicationsOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" data-sidebar-section="1" tabindex="-1">
+ <div>
+ <h4>Plan a visit</h4>
+ <p>Select your preferred day and time and we’ll help set up the perfect visit.</p>
+ </div>
+ <div>
+ <div class="select no-label-errors">
+ <label for="tripday_sidebar"> </label>
+ <div class="select-wrap">
+<select data-nested-select="#select-triptime-block-sidebar" data-parsley-group="visit_sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+
+ <div class="select no-label-errors">
+ <label for="triptime_sidebar"> </label>
+ <div class="select-wrap">
+<select data-parsley-group="visit_sidebar" id="triptime_sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" dta-cta="Continue" data-sidebar-section="2" data-agent-section tabindex="-1">
+
+ <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0">
+ <div class="align-left center lead-form-sidebar-section" data-sidebar-section="0">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button form-submit">
+ <span class="button-text">Request Information</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-left lead-form-sidebar-section right" data-sidebar-section="1">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit" disabled tabindex="-1">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="2">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button" disabled tabindex="-1">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit" disabled tabindex="-1">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+ </div>
+ </div>
+</form> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 25px;">
+ <div class="align-center center lead-form-sidebar-section" data-sidebar-section="0">
+ <button class="button-plain small" data-open-modal="privacy-policy-modal" href="javascript:void()">Privacy Policy</button>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="1">
+ <button class="button-plain small" data-sidebar-nav="0" tabindex="-1">« Go Back</button>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <!-- THANK YOU MESSAGE -->
+ <div class="lead-form-container-success">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-success lead-form-sidebar-header-image">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" data-parsley-validate="" method="POST" name="thanksyou_sidebar" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+ <div>
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+ <div class="form-field form-field-password">
+ <label for="password"> </label>
+ <input data-parsley-required-message="Password is required." data-parsley-valid-password="" id="password" minlength="8" name="password" placeholder="Password" required="" type="password" data-parsley-filter-emoji="" data-parsley-trigger="blur">
+ <button class="password-input-change" data-input-change="" type="button">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)" tabindex="0">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">
+ Create Account
+ </span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ <h3 class="h3 preview-box__header">
+ Incentives
+ </h3>
+ <a class="incentive incentive__sidebar--simple" href="/new-homes/ohio/greater-cincinnati/incentives/hot-summer-sale">
+ <div class="incentive-background">
+ <img data-dam-generated alt="Hot Summer Savings Card Image" height="2160" loading="eager" sizes="(min-width: 64rem) 328px, 100vw" src="https://dam.mihomes.com/media/1027607/50422.jpeg" srcset="https://dam.mihomes.com/media/1027607/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/1027607/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/1027607/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/1027607/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/1027607/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/1027607/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="HotSummerSavings-Card" width="3240" class="cover-image cover-image--abs" />
+ <div class="incentive__badge">
+<img data-dam-generated alt="Hot Summer Sale | Badge" height="2160" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/1027603/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667" srcset="https://dam.mihomes.com/media/1027603/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/1027603/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/1027603/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/1027603/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/1027603/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/1027603/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="HotSummerSale-Badge" width="2160" class="incentive__badge-background" maxwidth="2400" /> </div>
+ </div>
+ <div class="incentive-inner">
+ <span class="incentive-title--wrapper">
+ <p class="incentive-title">Hot Summer Sale</p>
+ </span>
+ <p class="incentive-sub-headline">Kick off the summer with extra hot savings! From single family homes to townhomes and villas, we offer a variety of home plans to fit the homes of your dreams. From start to finish, our knowledgeable New Home Consultants will be with you every step of the way to bring it to life.</p>
+ <p class="incentive-button--wrapper">
+ <span class="button button-small" href="/new-homes/ohio/greater-cincinnati/incentives/hot-summer-sale">
+ <span class="button-text uppercase">View Details</span>
+ </span>
+ </p>
+ </div>
+ </a>
+
+</div>
+</section>
+
+ <div class="box box-full box-no-padding-top">
+ <div class="contained-width">
+ <hr class="hr-even">
+
+ <h4>Incentives</h4>
+ <article class="preview-box ">
+ <a class="preview-box-link" href="/new-homes/ohio/greater-cincinnati/incentives/hot-summer-sale">
+ <div class="preview-box__image preview-box__preview one-third">
+ <img data-dam-generated alt="Hot Summer Savings Card Image" height="2160" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/1027607/50422.jpeg" srcset="https://dam.mihomes.com/media/1027607/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/1027607/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/1027607/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w" title="HotSummerSavings-Card" width="3240" class="cover-image" maxwidth="900" />
+ </div>
+ <div class="preview-box__content">
+ <h3 class="h3 preview-box__header">
+ Hot Summer Sale
+
+
+ </h3>
+ <p class="preview-box__text">Kick off the summer with extra hot savings! From single family homes to townhomes and villas, we offer a variety of home plans to fit the homes of your dreams. From start to finish, our knowledgeable New Home Consultants will be with you every step of the way to bring it to life.</p>
+ <p>
+ <span class="button-plain button-plain-alt" href="/new-homes/ohio/greater-cincinnati/incentives/hot-summer-sale">View Details »</span>
+ </p>
+ </div>
+ </a>
+ </article>
+ <article class="preview-box ">
+ <a class="preview-box-link" href="/new-homes/ohio/greater-cincinnati/incentives/lower-payments">
+ <div class="preview-box__image preview-box__preview one-third">
+ <img data-dam-generated alt="Lower Payments" height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3398695/50421.jpeg" srcset="https://dam.mihomes.com/media/3398695/50398.jpeg?timestamp=2025-07-15T17%3A06%3A54.6851490 300w, https://dam.mihomes.com/media/3398695/50397.jpeg?timestamp=2025-07-15T17%3A06%3A53.2195117 600w, https://dam.mihomes.com/media/3398695/50423.jpeg?timestamp=2025-07-15T17%3A07%3A01.3602581 900w" title="LowerPayments-Header-1800x430" width="1800" class="cover-image" maxwidth="900" />
+ </div>
+ <div class="preview-box__content">
+ <h3 class="h3 preview-box__header">
+ Lower Payments
+
+
+ </h3>
+ <p class="preview-box__text">Increase your home-buying power and decrease your rate with our 2/1 buydown, featuring first-year rates as low as 3.50%* / 5.637% APR* on a 30-year fixed conventional loan, offered through M/I Financial, LLC, for new homes that can close by October 30. 2026.</p>
+ <p>
+ <span class="button-plain button-plain-alt" href="/new-homes/ohio/greater-cincinnati/incentives/lower-payments">View Details »</span>
+ </p>
+ </div>
+ </a>
+ </article>
+ </div>
+ </div>
+
+ <div id="floor" class="box box-full box-last event-inview" data-subnav-page-link="FloorPlan" data-event-category=Floorplan
+ data-event-action=scroll
+ data-event-label=view
+>
+ <div class="content-inner-centered content-inner-centered--mobile">
+<img data-dam-generated alt="Static Floorplans" height="3386" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4635224/50421.jpeg?timestamp=2026-04-15T15%3A16%3A07.9352585" srcset="https://dam.mihomes.com/media/4635224/50398.jpeg?timestamp=2026-04-15T15%3A15%3A59.8722340 300w, https://dam.mihomes.com/media/4635224/50397.jpeg?timestamp=2026-04-15T15%3A15%3A56.9669796 600w, https://dam.mihomes.com/media/4635224/50423.jpeg?timestamp=2026-04-15T15%3A16%3A08.9261866 900w, https://dam.mihomes.com/media/4635224/50396.jpeg?timestamp=2026-04-15T15%3A15%3A55.2177750 1200w, https://dam.mihomes.com/media/4635224/50421.jpeg?timestamp=2026-04-15T15%3A16%3A07.9352585 1800w, https://dam.mihomes.com/media/4635224/50422.jpeg?timestamp=2026-04-15T15%3A16%3A08.0224376 2400w" title="CINC-GWY 2_Allen_Second Floor" width="1505" class="cover-image cover-image--abs" /> <h2>Floorplan Options for Your New Home</h2>
+ <p class="content-inner-centered-narrow negative-top subtitle">The Allen accommodates a variety of household living arrangements with its highly desired flexibility and modern design. Explore the many possibilities in the popular Allen plan.</p>
+ <a target="_blank" class="button floor-plan-options__button event-click" href="https://rifp.ml3ds-icon.com/#/floorplan/407205?pcoLink=63150&pco=1117645&reverseFloorPlan=false" data-event-category=Floorplan
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <svg class="icon icon-fullscreen" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#fullscreen"></use>
+</svg>
+ <span class="button-text">
+ Show Floorplan
+ </span>
+ </a>
+ </div>
+ <section class="floor-plan-options">
+ <iframe loading="lazy" id="floor-plan" data-fullsize class="floor-plan-options__iframe" data-src="https://rifp.ml3ds-icon.com/#/floorplan/407205?pcoLink=63150&pco=1117645&reverseFloorPlan=false" scrolling="no" style="overflow: hidden">
+ <p>Your browser does not support iframes.</p>
+ </iframe>
+ </section>
+ </div>
+
+ <div class="box box-full box-no-padding-top-bottom " id="">
+ <div class="content-inner-centered">
+ <div class="leadgenTitleBlock">
+ <h2 class="h2">Ready to plan a visit? We can help</h2>
+ <p class="subtitle marginless">Send us your preferred time to stop by and a sales representative will take care of the rest</p>
+ </div>
+ <section class="lead-form">
+ <div id="lead-form-block-user-info" class="lead-form-container lead-form-block" data-lead-form-sidebar="">
+ <aside class="lead-form-block__details" style="">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="gstorer@mihomes.com-1029202406.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/2452798/50421.jpeg?timestamp=2024-10-29T10%3A57%3A56.3594453" srcset="https://dam.mihomes.com/media/2452798/50398.jpeg?timestamp=2024-10-29T10%3A57%3A51.6148632 300w, https://dam.mihomes.com/media/2452798/50397.jpeg?timestamp=2024-10-29T10%3A57%3A52.1416879 600w, https://dam.mihomes.com/media/2452798/50423.jpeg?timestamp=2024-10-29T10%3A57%3A56.8788158 900w, https://dam.mihomes.com/media/2452798/50396.jpeg?timestamp=2024-10-29T10%3A57%3A53.1820748 1200w, https://dam.mihomes.com/media/2452798/50421.jpeg?timestamp=2024-10-29T10%3A57%3A56.3594453 1800w, https://dam.mihomes.com/media/2452798/50422.jpeg?timestamp=2024-10-29T10%3A57%3A55.8290979 2400w" title="gstorer@mihomes.com-1029202406" width="96" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="Internet Sales Manager" height="600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/2961896/50399.png?timestamp=2025-04-09T13%3A36%3A53.1792083" srcset="https://dam.mihomes.com/media/2961896/50399.png?timestamp=2025-04-09T13%3A36%3A53.1792083 300w, https://dam.mihomes.com/media/2961896/50420.png 600w" title="CINC-ISM-AlishaWoodeshick" width="600" class="cover-image" />
+ </div>
+ </div>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=5134458550'>(513) 445-8550</a>
+ </p>
+ </aside>
+<form action="/api/LeadGenFormBlock/LeadGenFormBlock" class="lead-form-block__form" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="584d5693-313e-43db-a3c9-f38194f70470" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Model" /><input id="PostType" name="PostType" type="hidden" value="block" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:43 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="FormAgentEmailAddress" name="FormAgentEmailAddress" type="hidden" value="" /><input id="ItemId" name="ItemId" type="hidden" value="e8860f93-096d-431d-80e3-f216d0f6c1ed" /><input id="HomeType" name="HomeType" type="hidden" value="Townhome" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="" hidden>
+ </div>
+ <div class="form-field">
+ <label for="fullname">Full Name </label>
+ <input type="text"
+ name="FormFullName"
+ placeholder="John Doe"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required."
+ maxlength="60"
+
+ data-parsley-filter-emoji=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="emailaddress">Email Address </label>
+ <input type="email"
+ name="FormEmailAddress" ,
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field">
+ <label for="phone">Phone Number </label>
+ <input class="gami-tel" type="tel"
+ name="FormPhoneNumber"
+ id="phone"
+ placeholder="5555555555"
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ maxlength="25"
+ value=""
+
+ data-parsley-phone-number=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="input">Questions or Comments </label>
+ <textarea rows="5"
+ name="FormComments"
+ id="input"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000"></textarea>
+ </div>
+ <div class="lead-form-block__contacts">
+ <div class="form-field select" {="">
+ <label for="tripday_block">Preferred Day <em> (Optional)</em></label>
+ <div class="select-wrap">
+ <div class="select-wrap">
+<select date-nested-select="#select-triptime-block-sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+
+ <div class="form-field select" {="">
+ <label for="triptime_block">Preferred Time <em> (Optional)</em></label>
+ <div class="select-wrap">
+
+<select id="select-triptime-block-sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-block__checkboxes-container">
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormEmailOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSAssociateCommunicationsOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ <div class="lead-form-block__submit">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+
+ <span class="align-center">
+ <a class="button-plain small" data-open-modal="privacy-policy-modal">Privacy Policy</a>
+ </span>
+ </div>
+</form> </div>
+ <div id="lead-form-block-agent-form" class="lead-form-container lead-form-block" data-lead-form-sidebar="" data-agent-section style="display: none;">
+ <figure class="lead-form lead-form-sidebar">
+ <div id="form-agent-header" class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+<form action="/new-homes/ohio/greater-cincinnati/west-chester/grandway/allen-plan/7219-grandway-drive" class="lead-form-sidebar-section" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""> <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ id="block-agent-email"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+</form> </div>
+ </figure>
+ </div>
+
+
+
+ <div class="lead-form-container-success">
+ <figure class="lead-form lead-form-sidebar">
+ <div class="lead-form-container-success" style="display: block">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" method="POST" name="thanksyou_sidebar" data-parsley-validate="" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+
+ <div>
+ <div class="form-field form-field-password">
+ <label for="password"></label>
+ <input type="password"
+ name="password"
+ id="password"
+ placeholder="Password"
+ data-parsley-valid-password=""
+ minlength="8"
+ required=""
+ data-parsley-required-message="Password is required."
+ data-parsley-trigger="blur">
+
+ <button type="button" class="password-input-change" data-input-change="">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span tabindex="0"
+ data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">Create Account</span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ </div>
+ </section>
+ </div>
+ </div>
+
+ <div class="box box-centered box-full box-transparent" id="neraby">
+ <div class="box-full-inner">
+ <h3 class="h2">
+ Other Quick Move-In Homes
+ </h3>
+
+ <div class="featured-grid">
+ <div class="row">
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/ohio/greater-cincinnati/west-chester/grandway/allen-plan/7276-grandpoint-drive">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Allen Elevation A" height="1800" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/185370/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/185370/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/185370/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/185370/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/185370/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/185370/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/185370/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="CINC-Building-AAB-Allen-Bristol-TH-elev_DAY_BRICK" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Allen</p>
+ <p class="featured-grid-middle">7276 Grandpoint Drive, West Chester Township, Ohio</p>
+ <p class="featured-grid-subtitle">Listed at $379,000</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/ohio/greater-cincinnati/west-chester/grandway/allen-plan/7236-grandpoint-drive">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Front Exterior" height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4946612/50422.jpeg?timestamp=2026-07-02T01%3A35%3A44.4176918" srcset="https://dam.mihomes.com/media/4946612/50398.jpeg?timestamp=2026-07-02T01%3A35%3A43.0491028 300w, https://dam.mihomes.com/media/4946612/50397.jpeg?timestamp=2026-07-02T01%3A35%3A43.0338111 600w, https://dam.mihomes.com/media/4946612/50423.jpeg?timestamp=2026-07-02T01%3A35%3A44.4545753 900w, https://dam.mihomes.com/media/4946612/50396.jpeg?timestamp=2026-07-02T01%3A35%3A41.9281185 1200w, https://dam.mihomes.com/media/4946612/50421.jpeg?timestamp=2026-07-02T01%3A35%3A44.0543440 1800w, https://dam.mihomes.com/media/4946612/50422.jpeg?timestamp=2026-07-02T01%3A35%3A44.4176918 2400w" title="[L48-z002]FrontExterior" width="1800" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Allen</p>
+ <p class="featured-grid-middle">7236 Grandpoint Drive, West Chester Township, Ohio</p>
+ <p class="featured-grid-subtitle">Listed at $380,000</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/ohio/greater-cincinnati/west-chester/grandway/allen-plan/7232-grandpoint-drive">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Drywall" height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/5116251/50421.jpeg?timestamp=2026-08-05T13%3A01%3A21.7260540" srcset="https://dam.mihomes.com/media/5116251/50398.jpeg?timestamp=2026-08-05T13%3A01%3A20.4363731 300w, https://dam.mihomes.com/media/5116251/50397.jpeg?timestamp=2026-08-05T13%3A01%3A19.2524553 600w, https://dam.mihomes.com/media/5116251/50423.jpeg?timestamp=2026-08-05T13%3A01%3A21.9340141 900w, https://dam.mihomes.com/media/5116251/50396.jpeg?timestamp=2026-08-05T13%3A01%3A19.7884390 1200w, https://dam.mihomes.com/media/5116251/50421.jpeg?timestamp=2026-08-05T13%3A01%3A21.7260540 1800w, https://dam.mihomes.com/media/5116251/50422.jpeg?timestamp=2026-08-05T13%3A01%3A21.3815918 2400w" title="[L49-z010]Drywall" width="1800" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Allen</p>
+ <p class="featured-grid-middle">7232 Grandpoint Drive, West Chester Township, Ohio</p>
+ <p class="featured-grid-subtitle">Listed at $380,000</p>
+ </a>
+</div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ </main>
+
+
+<footer class="main-footer">
+ <div class="main-footer-inner">
+ <ul class="horizontal-list">
+ <li><a href="https://apply.workable.com/mi-homes/" target="_blank" rel="noopener noreferrer" >Careers</a></li>
+ <li><a href="/support/warranty" >Warranty</a></li>
+ <li><a href="https://investors.mihomes.com/" rel="noopener noreferrer" title="Investor Relations" target="_blank" >Investors</a></li>
+ <li><a href="/events" >Events</a></li>
+ <li><a href="/incentives" >Incentives</a></li>
+ <li><a href="/agent/agent-info" >Agents & Brokers</a></li>
+ <li><a href="/resources" >Home Buying Resources</a></li>
+ <li><a href="/why-mi/journey" >Journey</a></li>
+ <li><a href="/blog/" >Blog</a></li>
+ </ul>
+ <ul class="horizontal-list">
+ <li><a href="/policies/privacy-policy" >Privacy Policy</a></li>
+ <li><a href="/policies/terms-of-use" >Terms of Use</a></li>
+ <li><a href="/subscriptions" >Manage Subscriptions</a></li>
+ <li><a href="/support/ccpa" >CCPA</a></li>
+ </ul>
+ <ul class="icon-list">
+ <li>
+<a href="https://www.instagram.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Instagram" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704717/50399.png" srcset="https://dam.mihomes.com/media/4704717/50399.png?timestamp=2026-05-04T18%3A56%3A58.4036491 300w, https://dam.mihomes.com/media/4704717/50420.png 600w" title="instagram" width="24" /></a> </li>
+ <li>
+<a href="https://www.facebook.com/MIHomesInc/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Facebook" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57191/50399.png" srcset="https://dam.mihomes.com/media/57191/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57191/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="facebook" width="24" /></a> </li>
+ <li>
+<a href="https://www.youtube.com/MIHomesInc" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Youtube" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704715/50399.png" srcset="https://dam.mihomes.com/media/4704715/50399.png?timestamp=2026-05-04T18%3A34%3A30.5730196 300w, https://dam.mihomes.com/media/4704715/50420.png 600w" title="youtube" width="24" /></a> </li>
+ <li>
+<a href="https://www.pinterest.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Pinterest" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57192/50399.png" srcset="https://dam.mihomes.com/media/57192/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57192/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="pintrest" width="24" /></a> </li>
+ <li>
+<a href="http://www.houzz.com/pro/mi-homes/m-i-homes" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Houzz" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57193/50399.png" srcset="https://dam.mihomes.com/media/57193/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57193/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="houzz" width="24" /></a> </li>
+ <li>
+<a href="http://portal.hud.gov" class="" rel="me" target="_blank" ><img data-dam-generated alt="Equal Housing" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704718/50399.png" srcset="https://dam.mihomes.com/media/4704718/50399.png?timestamp=2026-05-04T19%3A02%3A51.2896193 300w, https://dam.mihomes.com/media/4704718/50420.png 600w" title="equal-housing" width="28" /></a> </li>
+ </ul>
+ <p class="main-footer-copyright">
+ Copyright 2026, M/I Homes, Inc. All rights reserved.
+ </p>
+ <p id="division-disclaimer" class="main-footer-copyright">
+
+
+ </p>
+ </div>
+</footer>
+</div>
+<div aria-label="Cookie Consent" role="dialog" id="ccpa-modal" class="ccpa-modal">
+ <p>By browsing, you accept our <a href="/policies/terms-of-use">terms of use</a> and <a href="/policies/privacy-policy">privacy policy</a>.</p>
+ <button class="button" type="button">OK</button>
+</div>
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/modals.css?ver=202608092245" rel="stylesheet" fetchpriority="low">
+ <div class="modal modal-wide box" data-modal="" id="privacy-policy-modal">
+ <button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div id="privacy-policy-text"></div>
+</div><div class="modal box box-wide box-paddingless" data-modal="" id="mortgage-payment-calculator-modal">
+<button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+</button>
+ <div id="mortgage-payment-calculator" data-price="387000" data-values="e288449b-6b89-4783-a301-066e0118d741"></div>
+</div>
+ <div class="modal" data-modal id="search-modal">
+ <form action="/search" class="search-form ">
+ <input class="search-form-input" id="search-form-input" name="search" placeholder="Search M/I Homes"
+ type="search" />
+ <button class="button search-form-clear-button" type="button">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+
+ </button>
+ <button class="button search-form-submit" type="submit">
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ <div class="search-form-results">
+ <div class="search-form-results-list"></div>
+ </div>
+ </form>
+ </div>
+</div>
+
+<!-- toolkit scripts -->
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit_common.js?ver=202608092245"></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit.js?ver=202608092245"></script>
+ <script src="https://cdn.mihomes.com/assets/toolkit/js/product.js?ver=202608092245"></script>
+ <script defer src="https://cdn.mihomes.com/assets/toolkit/js/mortgage-calculator.js?ver=202608092245"></script>
+<script>window.jQuery = window.$ = window.JQUERY;</script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/common.js?ver=202608092245" defer></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/favorites.js?ver=202608092245" defer></script>
+
+
+<script>
+ var w = Math.max(
+ document.body.scrollWidth,
+ document.documentElement.scrollWidth,
+ document.body.offsetWidth,
+ document.documentElement.offsetWidth,
+ document.documentElement.clientWidth
+ );
+ window.setCookie('screen-width', encodeURIComponent(w), { expires: 14, path: "/" })
+ </script>
+
+<script>
+
+
+</script>
+<script type="text/javascript">
+ const millisecondsPerDay = 86400000;
+ const millisecondsPerHour = millisecondsPerDay / 24;
+ const millisecondsPerMinute = millisecondsPerHour / 60;
+ const millisecondsPerSecond = 1000;
+ function addLeadingZero(val) {
+ if(val.toString().length < 2) {
+ return '0'+val;
+ }
+ return val;
+ }
+ function change() {
+ const list = Array.from(document.querySelectorAll('[data-countdown]'));
+ const now = new Date().getTime();
+ list.forEach((el) => {
+ const d = new Date(el.getAttribute('data-countdown')).getTime();
+ let diff = d - now;
+ let days = 0;
+ let hours = 0;
+ let minutes = 0;
+ let seconds = 0;
+ if(diff > 0) {
+ days = Math.floor(diff / millisecondsPerDay);
+ diff = diff - (days * millisecondsPerDay)
+ hours = Math.floor(diff/millisecondsPerHour);
+ diff = diff - (hours * millisecondsPerHour)
+ minutes = Math.floor(diff/millisecondsPerMinute);
+ diff = diff - (minutes * millisecondsPerMinute);
+ seconds = Math.floor(diff/millisecondsPerSecond);
+ }
+ try {
+ el.querySelector('.days').innerText = addLeadingZero(Math.max(days, 0));
+
+ } catch (e) {}
+ try {
+ el.querySelector('.hours').innerText = addLeadingZero(Math.max(hours, 0));
+ } catch(e) {}
+ try {
+ el.querySelector('.minutes').innerText = addLeadingZero(Math.max(minutes, 0));
+ } catch (e) {}
+ try {
+ el.querySelector('.seconds').innerText = addLeadingZero(Math.max(seconds, 0));
+ } catch (e) {}
+
+ });
+ setTimeout(()=>requestAnimationFrame(change), millisecondsPerSecond);
+ }
+ requestAnimationFrame(change);
+</script>
+<script>(function(){function c(){var b=a.contentDocument||(a.contentWindow&&a.contentWindow.document);if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'a29496252bdbda41',t:'MTc4NjQyMzQ4MQ=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
+
+</html>
\ No newline at end of file
diff --git a/collectors/mi-homes/fixtures/homes/h13.html b/collectors/mi-homes/fixtures/homes/h13.html
new file mode 100644
index 00000000..2dcb3aac
--- /dev/null
+++ b/collectors/mi-homes/fixtures/homes/h13.html
@@ -0,0 +1,2117 @@
+
+
+<!doctype html>
+<html lang="en">
+
+<head>
+
+ <script>
+ var G = G || {};
+ G.pingForEmployee = true;
+ </script>
+
+
+<meta name="VIcurrentDateTime" content="639220202867539803" />
+<meta name="VirtualFolder" content="/" />
+<script type="text/javascript" src="/layouts/system/VisitorIdentification.js"></script>
+
+
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" name="viewport">
+ <title>MLS #41062800 - 32227 Morning Luster Court Fulshear, TX 77441 - M/I Homes</title>
+ <!-- font -->
+ <link rel="preconnect" href="https://cdn.mihomes.com" crossorigin>
+ <link rel="preconnect" href="https://use.typekit.net" crossorigin>
+
+
+
+<!-- Google Tag Script -->
+
+ <script id="js-GTM-script">
+ window.dataLayer = window.dataLayer || [];
+ window.dataLayer.push({
+ "PageType": "Spec",
+ "MIAccount": "No",
+ "Division": "Houston"
+});
+
+(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=
+'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
+})(window,document,'script','dataLayer','GTM-M2JH3QJ');
+ </script>
+
+
+<!-- End Google Tag Script -->
+ <meta name="referrer" content="always" />
+
+ <link href="https://use.typekit.net/sgt3sit.css" rel="stylesheet" type="text/css" media="print" onload="this.media='all'" id="fonts-loaded" />
+
+<script>
+ try {
+ document.fonts.ready.then(() => {
+ document.body.classList.add('body--fonts-loaded');
+ if(window.setCookiie) {
+ window.setCookie('fonts-cached', 'true', { expires: 7, path: '/' });
+ }
+ });
+ } catch (e) { }
+</script>
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/toolkit.css?ver=202608092245" type="text/css" rel="stylesheet">
+ <!-- conditionally load css for blog -->
+
+ <script>
+ window.environment = "Prod";
+ window.googleApiKey = "REDACTED-THIRD-PARTY-PUBLIC-KEY";
+ </script>
+ <script>
+
+ window.maps =[];
+ window.AssetRootUrl = 'https://cdn.mihomes.com';
+
+ </script>
+
+ <meta name="twitter:card" content="summary" />
+<meta name="twitter:site" content="@mihomes" />
+<meta name="twitter:creator" content="@mihomes">
+
+<meta property="og:site_name" content="https://www.mihomes.com" />
+<meta property="og:type" content="article" />
+<meta property="og:url" content="https://www.mihomes.com/new-homes/texas/greater-houston/fulshear/summerview/armstrong-plan/32227-morning-luster-court" />
+
+
+ <meta property="og:title" content="32227 Morning Luster Court" />
+ <meta name="twitter:title" content="32227 Morning Luster Court" />
+
+
+
+ <meta property="og:description" content="Welcome to 32227 Morning Luster Court, Fulshear, Texas — a stunning new construction home built by M/I Homes. This 2-story home offers 2,697 square feet of thoughtfully designed living space with 5 bedrooms and 3 bathrooms, perfect for families seeking room to grow." />
+ <meta name="twitter:description" content="Welcome to 32227 Morning Luster Court, Fulshear, Texas — a stunning new construction home built by M/I Homes. This 2-story home offers 2,697 square feet of thoughtfully designed living space with 5 bedrooms and 3 bathrooms, perfect for families seeking room to grow." />
+ <meta name="description" content="Welcome to 32227 Morning Luster Court, Fulshear, Texas — a stunning new construction home built by M/I Homes. This 2-story home offers 2,697 square feet of thoughtfully designed living space with 5 bedrooms and 3 bathrooms, perfect for families seeking room to grow." />
+
+
+
+ <link rel="canonical" href="https://www.mihomes.com/new-homes/texas/greater-houston/fulshear/summerview/armstrong-plan/32227-morning-luster-court">
+ <link defer href="https://dam.mihomes.com/media/4179716/50399.png" rel="icon" type="image/vnd.microsoft.icon" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="57x57"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-57x57.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="114x114"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-114x114.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="72x72"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-72x72.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="144x144"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-144x144.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="60x60"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-60x60.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="120x120"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-120x120.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="76x76"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-76x76.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="152x152"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-152x152.png" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-196x196.png"
+ sizes="196x196" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-96x96.png"
+ sizes="96x96" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-32x32.png"
+ sizes="32x32" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-16x16.png"
+ sizes="16x16" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-128.png"
+ sizes="128x128" />
+ <meta name="application-name" content=" " />
+ <meta name="msapplication-TileColor" content="#FFFFFF" />
+ <meta name="msapplication-TileImage" content="https://cdn.mihomes.com/assets/favicons/images/mstile-144x144.png" />
+ <meta name="msapplication-square70x70logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-70x70.png" />
+ <meta name="msapplication-square150x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-150x150.png" />
+ <meta name="msapplication-wide310x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x150.png" />
+ <meta name="msapplication-square310x310logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x310.png" />
+
+ <script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Organization",
+ "foundingDate": "1976",
+ "duns": "071649743",
+ "founders": [
+ {
+ "@type": "Person",
+ "name": "Melvin Schottenstein"
+ },
+ {
+ "@type": "Person",
+ "name": "Irving Schottenstein"
+ }
+ ],
+ "employees": [
+ {
+ "@type": "Person",
+ "name": "Robert H. Schottenstein",
+ "jobTitle": "Chairman, President, and CEO"
+ }
+ ],
+ "sameAs": [
+ "https://www.facebook.com/MIHomesInc",
+ "https://twitter.com/mihomes",
+ "https://www.instagram.com/mihomes/",
+ "https://www.youtube.com/MIHomesInc",
+ "https://www.houzz.com/pro/mi-homes/m-i-homes",
+ "https://www.pinterest.com/mihomes/"
+ ],
+ "logo": {
+ "@type": "ImageObject",
+ "name": "M/I Homes logo",
+ "contentUrl": "https://dam.mihomes.com/media/39664/50399.png"
+ },
+ "name": "M/I Homes",
+ "description": "M/I Homes, Inc. founded in 1976, M/I Homes is one of nation's leading builders of single family homes. M/I has established an exemplary reputation based on a strong commitment to superior customer service, innovative design, quality construction and premium locations. Listed on the New York Stock Exchange, M/I Homes serves a broad segment of the housing market including first-time, move-up, luxury and empty nester buyers.",
+ "url": "https://www.mihomes.com",
+ "isicv4": "4100"
+}</script>
+ <script defer src="https://www.youtube.com/iframe_api"></script>
+ <script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
+ <script>
+ window.addEventListener('load', () => {
+ const swUrl = "https://cdn.mihomes.com/assets/workers/product-page-service-worker.js"
+ navigator.serviceWorker
+ .register(swUrl, {
+ scope: '/'
+ })
+ .then(registration => {
+ console.log('Service Worker registered with scope:', registration.scope);
+ })
+ .catch(error => {
+ console.error('Error during service worker registration:', error);
+ });
+ });
+ </script>
+</head>
+
+<body class="no-js body--home-template">
+
+
+
+<!-- Google Tag Manager --><!-- Global site tag (gtag.js) - Google Analytics -->
+
+ <noscript>
+ <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M2JH3QJ"
+ height="0" width="0" style="display: none; visibility: hidden">
+ </iframe>
+ </noscript>
+
+<!-- End Google Tag Manager GTMM2JH3QJ -->
+<a class="skip-link" href="#content">Skip To Content</a>
+
+<div class="page-container">
+ <div id="overview" data-subnav-page-link="Overview"></div>
+
+
+<header class="main-header">
+ <div class="main-header-inner">
+<a href="/" class="main-header-logo" > <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png">
+<svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg></a> <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png" />
+ <button class="main-header-open-nav" data-open-nav="" title="Toggle Hamburger Navigation">
+ <svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg>
+ <svg class="icon icon-menu" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#menu"></use>
+</svg>
+ </button>
+ <div class="main-header-nav-items" data-a11y-focus data-nav-tray>
+ <nav class="main-nav">
+ <ul>
+ <li>
+
+ <a href="/" class="main-nav-link mobile-only" >Home</a>
+ </li>
+ <li>
+
+ <a href="/new-homes/texas/greater-houston" class="main-nav-link find-a-home-link" >Find a Home</a>
+ </li>
+ <li>
+
+ <a href="/about-us/overview" class="main-nav-link " >About</a>
+ </li>
+ <li>
+
+ <a href="/why-mi/overview" class="main-nav-link " >Why M/I</a>
+ </li>
+ <li>
+
+ <a href="/incentives" class="main-nav-link " >Incentives</a>
+ </li>
+ <li>
+
+ <a href="/financing" class="main-nav-link " >Financing</a>
+ </li>
+ <li>
+
+ <a href="/support/warranty" class="main-nav-link " >Warranty</a>
+ </li>
+ <li>
+
+ <a href="/support" class="main-nav-link " >Contact</a>
+ </li>
+ <li>
+
+ <a href="/resources" class="main-nav-link " >Resources</a>
+ </li>
+ </ul>
+ </nav>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ <div class="aux-nav">
+ <ul>
+ <li data-a11y-focus>
+ <a href="/account/register" class="main-nav-link" >Sign Up</a>
+ </li>
+ <li data-a11y-focus>
+ <a href="/account/login" class="main-nav-link" >Log In</a>
+ </li>
+ </ul>
+ </div>
+ </div>
+ <button class="main-header-close-nav" data-close-nav>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ </div>
+</header>
+ <div class="breadcrumbs-bar">
+ <div class="breadcrumbs-wrapper">
+ <nav class="breadcrumbs">
+ <a class="button-plain" href="/">Home</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/communities">Texas</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/greater-houston/communities">Greater Houston</a>
+ <span class="seperator"> • </span>
+ <span>Fulshear</span>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/greater-houston/fulshear/summerview">Summerview</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/greater-houston/fulshear/summerview/armstrong-plan">Armstrong</a>
+ <span class="seperator"> • </span>
+ <span>32227 Morning Luster Court</span>
+ </nav>
+ </div>
+ </div>
+ <script>var bar = document.querySelector('.breadcrumbs-bar'); bar.setAttribute('style', 'height:' + bar.getBoundingClientRect().height + 'px');</script>
+<script type="application/ld+json">
+{
+"@context": "https://schema.org",
+"@type": "BreadcrumbList",
+"itemListElement":[
+{
+"@type":"ListItem",
+"position":1,
+"name":"Texas",
+"item":"https://www.mihomes.com/new-homes/texas/communities"
+},
+{
+"@type":"ListItem",
+"position":2,
+"name":"Greater Houston",
+"item":"https://www.mihomes.com/new-homes/texas/greater-houston/communities"
+},
+{
+"@type":"ListItem",
+"position":3,
+"name":"Fulshear",
+
+},
+{
+"@type":"ListItem",
+"position":4,
+"name":"Summerview",
+"item":"https://www.mihomes.com/new-homes/texas/greater-houston/fulshear/summerview"
+},
+{
+"@type":"ListItem",
+"position":5,
+"name":"Armstrong",
+"item":"https://www.mihomes.com/new-homes/texas/greater-houston/fulshear/summerview/armstrong-plan"
+},
+{
+"@type":"ListItem",
+"position":6,
+"name":"32227 Morning Luster Court",
+
+}
+]
+}
+</script>
+
+
+ <div class="page-notice-wrapper" id="page-notification"></div>
+ <main class="main-content" id="content" tabindex="0">
+
+<ul class="product-flags">
+</ul>
+<div class="image-banner">
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <img data-dam-generated alt="Armstrong Elevation G" height="1600" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/1758229/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/1758229/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/1758229/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/1758229/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/1758229/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/1758229/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/1758229/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="HOUS-Armstrong-ElevationG-Gen3-elev_DAY" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </a>
+ <div class="image-banner-more">
+ <a href="#product-gallery"
+ data-goto-slide="1"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="1"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Front Exterior" height="1367" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/3720094/50421.jpeg?timestamp=2025-09-17T05%3A23%3A16.7950770" srcset="https://dam.mihomes.com/media/3720094/50398.jpeg?timestamp=2025-09-17T05%3A23%3A14.4646460 300w, https://dam.mihomes.com/media/3720094/50397.jpeg?timestamp=2025-09-17T05%3A23%3A15.1875023 600w, https://dam.mihomes.com/media/3720094/50423.jpeg?timestamp=2025-09-17T05%3A23%3A17.9778170 900w, https://dam.mihomes.com/media/3720094/50396.jpeg?timestamp=2025-09-17T05%3A23%3A14.0816118 1200w, https://dam.mihomes.com/media/3720094/50421.jpeg?timestamp=2025-09-17T05%3A23%3A16.7950770 1800w, https://dam.mihomes.com/media/3720094/50422.jpeg?timestamp=2025-09-17T05%3A23%3A16.8455656 2400w" title="[L2414-z010]FrontExterior" width="2048" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="2"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="2"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Virtually Staged" height="832" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4428238/50421.jpeg?timestamp=2026-02-20T14%3A08%3A21.2195078" srcset="https://dam.mihomes.com/media/4428238/50398.jpeg?timestamp=2026-02-20T14%3A08%3A20.1987512 300w, https://dam.mihomes.com/media/4428238/50397.jpeg?timestamp=2026-02-20T14%3A08%3A20.1180919 600w, https://dam.mihomes.com/media/4428238/50423.jpeg?timestamp=2026-02-20T14%3A08%3A22.0138659 900w, https://dam.mihomes.com/media/4428238/50396.jpeg?timestamp=2026-02-20T14%3A08%3A19.7464118 1200w, https://dam.mihomes.com/media/4428238/50421.jpeg?timestamp=2026-02-20T14%3A08%3A21.2195078 1800w, https://dam.mihomes.com/media/4428238/50422.jpeg?timestamp=2026-02-20T14%3A08%3A21.5635365 2400w" title="[L9312-z004]none4" width="1248" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="3"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="3"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Virtually Staged" height="832" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4428240/50421.jpeg?timestamp=2026-02-20T14%3A08%3A29.6585933" srcset="https://dam.mihomes.com/media/4428240/50398.jpeg?timestamp=2026-02-20T14%3A08%3A26.5892109 300w, https://dam.mihomes.com/media/4428240/50397.jpeg?timestamp=2026-02-20T14%3A08%3A26.1302508 600w, https://dam.mihomes.com/media/4428240/50423.jpeg?timestamp=2026-02-20T14%3A08%3A30.6561332 900w, https://dam.mihomes.com/media/4428240/50396.jpeg?timestamp=2026-02-20T14%3A08%3A25.8400803 1200w, https://dam.mihomes.com/media/4428240/50421.jpeg?timestamp=2026-02-20T14%3A08%3A29.6585933 1800w, https://dam.mihomes.com/media/4428240/50422.jpeg?timestamp=2026-02-20T14%3A08%3A29.8666638 2400w" title="[L9312-z011]none11" width="1248" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="4"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="4"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Virtually Staged" height="832" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4428236/50421.jpeg?timestamp=2026-02-20T14%3A08%3A17.9204007" srcset="https://dam.mihomes.com/media/4428236/50398.jpeg?timestamp=2026-02-20T14%3A08%3A15.5812760 300w, https://dam.mihomes.com/media/4428236/50397.jpeg?timestamp=2026-02-20T14%3A08%3A14.9494736 600w, https://dam.mihomes.com/media/4428236/50423.jpeg?timestamp=2026-02-20T14%3A08%3A19.4493031 900w, https://dam.mihomes.com/media/4428236/50396.jpeg?timestamp=2026-02-20T14%3A08%3A14.5384004 1200w, https://dam.mihomes.com/media/4428236/50421.jpeg?timestamp=2026-02-20T14%3A08%3A17.9204007 1800w, https://dam.mihomes.com/media/4428236/50422.jpeg?timestamp=2026-02-20T14%3A08%3A18.6322526 2400w" title="[L9312-z003]none3" width="1248" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="third event-click image-banner-total gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <span class="button button-transparent">
+ View 12 Photos
+ </span>
+ </a>
+ </div>
+</div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Armstrong Elevation G" height="1600" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/1758229/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/1758229/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/1758229/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/1758229/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/1758229/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/1758229/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/1758229/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="HOUS-Armstrong-ElevationG-Gen3-elev_DAY" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Front Exterior" height="1367" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/3720094/50421.jpeg?timestamp=2025-09-17T05%3A23%3A16.7950770" srcset="https://dam.mihomes.com/media/3720094/50398.jpeg?timestamp=2025-09-17T05%3A23%3A14.4646460 300w, https://dam.mihomes.com/media/3720094/50397.jpeg?timestamp=2025-09-17T05%3A23%3A15.1875023 600w, https://dam.mihomes.com/media/3720094/50423.jpeg?timestamp=2025-09-17T05%3A23%3A17.9778170 900w, https://dam.mihomes.com/media/3720094/50396.jpeg?timestamp=2025-09-17T05%3A23%3A14.0816118 1200w, https://dam.mihomes.com/media/3720094/50421.jpeg?timestamp=2025-09-17T05%3A23%3A16.7950770 1800w, https://dam.mihomes.com/media/3720094/50422.jpeg?timestamp=2025-09-17T05%3A23%3A16.8455656 2400w" title="[L2414-z010]FrontExterior" width="2048" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Virtually Staged" height="832" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4428238/50421.jpeg?timestamp=2026-02-20T14%3A08%3A21.2195078" srcset="https://dam.mihomes.com/media/4428238/50398.jpeg?timestamp=2026-02-20T14%3A08%3A20.1987512 300w, https://dam.mihomes.com/media/4428238/50397.jpeg?timestamp=2026-02-20T14%3A08%3A20.1180919 600w, https://dam.mihomes.com/media/4428238/50423.jpeg?timestamp=2026-02-20T14%3A08%3A22.0138659 900w, https://dam.mihomes.com/media/4428238/50396.jpeg?timestamp=2026-02-20T14%3A08%3A19.7464118 1200w, https://dam.mihomes.com/media/4428238/50421.jpeg?timestamp=2026-02-20T14%3A08%3A21.2195078 1800w, https://dam.mihomes.com/media/4428238/50422.jpeg?timestamp=2026-02-20T14%3A08%3A21.5635365 2400w" title="[L9312-z004]none4" width="1248" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Virtually Staged" height="832" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4428240/50421.jpeg?timestamp=2026-02-20T14%3A08%3A29.6585933" srcset="https://dam.mihomes.com/media/4428240/50398.jpeg?timestamp=2026-02-20T14%3A08%3A26.5892109 300w, https://dam.mihomes.com/media/4428240/50397.jpeg?timestamp=2026-02-20T14%3A08%3A26.1302508 600w, https://dam.mihomes.com/media/4428240/50423.jpeg?timestamp=2026-02-20T14%3A08%3A30.6561332 900w, https://dam.mihomes.com/media/4428240/50396.jpeg?timestamp=2026-02-20T14%3A08%3A25.8400803 1200w, https://dam.mihomes.com/media/4428240/50421.jpeg?timestamp=2026-02-20T14%3A08%3A29.6585933 1800w, https://dam.mihomes.com/media/4428240/50422.jpeg?timestamp=2026-02-20T14%3A08%3A29.8666638 2400w" title="[L9312-z011]none11" width="1248" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Virtually Staged" height="832" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4428236/50421.jpeg?timestamp=2026-02-20T14%3A08%3A17.9204007" srcset="https://dam.mihomes.com/media/4428236/50398.jpeg?timestamp=2026-02-20T14%3A08%3A15.5812760 300w, https://dam.mihomes.com/media/4428236/50397.jpeg?timestamp=2026-02-20T14%3A08%3A14.9494736 600w, https://dam.mihomes.com/media/4428236/50423.jpeg?timestamp=2026-02-20T14%3A08%3A19.4493031 900w, https://dam.mihomes.com/media/4428236/50396.jpeg?timestamp=2026-02-20T14%3A08%3A14.5384004 1200w, https://dam.mihomes.com/media/4428236/50421.jpeg?timestamp=2026-02-20T14%3A08%3A17.9204007 1800w, https://dam.mihomes.com/media/4428236/50422.jpeg?timestamp=2026-02-20T14%3A08%3A18.6322526 2400w" title="[L9312-z003]none3" width="1248" class="image-banner-item-more" />
+ </span>
+ </div>
+
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <div class="modal fullscreen-modal gallery-modal gallery-modal--simple" data-modal="" id="simple-gallery-modal" data-track-views="">
+ <div class="gallery-modal__list-container">
+ <div class="gallery-modal__controls">
+ <button class="close-icon" data-modal-close>
+ <svg class="icon icon-close-gallery" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close-gallery"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__list-container-arrows">
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="prev" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="11" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="next" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="0" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__controls gallery-modal__controls__zoom">
+ <button class="close-icon" data-gallery="simple-gallery-modal" data-zoom>
+ <svg class="icon icon-zoom" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#zoom"></use>
+</svg>
+ </button>
+ </div>
+ <ul class="gallery-modal__list no-transition" style="transform: translateX(-200%);">
+
+ <li class="gallery-slide-container" data-slide-id="0" data-image="https://dam.mihomes.com/media/1758229/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/1758229/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/1758229/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/1758229/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/1758229/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/1758229/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" data-caption="Armstrong Elevation G" data-count="<strong>1</strong> of <strong>12</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Armstrong Elevation G" height="1600" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/1758229/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/1758229/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/1758229/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/1758229/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/1758229/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/1758229/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/1758229/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="HOUS-Armstrong-ElevationG-Gen3-elev_DAY" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="1" data-image="https://dam.mihomes.com/media/3720094/50398.jpeg?timestamp=2025-09-17T05%3A23%3A14.4646460 300w, https://dam.mihomes.com/media/3720094/50397.jpeg?timestamp=2025-09-17T05%3A23%3A15.1875023 600w, https://dam.mihomes.com/media/3720094/50423.jpeg?timestamp=2025-09-17T05%3A23%3A17.9778170 900w, https://dam.mihomes.com/media/3720094/50396.jpeg?timestamp=2025-09-17T05%3A23%3A14.0816118 1200w, https://dam.mihomes.com/media/3720094/50421.jpeg?timestamp=2025-09-17T05%3A23%3A16.7950770 1800w, https://dam.mihomes.com/media/3720094/50422.jpeg?timestamp=2025-09-17T05%3A23%3A16.8455656 2400w" data-caption="Front Exterior - Representational Photo" data-count="<strong>2</strong> of <strong>12</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Front Exterior" height="1367" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/3720094/50421.jpeg?timestamp=2025-09-17T05%3A23%3A16.7950770" srcset="https://dam.mihomes.com/media/3720094/50398.jpeg?timestamp=2025-09-17T05%3A23%3A14.4646460 300w, https://dam.mihomes.com/media/3720094/50397.jpeg?timestamp=2025-09-17T05%3A23%3A15.1875023 600w, https://dam.mihomes.com/media/3720094/50423.jpeg?timestamp=2025-09-17T05%3A23%3A17.9778170 900w, https://dam.mihomes.com/media/3720094/50396.jpeg?timestamp=2025-09-17T05%3A23%3A14.0816118 1200w, https://dam.mihomes.com/media/3720094/50421.jpeg?timestamp=2025-09-17T05%3A23%3A16.7950770 1800w, https://dam.mihomes.com/media/3720094/50422.jpeg?timestamp=2025-09-17T05%3A23%3A16.8455656 2400w" title="[L2414-z010]FrontExterior" width="2048" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="2" data-image="https://dam.mihomes.com/media/4428238/50398.jpeg?timestamp=2026-02-20T14%3A08%3A20.1987512 300w, https://dam.mihomes.com/media/4428238/50397.jpeg?timestamp=2026-02-20T14%3A08%3A20.1180919 600w, https://dam.mihomes.com/media/4428238/50423.jpeg?timestamp=2026-02-20T14%3A08%3A22.0138659 900w, https://dam.mihomes.com/media/4428238/50396.jpeg?timestamp=2026-02-20T14%3A08%3A19.7464118 1200w, https://dam.mihomes.com/media/4428238/50421.jpeg?timestamp=2026-02-20T14%3A08%3A21.2195078 1800w, https://dam.mihomes.com/media/4428238/50422.jpeg?timestamp=2026-02-20T14%3A08%3A21.5635365 2400w" data-caption="Virtually Staged - Representational Photo" data-count="<strong>3</strong> of <strong>12</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Virtually Staged" height="832" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4428238/50421.jpeg?timestamp=2026-02-20T14%3A08%3A21.2195078" srcset="https://dam.mihomes.com/media/4428238/50398.jpeg?timestamp=2026-02-20T14%3A08%3A20.1987512 300w, https://dam.mihomes.com/media/4428238/50397.jpeg?timestamp=2026-02-20T14%3A08%3A20.1180919 600w, https://dam.mihomes.com/media/4428238/50423.jpeg?timestamp=2026-02-20T14%3A08%3A22.0138659 900w, https://dam.mihomes.com/media/4428238/50396.jpeg?timestamp=2026-02-20T14%3A08%3A19.7464118 1200w, https://dam.mihomes.com/media/4428238/50421.jpeg?timestamp=2026-02-20T14%3A08%3A21.2195078 1800w, https://dam.mihomes.com/media/4428238/50422.jpeg?timestamp=2026-02-20T14%3A08%3A21.5635365 2400w" title="[L9312-z004]none4" width="1248" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="3" data-image="https://dam.mihomes.com/media/4428240/50398.jpeg?timestamp=2026-02-20T14%3A08%3A26.5892109 300w, https://dam.mihomes.com/media/4428240/50397.jpeg?timestamp=2026-02-20T14%3A08%3A26.1302508 600w, https://dam.mihomes.com/media/4428240/50423.jpeg?timestamp=2026-02-20T14%3A08%3A30.6561332 900w, https://dam.mihomes.com/media/4428240/50396.jpeg?timestamp=2026-02-20T14%3A08%3A25.8400803 1200w, https://dam.mihomes.com/media/4428240/50421.jpeg?timestamp=2026-02-20T14%3A08%3A29.6585933 1800w, https://dam.mihomes.com/media/4428240/50422.jpeg?timestamp=2026-02-20T14%3A08%3A29.8666638 2400w" data-caption="Virtually Staged - Representational Photo" data-count="<strong>4</strong> of <strong>12</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Virtually Staged" height="832" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4428240/50421.jpeg?timestamp=2026-02-20T14%3A08%3A29.6585933" srcset="https://dam.mihomes.com/media/4428240/50398.jpeg?timestamp=2026-02-20T14%3A08%3A26.5892109 300w, https://dam.mihomes.com/media/4428240/50397.jpeg?timestamp=2026-02-20T14%3A08%3A26.1302508 600w, https://dam.mihomes.com/media/4428240/50423.jpeg?timestamp=2026-02-20T14%3A08%3A30.6561332 900w, https://dam.mihomes.com/media/4428240/50396.jpeg?timestamp=2026-02-20T14%3A08%3A25.8400803 1200w, https://dam.mihomes.com/media/4428240/50421.jpeg?timestamp=2026-02-20T14%3A08%3A29.6585933 1800w, https://dam.mihomes.com/media/4428240/50422.jpeg?timestamp=2026-02-20T14%3A08%3A29.8666638 2400w" title="[L9312-z011]none11" width="1248" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="4" data-image="https://dam.mihomes.com/media/4428236/50398.jpeg?timestamp=2026-02-20T14%3A08%3A15.5812760 300w, https://dam.mihomes.com/media/4428236/50397.jpeg?timestamp=2026-02-20T14%3A08%3A14.9494736 600w, https://dam.mihomes.com/media/4428236/50423.jpeg?timestamp=2026-02-20T14%3A08%3A19.4493031 900w, https://dam.mihomes.com/media/4428236/50396.jpeg?timestamp=2026-02-20T14%3A08%3A14.5384004 1200w, https://dam.mihomes.com/media/4428236/50421.jpeg?timestamp=2026-02-20T14%3A08%3A17.9204007 1800w, https://dam.mihomes.com/media/4428236/50422.jpeg?timestamp=2026-02-20T14%3A08%3A18.6322526 2400w" data-caption="Virtually Staged - Representational Photo" data-count="<strong>5</strong> of <strong>12</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Virtually Staged" height="832" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4428236/50421.jpeg?timestamp=2026-02-20T14%3A08%3A17.9204007" srcset="https://dam.mihomes.com/media/4428236/50398.jpeg?timestamp=2026-02-20T14%3A08%3A15.5812760 300w, https://dam.mihomes.com/media/4428236/50397.jpeg?timestamp=2026-02-20T14%3A08%3A14.9494736 600w, https://dam.mihomes.com/media/4428236/50423.jpeg?timestamp=2026-02-20T14%3A08%3A19.4493031 900w, https://dam.mihomes.com/media/4428236/50396.jpeg?timestamp=2026-02-20T14%3A08%3A14.5384004 1200w, https://dam.mihomes.com/media/4428236/50421.jpeg?timestamp=2026-02-20T14%3A08%3A17.9204007 1800w, https://dam.mihomes.com/media/4428236/50422.jpeg?timestamp=2026-02-20T14%3A08%3A18.6322526 2400w" title="[L9312-z003]none3" width="1248" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="5" data-image="https://dam.mihomes.com/media/4428243/50398.jpeg 300w, https://dam.mihomes.com/media/4428243/50397.jpeg 600w, https://dam.mihomes.com/media/4428243/50423.jpeg 900w, https://dam.mihomes.com/media/4428243/50396.jpeg 1200w, https://dam.mihomes.com/media/4428243/50421.jpeg 1800w, https://dam.mihomes.com/media/4428243/50422.jpeg 2400w" data-caption="Virtually Staged - Representational Photo" data-count="<strong>6</strong> of <strong>12</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Virtually Staged" height="832" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4428243/50421.jpeg?timestamp=2026-02-20T14%3A08%3A34.4308948" srcset="https://dam.mihomes.com/media/4428243/50398.jpeg 300w, https://dam.mihomes.com/media/4428243/50397.jpeg 600w, https://dam.mihomes.com/media/4428243/50423.jpeg 900w, https://dam.mihomes.com/media/4428243/50396.jpeg 1200w, https://dam.mihomes.com/media/4428243/50421.jpeg 1800w, https://dam.mihomes.com/media/4428243/50422.jpeg 2400w" title="[L9312-z005]none5" width="1248" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="6" data-image="https://dam.mihomes.com/media/4428241/50398.jpeg 300w, https://dam.mihomes.com/media/4428241/50397.jpeg 600w, https://dam.mihomes.com/media/4428241/50423.jpeg 900w, https://dam.mihomes.com/media/4428241/50396.jpeg 1200w, https://dam.mihomes.com/media/4428241/50421.jpeg 1800w, https://dam.mihomes.com/media/4428241/50422.jpeg 2400w" data-caption="Virtually Staged - Representational Photo" data-count="<strong>7</strong> of <strong>12</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Virtually Staged" height="832" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4428241/50421.jpeg?timestamp=2026-02-20T14%3A08%3A31.6057147" srcset="https://dam.mihomes.com/media/4428241/50398.jpeg 300w, https://dam.mihomes.com/media/4428241/50397.jpeg 600w, https://dam.mihomes.com/media/4428241/50423.jpeg 900w, https://dam.mihomes.com/media/4428241/50396.jpeg 1200w, https://dam.mihomes.com/media/4428241/50421.jpeg 1800w, https://dam.mihomes.com/media/4428241/50422.jpeg 2400w" title="[L9312-z009]none9" width="1248" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="7" data-image="https://dam.mihomes.com/media/4428237/50398.jpeg 300w, https://dam.mihomes.com/media/4428237/50397.jpeg 600w, https://dam.mihomes.com/media/4428237/50423.jpeg 900w, https://dam.mihomes.com/media/4428237/50396.jpeg 1200w, https://dam.mihomes.com/media/4428237/50421.jpeg 1800w, https://dam.mihomes.com/media/4428237/50422.jpeg 2400w" data-caption="Virtually Staged - Representational Photo" data-count="<strong>8</strong> of <strong>12</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Virtually Staged" height="832" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4428237/50421.jpeg?timestamp=2026-02-20T14%3A08%3A17.7590186" srcset="https://dam.mihomes.com/media/4428237/50398.jpeg 300w, https://dam.mihomes.com/media/4428237/50397.jpeg 600w, https://dam.mihomes.com/media/4428237/50423.jpeg 900w, https://dam.mihomes.com/media/4428237/50396.jpeg 1200w, https://dam.mihomes.com/media/4428237/50421.jpeg 1800w, https://dam.mihomes.com/media/4428237/50422.jpeg 2400w" title="[L9312-z007]none7" width="1248" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="8" data-image="https://dam.mihomes.com/media/4428245/50398.jpeg 300w, https://dam.mihomes.com/media/4428245/50397.jpeg 600w, https://dam.mihomes.com/media/4428245/50423.jpeg 900w, https://dam.mihomes.com/media/4428245/50396.jpeg 1200w, https://dam.mihomes.com/media/4428245/50421.jpeg 1800w, https://dam.mihomes.com/media/4428245/50422.jpeg 2400w" data-caption="Virtually Staged - Representational Photo" data-count="<strong>9</strong> of <strong>12</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Virtually Staged" height="832" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4428245/50421.jpeg?timestamp=2026-02-20T14%3A08%3A39.8298888" srcset="https://dam.mihomes.com/media/4428245/50398.jpeg 300w, https://dam.mihomes.com/media/4428245/50397.jpeg 600w, https://dam.mihomes.com/media/4428245/50423.jpeg 900w, https://dam.mihomes.com/media/4428245/50396.jpeg 1200w, https://dam.mihomes.com/media/4428245/50421.jpeg 1800w, https://dam.mihomes.com/media/4428245/50422.jpeg 2400w" title="[L9312-z010]none10" width="1248" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="9" data-image="https://dam.mihomes.com/media/4428239/50398.jpeg 300w, https://dam.mihomes.com/media/4428239/50397.jpeg 600w, https://dam.mihomes.com/media/4428239/50423.jpeg 900w, https://dam.mihomes.com/media/4428239/50396.jpeg 1200w, https://dam.mihomes.com/media/4428239/50421.jpeg 1800w, https://dam.mihomes.com/media/4428239/50422.jpeg 2400w" data-caption="Virtually Staged - Representational Photo" data-count="<strong>10</strong> of <strong>12</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Virtually Staged" height="832" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4428239/50421.jpeg?timestamp=2026-02-20T14%3A08%3A24.0082799" srcset="https://dam.mihomes.com/media/4428239/50398.jpeg 300w, https://dam.mihomes.com/media/4428239/50397.jpeg 600w, https://dam.mihomes.com/media/4428239/50423.jpeg 900w, https://dam.mihomes.com/media/4428239/50396.jpeg 1200w, https://dam.mihomes.com/media/4428239/50421.jpeg 1800w, https://dam.mihomes.com/media/4428239/50422.jpeg 2400w" title="[L9312-z008]none8" width="1248" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="10" data-image="https://dam.mihomes.com/media/4428244/50398.jpeg 300w, https://dam.mihomes.com/media/4428244/50397.jpeg 600w, https://dam.mihomes.com/media/4428244/50423.jpeg 900w, https://dam.mihomes.com/media/4428244/50396.jpeg 1200w, https://dam.mihomes.com/media/4428244/50421.jpeg 1800w, https://dam.mihomes.com/media/4428244/50422.jpeg 2400w" data-caption="Virtually Staged - Representational Photo" data-count="<strong>11</strong> of <strong>12</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Virtually Staged" height="832" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4428244/50421.jpeg?timestamp=2026-02-20T14%3A08%3A37.3883362" srcset="https://dam.mihomes.com/media/4428244/50398.jpeg 300w, https://dam.mihomes.com/media/4428244/50397.jpeg 600w, https://dam.mihomes.com/media/4428244/50423.jpeg 900w, https://dam.mihomes.com/media/4428244/50396.jpeg 1200w, https://dam.mihomes.com/media/4428244/50421.jpeg 1800w, https://dam.mihomes.com/media/4428244/50422.jpeg 2400w" title="[L9312-z006]none6" width="1248" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="11" data-image="https://dam.mihomes.com/media/2749700/50398.jpeg 300w, https://dam.mihomes.com/media/2749700/50397.jpeg 600w, https://dam.mihomes.com/media/2749700/50423.jpeg 900w, https://dam.mihomes.com/media/2749700/50396.jpeg 1200w, https://dam.mihomes.com/media/2749700/50421.jpeg 1800w, https://dam.mihomes.com/media/2749700/50422.jpeg 2400w" data-caption="Exterior - Representational Photo" data-count="<strong>12</strong> of <strong>12</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Exterior" height="1363" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/2749700/50421.jpeg?timestamp=2025-02-05T06%3A16%3A53.8100234" srcset="https://dam.mihomes.com/media/2749700/50398.jpeg 300w, https://dam.mihomes.com/media/2749700/50397.jpeg 600w, https://dam.mihomes.com/media/2749700/50423.jpeg 900w, https://dam.mihomes.com/media/2749700/50396.jpeg 1200w, https://dam.mihomes.com/media/2749700/50421.jpeg 1800w, https://dam.mihomes.com/media/2749700/50422.jpeg 2400w" title="[L2304-z032]Exterior" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ </ul>
+ <div class="gallery-slide__footer">
+ <span class="gallery-slide__title title-caption"></span>
+ <div class="gallery-slide__share-buttons">
+ <span class="count"></span>
+ </div>
+ </div>
+ </div>
+ </div>
+</div><script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Product",
+ "additionalType": "https://schema.org/SingleFamilyResidence",
+ "name": "32227 Morning Luster Court",
+ "sku": "H3uW4n9sOEmbC8af4IrjZA",
+ "description": "Welcome to 32227 Morning Luster Court, Fulshear, Texas — a stunning new construction home built by M/I Homes. This 2-story home offers 2,697 square feet of thoughtfully designed living space with 5 bedrooms and 3 bathrooms, perfect for families seeking room to grow.",
+ "image": [
+ "https://dam.mihomes.com/media/1758229/50421.jpeg",
+ "https://dam.mihomes.com/media/3720094/50421.jpeg",
+ "https://dam.mihomes.com/media/4428238/50421.jpeg",
+ "https://dam.mihomes.com/media/4428240/50421.jpeg",
+ "https://dam.mihomes.com/media/4428236/50421.jpeg",
+ "https://dam.mihomes.com/media/4428243/50421.jpeg",
+ "https://dam.mihomes.com/media/4428241/50421.jpeg",
+ "https://dam.mihomes.com/media/4428237/50421.jpeg",
+ "https://dam.mihomes.com/media/4428245/50421.jpeg",
+ "https://dam.mihomes.com/media/4428239/50421.jpeg",
+ "https://dam.mihomes.com/media/4428244/50421.jpeg",
+ "https://dam.mihomes.com/media/2749700/50421.jpeg"
+ ],
+ "url": "https://www.mihomes.com/new-homes/texas/greater-houston/fulshear/summerview/armstrong-plan/32227-morning-luster-court",
+ "brand": {
+ "@type": "Organization",
+ "parentOrganization": {
+ "@type": "Organization",
+ "name": "M/I Homes"
+ },
+ "name": "Summerview"
+ },
+ "address": {
+ "@type": "PostalAddress",
+ "streetAddress": "32227 Morning Luster Court",
+ "addressLocality": "Fulshear",
+ "addressRegion": "TX",
+ "postalCode": "77441",
+ "addressCountry": "US"
+ },
+ "geo": {
+ "@type": "GeoCoordinates",
+ "latitude": 29.719259,
+ "longitude": -95.92629
+ },
+ "telephone": "+12813937070",
+ "offers": {
+ "@type": "Offer",
+ "url": "/new-homes/texas/greater-houston/fulshear/summerview/armstrong-plan/32227-morning-luster-court",
+ "price": "415990.00",
+ "priceCurrency": "USD",
+ "priceValidUntil": "08-12-2026",
+ "itemCondition": "https://schema.org/NewCondition",
+ "availability": "https://schema.org/InStock"
+ },
+ "model": "https://www.mihomes.com/new-homes/texas/greater-houston/fulshear/summerview/armstrong-plan",
+ "numberOfBedrooms": {
+ "@type": "Integer",
+ "value": 5
+ },
+ "numberOfFullBathrooms": {
+ "@type": "Integer",
+ "value": 3
+ },
+ "numberOfPartialBathrooms": {
+ "@type": "Integer",
+ "value": 0
+ },
+ "petsAllowed": true,
+ "yearBuilt": "2026",
+ "floorSize": {
+ "@type": "QuantitativeValue",
+ "value": 2697,
+ "unitCode": "FTK"
+ }
+}</script>
+<div class="modals" data-modal-container aria-hidden="true">
+ <div class="modal box" data-modal id="signup-modal">
+ <button class="modal-close" data-modal-close>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+
+ <h2 class="h1 alt">Sign up for an M/I Homes account</h2>
+ <p>Save your favorite home plans and communities, compare home plans and share your dream home with sales associates and real estate agents.</p>
+ <p>
+ Already a member?
+ <a class="button-plain" href="/account/login">Log In to your account »</a>
+ </p>
+ <a class="button button-wide" href="/account/register">
+ <span class="button-text">
+ Sign up with email
+ </span>
+ </a>
+ </div>
+</div>
+
+<div class="product-header" data-yes="true">
+
+ <div class="product-header-row product-header__top">
+
+ <div class="product-header-centered ">
+ <div>
+ <a href="/new-homes/texas/greater-houston/fulshear/summerview" class="button-plain">
+ Summerview
+ </a>
+
+ <h1 class="header-seo-h2">
+ 32227 Morning Luster Court, Fulshear, TX 77441
+ <button class="aux-nav-link button-favorite-product gami-favorite-save" data-favorite-type="Home" data-favorite-id="e2967b1f-6c7f-4938-9b0b-c69fe08ae364" data-favorite-fav-id="e2967b1f-6c7f-4938-9b0b-c69fe08ae364" data-add-favorite>
+ <svg class="icon icon-favorite" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#favorite"></use>
+</svg>
+ <span class="aux-nav-link-action-text">
+ Favorite
+ </span>
+ </button>
+ </h1>
+ </div>
+
+ <div class="product-header__actions">
+ <a class="button button-mobile-link button-virtual-tour event-click" href="https://my.matterport.com/show/?m=j3gCT9MoL2i" target="_blank" data-event-category=VirtualTour
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <span class="button-text">Virtual Tour</span>
+ </a>
+ </div>
+ </div>
+ </div>
+
+ <div class="product-header-row">
+ <div class="product-header-centered tooptip-container">
+ <div>
+ <dl>
+ <dt>Ready date:</dt>
+ <dd>
+ <strong class="current-size">
+ October 26, 2026
+ </strong>
+ </dd>
+ </dl>
+ </div>
+ <div class="product-header-price">
+
+ Price:
+ <span class="home-card-price-old">$458,155</span>
+ <span class="product-header-price-new" content="415990">$415,990</span>
+
+ (
+ <span data-open-modal="mortgage-payment-calculator-modal" data-tooltip="Click estimate to see how we calculate this monthly payment" data-annualinsurance="0" data-taxrate="3.167" data-interestrate="4.875" data-downpayment="4" data-price="415990" data-mortgage-monthly-payment tabindex="0" class="product-header-price-monthly"></span>
+ )
+
+
+ <span class="product-header-calculator">
+ <a class="button-plain button-plain-icon small button-icon-right gami-mortcalc-view" data-open-modal="mortgage-payment-calculator-modal">
+ <svg class="icon icon-calculator" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#calculator"></use>
+</svg>
+ Estimate Your Monthly Payment
+ </a>
+ </span>
+ </div>
+ </div>
+ </div>
+</div> <a rel="noopener" href="/new-homes/texas/greater-houston/fulshear/summerview/plat map?lot=260547002304" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=5702 Dawning Sun Street, Fulshear, TX 77441&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=RBUI0q6hEcEKDRCCfynZVuNaLw0=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+<div class="product-header-centered product-header-centered--contact-card-only">
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Summerview</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://www.google.com/maps/dir/?api=1&destination=29.719259,-95.92629">
+ 5702 Dawning Sun Street<br>Fulshear, TX 77441
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+</div><div class="product-header">
+ <div class="product-header product-header-navigation">
+ <nav class="product-header-subnav" data-subnav="">
+ <div class="product-header-subnav-wrapper">
+ <div class="product-header-subnav-mobile-bottom">
+ <a class="button button-contact-us" href="/support/sales">
+ <span class="button-text">
+ Contact Us
+ </span>
+ </a>
+ </div>
+
+
+ <a class="product-header-subnav-toggle subnav-link" data-subnav-toggle="">
+ <span class="text" data-subnav-text="">Overview</span>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </a>
+
+ <ul class="product-header-subnav-links" data-subnav-links=""></ul>
+ </div>
+ </nav>
+
+ <div class="product-header-subnav-spacer"></div>
+
+ <a href="#overview" class="product-header__back-to-top is-hidden" data-back-to-top>
+ <div class="arrow arrow--up"></div>
+ </a>
+ </div>
+</div><section class="content-inner-with-sidebar content-inner-with-sidebar-right">
+
+
+ <div class="content-inner-content">
+
+
+
+
+
+<section class="plan-specification">
+ <h2 class="plan-specification__header">
+ About 32227 Morning Luster Court
+ </h2>
+ <a class="plan-specification__get-directions button-plain button-plain-alt negative-top gami-directions-exit" target="_blank" href="https://www.google.com/maps/search/?api=1&query=29.719259,-95.92629">Get Directions</a>
+ <ul class="plan-specification__list">
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sq-ft" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sq-ft"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">square feet</span>
+ <strong class="plan-specification-item__value">
+ 2,697
+ </strong>
+ </div>
+ </li>
+ <li class="stories-specification">
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-homes" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#homes"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">stories</span>
+ <strong class="plan-specification-item__value">
+ 2
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-bed" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#bed"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">bedrooms</span>
+ <strong class="plan-specification-item__value">
+ 5
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-shower" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#shower"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">full bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 3
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sink" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sink"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">half bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 0
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-car" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#car"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">garages</span>
+ <strong class="plan-specification-item__value">
+ 2
+ <span data-tooltip="The most common approach to a home's garage, the front load garage incorporates the garage entry into a home's front elevation.">(Front Load)</span>
+
+ </strong>
+ </div>
+ </li>
+ </ul>
+</section>
+
+<div class="overview-table">
+ <div class="overview-table-table">
+ <dl>
+ <dt>City</dt>
+ <dd>Fulshear, TX</dd>
+
+ <dt>Owner's Suite</dt>
+ <dd>First Floor</dd>
+
+ <dt>County</dt>
+ <dd>Fort Bend</dd>
+
+ <dt>Home Type</dt>
+ <dd>Single Family Home</dd>
+
+ <dt>School District</dt>
+ <dd>Lamar CISD</dd>
+
+ <dt>Foundation Type</dt>
+ <dd>Slab</dd>
+
+ <dt>Home Plan</dt>
+ <dd>Armstrong</dd>
+
+ <dt>MLS Number</dt>
+ <dd>41062800</dd>
+
+ <dt>Homesite</dt>
+ <dd>2304</dd>
+
+ </dl>
+ </div>
+</div>
+<article class="faq__question-item faq__question-item--mobile-only">
+ <button class="faq__question" data-expander="" aria-controls="community-series-teaser" aria-expanded="false">
+ <span class="faq__icon-wrapper">
+ <span class="faq__icon gami-directions-view">
+ <svg class="icon icon-arrow" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#arrow"></use>
+</svg>
+ </span>
+ </span>
+ Part of the Smart Series
+ <span class="show-hide-text hidden-text">Hide</span>
+ </button>
+ <div class="faq__answer preview-box preview-box--series-tout" id="community-series-teaser" role="region" tabindex="-1">
+ <a class="preview-box__image preview-box__preview one-fourth" href="/new-homes/texas/greater-houston/fulshear/summerview/series/smart-series">
+ <img data-dam-generated alt="Preview image" height="1200" loading="lazy" sizes="(min-width: 48rem) 193px, 100vw" src="https://dam.mihomes.com/media/3524887/50421.jpeg?timestamp=2025-08-12T00%3A05%3A11.1642114" srcset="https://dam.mihomes.com/media/3524887/50398.jpeg?timestamp=2025-08-12T00%3A05%3A08.6102193 300w, https://dam.mihomes.com/media/3524887/50397.jpeg?timestamp=2025-08-12T00%3A05%3A06.6803610 600w, https://dam.mihomes.com/media/3524887/50423.jpeg?timestamp=2025-08-12T00%3A05%3A16.2317146 900w, https://dam.mihomes.com/media/3524887/50396.jpeg?timestamp=2025-08-12T00%3A05%3A05.4091756 1200w, https://dam.mihomes.com/media/3524887/50421.jpeg?timestamp=2025-08-12T00%3A05%3A11.1642114 1800w, https://dam.mihomes.com/media/3524887/50422.jpeg?timestamp=2025-08-12T00%3A05%3A13.4367997 2400w" title="[L3406-z000]FrontExterior" width="1800" class="cover-image" />
+ </a>
+ <div class="preview-box__content ">
+ <div class="preview-box__text__series-teaser">
+ <h3>Part of the Smart Series</h3>
+ <p>
+ Our Smart Series boasts over 20 floorplans for 1- and 2-story single family homes, ranging from 1,295 to 2,825 square feet and starting in the high $200s.
+ </p>
+ </div>
+ <p>
+ <a class="button" href="/new-homes/texas/greater-houston/fulshear/summerview/series/smart-series">Learn More</a>
+ </p>
+ </div>
+ </div>
+</article> <h2>
+ New 5-Bedroom Home for Sale in Fulshear, Texas
+ </h2>
+ <div class="content-inner-content__capped-mobile-content">
+ <p>Welcome to 32227 Morning Luster Court, Fulshear, Texas — a stunning new construction home built by M/I Homes. This 2-story home offers 2,697 square feet of thoughtfully designed living space with 5 bedrooms and 3 bathrooms, perfect for families seeking room to grow.</p>
+<p>Step inside to discover an open-concept living space that creates a seamless flow between gathering areas, ideal for everyday living and entertaining. The quality of design is evident throughout, with carefully selected finishes and attention to detail in every room.</p>
+<p><strong>Key Features:</strong></p>
+<ul>
+ <li>5 spacious bedrooms</li>
+ <li>3 full bathrooms</li>
+ <li>2,697 square feet of living space</li>
+ <li>2-story new construction by M/I Homes</li>
+ <li>Open-concept living space</li>
+ <li>Covered patio for outdoor enjoyment</li>
+ <li>Owner's bedroom with private en-suite bathroom</li>
+</ul>
+<p>The owner's bedroom features a private en-suite bathroom, offering a comfortable retreat at the end of each day. Additional bedrooms provide generous space for family members, guests, or a home office.</p>
+<p>Outside, the covered patio extends your living area and provides a shaded space for relaxation and gatherings throughout the year.</p>
+<p>This home is situated in a well-planned neighborhood with proximity to parks, giving residents convenient access to outdoor recreation and green spaces. The quality of design in both the home and surrounding neighborhood reflects a commitment to thoughtful, lasting construction.</p>
+
+ <!-- and done -->
+ <h3>
+ About the Community
+ </h3>
+ <p>
+ Summerview in Fulshear offers a welcoming place to call home, surrounded by scenic landscapes and the small‑town charm that defines this fast‑growing area. Located near FM‑359 with quick access to I‑10, the community provides an easy connection to Katy and Houston while maintaining a peaceful suburban feel.
+
+The neighborhood features single family homes from the Smart Series and Premier Series, designed with open living areas, flexible spaces, and modern style. Homes sit on 40’ and 50’ homesites, and buyers can personalize finishes through an à la carte design experience.
+
+Residents enjoy walking trails around a tranquil pond, a playground, and a splash pad, along with nearby shopping, dining, and recreation in Katy. Summerview is zoned to the A‑rated Lamar Consolidated Independent School District, offering families added peace of mind.
+
+With thoughtful home designs and a relaxed, connected lifestyle, Summerview brings comfort and convenience together in a growing Fulshear setting.
+ <br />
+ <a class="button-plain button-plain-alt" href="/new-homes/texas/greater-houston/fulshear/summerview">Learn more about this community »</a>
+ </p>
+ </div>
+ <button class="faq__question color-aqua" aria-expanded="false" data-read-more="">
+ <span class="faq__icon-wrapper">
+ <span class="faq__icon">
+ <svg class="icon icon-arrow" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#arrow"></use>
+</svg>
+ </span>
+ </span>
+ <span data-read-more-collapsed="">Read More</span>
+ <span data-read-more-expanded="">Show Less</span>
+ <span class="show-hide-text hidden-text">Show</span>
+ </button>
+ <div class="matterport-wrapper">
+ <iframe loading="lazy" class="box-full" width="803" height="480" src="https://my.matterport.com/show/?m=j3gCT9MoL2i" frameborder="0" allowfullscreen allow="vr" style="align-self: center" data-subnav-page-link="3D Tour" id="3dTour"></iframe>
+ </div>
+
+
+
+ </div>
+
+ <div class="content-sidebar-right">
+ <a rel="noopener" href="/new-homes/texas/greater-houston/fulshear/summerview/plat map?lot=260547002304" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=5702 Dawning Sun Street, Fulshear, TX 77441&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=RBUI0q6hEcEKDRCCfynZVuNaLw0=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Summerview</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://www.google.com/maps/dir/?api=1&destination=29.719259,-95.92629">
+ 5702 Dawning Sun Street<br>Fulshear, TX 77441
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+
+
+ <figure class="lead-form lead-form-sidebar lead-form-sidebar--compact lead-form-sidebar-signup">
+ <div class="lead-form-container">
+ <div id="lead-sidebar-header" class="lead-form-sidebar-header lead-form-sidebar-header-image">
+ <div id="isa-information" data-sidebar-section="1">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-3">
+ <img data-dam-generated alt="kschieb@MIHOMES.com-0515202606.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4749913/50421.jpeg?timestamp=2026-05-15T10%3A57%3A30.3393142" srcset="https://dam.mihomes.com/media/4749913/50398.jpeg?timestamp=2026-05-15T10%3A57%3A29.1231152 300w, https://dam.mihomes.com/media/4749913/50397.jpeg?timestamp=2026-05-15T10%3A57%3A28.5622574 600w, https://dam.mihomes.com/media/4749913/50423.jpeg?timestamp=2026-05-15T10%3A57%3A31.4095112 900w, https://dam.mihomes.com/media/4749913/50396.jpeg?timestamp=2026-05-15T10%3A57%3A27.9993137 1200w, https://dam.mihomes.com/media/4749913/50421.jpeg?timestamp=2026-05-15T10%3A57%3A30.3393142 1800w, https://dam.mihomes.com/media/4749913/50422.jpeg?timestamp=2026-05-15T10%3A57%3A31.9837747 2400w" title="kschieb@MIHOMES.com-0515202606" width="96" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-3">
+ <img data-dam-generated alt="jwammack@mihomes.com-0515202606.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4749912/50421.jpeg?timestamp=2026-05-15T10%3A57%3A25.2653266" srcset="https://dam.mihomes.com/media/4749912/50398.jpeg?timestamp=2026-05-15T10%3A57%3A21.1585036 300w, https://dam.mihomes.com/media/4749912/50397.jpeg?timestamp=2026-05-15T10%3A57%3A20.0113438 600w, https://dam.mihomes.com/media/4749912/50423.jpeg?timestamp=2026-05-15T10%3A57%3A25.2663942 900w, https://dam.mihomes.com/media/4749912/50396.jpeg?timestamp=2026-05-15T10%3A57%3A20.5825822 1200w, https://dam.mihomes.com/media/4749912/50421.jpeg?timestamp=2026-05-15T10%3A57%3A25.2653266 1800w, https://dam.mihomes.com/media/4749912/50422.jpeg?timestamp=2026-05-15T10%3A57%3A25.2653069 2400w" title="jwammack@mihomes.com-0515202606" width="96" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-3">
+ <img data-dam-generated alt="Susan Fendley" height="1800" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4015511/50421.jpeg?timestamp=2025-11-11T13%3A58%3A34.7199592" srcset="https://dam.mihomes.com/media/4015511/50398.jpeg?timestamp=2025-11-11T13%3A58%3A33.5866155 300w, https://dam.mihomes.com/media/4015511/50397.jpeg?timestamp=2025-11-11T13%3A58%3A32.4902079 600w, https://dam.mihomes.com/media/4015511/50423.jpeg?timestamp=2025-11-11T13%3A58%3A35.6220231 900w, https://dam.mihomes.com/media/4015511/50396.jpeg?timestamp=2025-11-11T13%3A58%3A33.4179743 1200w, https://dam.mihomes.com/media/4015511/50421.jpeg?timestamp=2025-11-11T13%3A58%3A34.7199592 1800w, https://dam.mihomes.com/media/4015511/50422.jpeg?timestamp=2025-11-11T13%3A58%3A35.4540301 2400w" title="Susan Fendley" width="1800" class="cover-image" />
+ </div>
+ </div>
+ <h3 class="">Have questions for us?</h3>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=2813937070'>(281) 393-7070</a>
+ </p>
+ </div>
+ <div id="form-agent-header" class="lead-form-sidebar-section right" style="display: none;">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+
+ </div>
+ <div class="lead-form-sidebar-form" data-lead-form-sidebar="">
+ <div class="lead-form-sidebar-errors"></div>
+<form action="/api/LeadGenFormSidebar/LeadGenFormSidebar" data-gami-event="gami-form-question" data-parsley-validate="" data-sidebar-hidden-required="" data-sidebar-nav-check="visit_sidebar" method="post" name="basic_sidebar" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="018e330a-076c-4134-99ca-0db27414c629" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Inventory" /><input id="PostType" name="PostType" type="hidden" value="sidebar" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:47 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="ItemId" name="ItemId" type="hidden" value="e2967b1f-6c7f-4938-9b0b-c69fe08ae364" /><input id="HomeType" name="HomeType" type="hidden" value="Single Family Home" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 443px;">
+ <div class="align-left center lead-form-sidebar-section" data-cta="Request Information" data-sidebar-section="0">
+ <div>
+
+ <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="">
+ </div>
+
+ <div class="form-field no-label-errors" style="margin-top: 1px">
+ <label for="fullname_sidebar"></label>
+ <input type="text"
+ name="FormFullName"
+ id="fullname_sidebar"
+ placeholder="Full Name"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required." data-parsley-trigger="blur"
+ maxlength="60"
+ data-parsley-filter-emoji=""
+ >
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormEmailAddress"
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="phone_sidebar">Phone Number</label>
+ <input class="gami-tel" type="tel"
+ autocomplete="tel-national"
+ name="FormPhoneNumber"
+ id="phone_sidebar"
+ placeholder="Phone Number" +
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ value=""
+
+ data-parsley-phone-number="" data-parsley-trigger="blur"
+ maxlength="25">
+ </div>
+
+ <div class="form-field no-label-errors">
+ <label for="comments_sidebar">Questions or Comments</label>
+ <textarea rows="5"
+ name="FormComments"
+ id="comments_sidebar"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000">Please send me information about 32227 Morning Luster Court</textarea>
+ </div>
+ </div>
+ <div>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox hide" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input data-parsley-multiple="visit_sidebar" name="visit_sidebar" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to plan a visit</span>
+ </label>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormEmailOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSAssociateCommunicationsOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" data-sidebar-section="1" tabindex="-1">
+ <div>
+ <h4>Plan a visit</h4>
+ <p>Select your preferred day and time and we’ll help set up the perfect visit.</p>
+ </div>
+ <div>
+ <div class="select no-label-errors">
+ <label for="tripday_sidebar"> </label>
+ <div class="select-wrap">
+<select data-nested-select="#select-triptime-block-sidebar" data-parsley-group="visit_sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+
+ <div class="select no-label-errors">
+ <label for="triptime_sidebar"> </label>
+ <div class="select-wrap">
+<select data-parsley-group="visit_sidebar" id="triptime_sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" dta-cta="Continue" data-sidebar-section="2" data-agent-section tabindex="-1">
+
+ <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0">
+ <div class="align-left center lead-form-sidebar-section" data-sidebar-section="0">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button form-submit">
+ <span class="button-text">Request Information</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-left lead-form-sidebar-section right" data-sidebar-section="1">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit" disabled tabindex="-1">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="2">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button" disabled tabindex="-1">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit" disabled tabindex="-1">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+ </div>
+ </div>
+</form> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 25px;">
+ <div class="align-center center lead-form-sidebar-section" data-sidebar-section="0">
+ <button class="button-plain small" data-open-modal="privacy-policy-modal" href="javascript:void()">Privacy Policy</button>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="1">
+ <button class="button-plain small" data-sidebar-nav="0" tabindex="-1">« Go Back</button>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <!-- THANK YOU MESSAGE -->
+ <div class="lead-form-container-success">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-success lead-form-sidebar-header-image">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" data-parsley-validate="" method="POST" name="thanksyou_sidebar" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+ <div>
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+ <div class="form-field form-field-password">
+ <label for="password"> </label>
+ <input data-parsley-required-message="Password is required." data-parsley-valid-password="" id="password" minlength="8" name="password" placeholder="Password" required="" type="password" data-parsley-filter-emoji="" data-parsley-trigger="blur">
+ <button class="password-input-change" data-input-change="" type="button">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)" tabindex="0">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">
+ Create Account
+ </span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ <h3 class="h3 preview-box__header">
+ Incentives
+ </h3>
+ <a class="incentive incentive__sidebar--simple" href="/new-homes/texas/greater-houston/incentives/beat-the-heat">
+ <div class="incentive-background">
+ <img data-dam-generated alt="Beat the Heat Savings" height="1200" loading="eager" sizes="(min-width: 64rem) 328px, 100vw" src="https://dam.mihomes.com/media/4608788/50421.jpeg" srcset="https://dam.mihomes.com/media/4608788/50398.jpeg?timestamp=2026-04-09T20%3A01%3A32.5717027 300w, https://dam.mihomes.com/media/4608788/50397.jpeg?timestamp=2026-04-09T20%3A01%3A30.4800729 600w, https://dam.mihomes.com/media/4608788/50423.jpeg?timestamp=2026-04-09T20%3A01%3A37.2955785 900w, https://dam.mihomes.com/media/4608788/50396.jpeg?timestamp=2026-04-09T20%3A01%3A28.3996383 1200w, https://dam.mihomes.com/media/4608788/50421.jpeg?timestamp=2026-04-09T20%3A01%3A35.8482981 1800w, https://dam.mihomes.com/media/4608788/50422.jpeg?timestamp=2026-04-09T20%3A01%3A37.3648083 2400w" title="Beat the Heat - Card Image" width="1800" class="cover-image cover-image--abs" />
+ <div class="incentive__badge">
+<img data-dam-generated alt="Beat the Heat Savings" height="250" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4608787/50421.jpeg?timestamp=2026-04-09T20%3A01%3A34.9550629" srcset="https://dam.mihomes.com/media/4608787/50398.jpeg?timestamp=2026-04-09T20%3A01%3A31.6478142 300w, https://dam.mihomes.com/media/4608787/50397.jpeg?timestamp=2026-04-09T20%3A01%3A28.9717921 600w, https://dam.mihomes.com/media/4608787/50423.jpeg?timestamp=2026-04-09T20%3A01%3A37.5471390 900w, https://dam.mihomes.com/media/4608787/50396.jpeg?timestamp=2026-04-09T20%3A01%3A27.3019546 1200w, https://dam.mihomes.com/media/4608787/50421.jpeg?timestamp=2026-04-09T20%3A01%3A34.9550629 1800w, https://dam.mihomes.com/media/4608787/50422.jpeg?timestamp=2026-04-09T20%3A01%3A36.9908980 2400w" title="Beat the Heat - Badge" width="250" class="incentive__badge-background" maxwidth="2400" /> </div>
+ </div>
+ <div class="incentive-inner">
+ <span class="incentive-title--wrapper">
+ <p class="incentive-title">Beat the Heat</p>
+ </span>
+ <p class="incentive-sub-headline">Summer savings have arrived. Save big now with free appliances**, closing costs***, and more for a limited time only.</p>
+ <p class="incentive-button--wrapper">
+ <span class="button button-small" href="/new-homes/texas/greater-houston/incentives/beat-the-heat">
+ <span class="button-text uppercase">View Details</span>
+ </span>
+ </p>
+ </div>
+ </a>
+
+</div>
+</section>
+
+ <div id="design" class="box box-full box-no-padding-bottom" data-subnav-page-link="Design Options">
+ <div class="content-inner-centered">
+ <h2>Add the perfect finishing touch</h2>
+ <p class="subtitle content-inner-centered-narrow negative-top">
+ Put your personal touch on these Quick Move-In Homes with some selections from our Design Studio.
+ </p>
+ <div class="button-tooltip-wrapper">
+ <a class="button button-tooltip event-click" href="https://edc.envisionoptions.com/browser.aspx?NHTNumber=MIHOMES&Loc1=100&Lev1=CORP&Loc2=260&Lev2=DIV&HomeNumber=14201B&Page=Confirmselection&utm_source=mihomes.com&utm_campaign=&utm_content=summerview-Armstrong-32227-Morning-Luster-Court&utm_term=" target="_blank" data-event-category=OptionsGallery
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ See This Home's Options
+ </a>
+
+
+ </div>
+ <a class="button" href="/design/design-studio">
+ <span class="button-text">
+ Visit a Design Studio
+ </span>
+ </a>
+ </div>
+ </div>
+ <div class="box box-full box-no-padding-top">
+ <div class="contained-width">
+ <hr class="hr-even">
+
+ <h4>Incentives</h4>
+ <article class="preview-box ">
+ <a class="preview-box-link" href="/new-homes/texas/greater-houston/incentives/beat-the-heat">
+ <div class="preview-box__image preview-box__preview one-third">
+ <img data-dam-generated alt="Beat the Heat Savings" height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4608788/50421.jpeg" srcset="https://dam.mihomes.com/media/4608788/50398.jpeg?timestamp=2026-04-09T20%3A01%3A32.5717027 300w, https://dam.mihomes.com/media/4608788/50397.jpeg?timestamp=2026-04-09T20%3A01%3A30.4800729 600w, https://dam.mihomes.com/media/4608788/50423.jpeg?timestamp=2026-04-09T20%3A01%3A37.2955785 900w" title="Beat the Heat - Card Image" width="1800" class="cover-image" maxwidth="900" />
+ </div>
+ <div class="preview-box__content">
+ <h3 class="h3 preview-box__header">
+ Beat the Heat
+
+
+ </h3>
+ <p class="preview-box__text">Summer savings have arrived. Save big now with free appliances**, closing costs***, and more for a limited time only.</p>
+ <p>
+ <span class="button-plain button-plain-alt" href="/new-homes/texas/greater-houston/incentives/beat-the-heat">View Details »</span>
+ </p>
+ </div>
+ </a>
+ </article>
+ <article class="preview-box ">
+ <a class="preview-box-link" href="/new-homes/texas/greater-houston/incentives/rate-lock">
+ <div class="preview-box__image preview-box__preview one-third">
+ <img data-dam-generated alt="Lock 4 Later" height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/325755/50396.jpeg" srcset="https://dam.mihomes.com/media/325755/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/325755/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/325755/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w" title="32963-CORP-Lock-4-Later-Incentive Page 1800x1200 Pattern" width="1800" class="cover-image" maxwidth="900" />
+ </div>
+ <div class="preview-box__content">
+ <h3 class="h3 preview-box__header">
+ Long-Term Rate Lock
+
+
+ </h3>
+ <p class="preview-box__text">Thinking about moving later? At M/I Homes, we understand that buying a home is one of the most significant decisions you'll ever make. That's why we're offering a special extended rate lock through M/I Financial, LLC to give you peace of mind and financial stability during your home-buying journey.
+
+</p>
+ <p>
+ <span class="button-plain button-plain-alt" href="/new-homes/texas/greater-houston/incentives/rate-lock">View Details »</span>
+ </p>
+ </div>
+ </a>
+ </article>
+ </div>
+ </div>
+
+ <div id="floor" class="box box-full box-last event-inview" data-subnav-page-link="FloorPlan" data-event-category=Floorplan
+ data-event-action=scroll
+ data-event-label=view
+>
+ <div class="content-inner-centered content-inner-centered--mobile">
+<img data-dam-generated alt="Armstrong First Floor" height="796" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/5080419/50421.jpeg?timestamp=2026-07-29T20%3A22%3A38.0186163" srcset="https://dam.mihomes.com/media/5080419/50398.jpeg?timestamp=2026-07-29T20%3A22%3A36.3028190 300w, https://dam.mihomes.com/media/5080419/50397.jpeg?timestamp=2026-07-29T20%3A22%3A36.0956575 600w, https://dam.mihomes.com/media/5080419/50423.jpeg?timestamp=2026-07-29T20%3A22%3A39.0846966 900w, https://dam.mihomes.com/media/5080419/50396.jpeg?timestamp=2026-07-29T20%3A22%3A36.2640009 1200w, https://dam.mihomes.com/media/5080419/50421.jpeg?timestamp=2026-07-29T20%3A22%3A38.0186163 1800w, https://dam.mihomes.com/media/5080419/50422.jpeg?timestamp=2026-07-29T20%3A22%3A38.6721513 2400w" title="Summerview L2304 Armstrong_First Floor" width="465" class="cover-image cover-image--abs" /> <h2>Floorplan Options for Your New Home</h2>
+ <p class="content-inner-centered-narrow negative-top subtitle">The Armstrong accommodates a variety of household living arrangements with its highly desired flexibility and modern design. Explore the many possibilities in the popular Armstrong plan.</p>
+ <a target="_blank" class="button floor-plan-options__button event-click" href="https://rifp.ml3ds-icon.com/#/floorplan/279958?pcoLink=67541&pco=822116%2c822119%2c822121%2c954282%2c1003594%2c1003595&reverseFloorPlan=false" data-event-category=Floorplan
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <svg class="icon icon-fullscreen" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#fullscreen"></use>
+</svg>
+ <span class="button-text">
+ Show Floorplan
+ </span>
+ </a>
+ </div>
+ <section class="floor-plan-options">
+ <iframe loading="lazy" id="floor-plan" data-fullsize class="floor-plan-options__iframe" data-src="https://rifp.ml3ds-icon.com/#/floorplan/279958?pcoLink=67541&pco=822116%2c822119%2c822121%2c954282%2c1003594%2c1003595&reverseFloorPlan=false" scrolling="no" style="overflow: hidden">
+ <p>Your browser does not support iframes.</p>
+ </iframe>
+ </section>
+ </div>
+
+ <div class="box box-full box-no-padding-top-bottom " id="">
+ <div class="content-inner-centered">
+ <div class="leadgenTitleBlock">
+ <h2 class="h2">Ready to plan a visit? We can help</h2>
+ <p class="subtitle marginless">Send us your preferred time to stop by and a sales representative will take care of the rest</p>
+ </div>
+ <section class="lead-form">
+ <div id="lead-form-block-user-info" class="lead-form-container lead-form-block" data-lead-form-sidebar="">
+ <aside class="lead-form-block__details" style="">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-3">
+ <img data-dam-generated alt="kschieb@MIHOMES.com-0515202606.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4749913/50421.jpeg?timestamp=2026-05-15T10%3A57%3A30.3393142" srcset="https://dam.mihomes.com/media/4749913/50398.jpeg?timestamp=2026-05-15T10%3A57%3A29.1231152 300w, https://dam.mihomes.com/media/4749913/50397.jpeg?timestamp=2026-05-15T10%3A57%3A28.5622574 600w, https://dam.mihomes.com/media/4749913/50423.jpeg?timestamp=2026-05-15T10%3A57%3A31.4095112 900w, https://dam.mihomes.com/media/4749913/50396.jpeg?timestamp=2026-05-15T10%3A57%3A27.9993137 1200w, https://dam.mihomes.com/media/4749913/50421.jpeg?timestamp=2026-05-15T10%3A57%3A30.3393142 1800w, https://dam.mihomes.com/media/4749913/50422.jpeg?timestamp=2026-05-15T10%3A57%3A31.9837747 2400w" title="kschieb@MIHOMES.com-0515202606" width="96" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-3">
+ <img data-dam-generated alt="jwammack@mihomes.com-0515202606.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4749912/50421.jpeg?timestamp=2026-05-15T10%3A57%3A25.2653266" srcset="https://dam.mihomes.com/media/4749912/50398.jpeg?timestamp=2026-05-15T10%3A57%3A21.1585036 300w, https://dam.mihomes.com/media/4749912/50397.jpeg?timestamp=2026-05-15T10%3A57%3A20.0113438 600w, https://dam.mihomes.com/media/4749912/50423.jpeg?timestamp=2026-05-15T10%3A57%3A25.2663942 900w, https://dam.mihomes.com/media/4749912/50396.jpeg?timestamp=2026-05-15T10%3A57%3A20.5825822 1200w, https://dam.mihomes.com/media/4749912/50421.jpeg?timestamp=2026-05-15T10%3A57%3A25.2653266 1800w, https://dam.mihomes.com/media/4749912/50422.jpeg?timestamp=2026-05-15T10%3A57%3A25.2653069 2400w" title="jwammack@mihomes.com-0515202606" width="96" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-3">
+ <img data-dam-generated alt="Susan Fendley" height="1800" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4015511/50421.jpeg?timestamp=2025-11-11T13%3A58%3A34.7199592" srcset="https://dam.mihomes.com/media/4015511/50398.jpeg?timestamp=2025-11-11T13%3A58%3A33.5866155 300w, https://dam.mihomes.com/media/4015511/50397.jpeg?timestamp=2025-11-11T13%3A58%3A32.4902079 600w, https://dam.mihomes.com/media/4015511/50423.jpeg?timestamp=2025-11-11T13%3A58%3A35.6220231 900w, https://dam.mihomes.com/media/4015511/50396.jpeg?timestamp=2025-11-11T13%3A58%3A33.4179743 1200w, https://dam.mihomes.com/media/4015511/50421.jpeg?timestamp=2025-11-11T13%3A58%3A34.7199592 1800w, https://dam.mihomes.com/media/4015511/50422.jpeg?timestamp=2025-11-11T13%3A58%3A35.4540301 2400w" title="Susan Fendley" width="1800" class="cover-image" />
+ </div>
+ </div>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=2813937070'>(281) 393-7070</a>
+ </p>
+ </aside>
+<form action="/api/LeadGenFormBlock/LeadGenFormBlock" class="lead-form-block__form" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="018e330a-076c-4134-99ca-0db27414c629" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Model" /><input id="PostType" name="PostType" type="hidden" value="block" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:47 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="FormAgentEmailAddress" name="FormAgentEmailAddress" type="hidden" value="" /><input id="ItemId" name="ItemId" type="hidden" value="e2967b1f-6c7f-4938-9b0b-c69fe08ae364" /><input id="HomeType" name="HomeType" type="hidden" value="Single Family Home" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="" hidden>
+ </div>
+ <div class="form-field">
+ <label for="fullname">Full Name </label>
+ <input type="text"
+ name="FormFullName"
+ placeholder="John Doe"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required."
+ maxlength="60"
+
+ data-parsley-filter-emoji=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="emailaddress">Email Address </label>
+ <input type="email"
+ name="FormEmailAddress" ,
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field">
+ <label for="phone">Phone Number </label>
+ <input class="gami-tel" type="tel"
+ name="FormPhoneNumber"
+ id="phone"
+ placeholder="5555555555"
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ maxlength="25"
+ value=""
+
+ data-parsley-phone-number=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="input">Questions or Comments </label>
+ <textarea rows="5"
+ name="FormComments"
+ id="input"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000"></textarea>
+ </div>
+ <div class="lead-form-block__contacts">
+ <div class="form-field select" {="">
+ <label for="tripday_block">Preferred Day <em> (Optional)</em></label>
+ <div class="select-wrap">
+ <div class="select-wrap">
+<select date-nested-select="#select-triptime-block-sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+
+ <div class="form-field select" {="">
+ <label for="triptime_block">Preferred Time <em> (Optional)</em></label>
+ <div class="select-wrap">
+
+<select id="select-triptime-block-sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-block__checkboxes-container">
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormEmailOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSAssociateCommunicationsOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ <div class="lead-form-block__submit">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+
+ <span class="align-center">
+ <a class="button-plain small" data-open-modal="privacy-policy-modal">Privacy Policy</a>
+ </span>
+ </div>
+</form> </div>
+ <div id="lead-form-block-agent-form" class="lead-form-container lead-form-block" data-lead-form-sidebar="" data-agent-section style="display: none;">
+ <figure class="lead-form lead-form-sidebar">
+ <div id="form-agent-header" class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+<form action="/new-homes/texas/greater-houston/fulshear/summerview/armstrong-plan/32227-morning-luster-court" class="lead-form-sidebar-section" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""> <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ id="block-agent-email"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+</form> </div>
+ </figure>
+ </div>
+
+
+
+ <div class="lead-form-container-success">
+ <figure class="lead-form lead-form-sidebar">
+ <div class="lead-form-container-success" style="display: block">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" method="POST" name="thanksyou_sidebar" data-parsley-validate="" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+
+ <div>
+ <div class="form-field form-field-password">
+ <label for="password"></label>
+ <input type="password"
+ name="password"
+ id="password"
+ placeholder="Password"
+ data-parsley-valid-password=""
+ minlength="8"
+ required=""
+ data-parsley-required-message="Password is required."
+ data-parsley-trigger="blur">
+
+ <button type="button" class="password-input-change" data-input-change="">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span tabindex="0"
+ data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">Create Account</span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ </div>
+ </section>
+ </div>
+ </div>
+
+ <div class="box box-centered box-full box-transparent" id="neraby">
+ <div class="box-full-inner">
+ <h3 class="h2">
+ Other Quick Move-In Homes
+ </h3>
+
+ <div class="featured-grid">
+ <div class="row">
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/texas/greater-houston/fulshear/summerview/armstrong-plan/32211-morning-luster-court">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Armstrong Elevation D" height="1600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/1758236/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/1758236/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/1758236/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/1758236/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/1758236/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/1758236/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/1758236/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="HOUS-Armstrong-ElevationD-Gen3-elev_DAY" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Armstrong</p>
+ <p class="featured-grid-middle">32211 Morning Luster Court, Fulshear, Texas</p>
+ <p class="featured-grid-subtitle">Listed at $399,990</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/texas/greater-houston/fulshear/summerview/columbus-plan/32218-sunbeam-drive">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Columbus H Elevation
+" height="1600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/1702580/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/1702580/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/1702580/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/1702580/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/1702580/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/1702580/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/1702580/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="HOUS-The Columbus-ElevationH-Gen3-elev_DSK" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Columbus</p>
+ <p class="featured-grid-middle">32218 Sunbeam Drive, Fulshear, Texas</p>
+ <p class="featured-grid-subtitle">Listed at $423,990</p>
+ </a>
+</div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ </main>
+
+
+<footer class="main-footer">
+ <div class="main-footer-inner">
+ <ul class="horizontal-list">
+ <li><a href="https://apply.workable.com/mi-homes/" target="_blank" rel="noopener noreferrer" >Careers</a></li>
+ <li><a href="/support/warranty" >Warranty</a></li>
+ <li><a href="https://investors.mihomes.com/" rel="noopener noreferrer" title="Investor Relations" target="_blank" >Investors</a></li>
+ <li><a href="/events" >Events</a></li>
+ <li><a href="/incentives" >Incentives</a></li>
+ <li><a href="/agent/agent-info" >Agents & Brokers</a></li>
+ <li><a href="/resources" >Home Buying Resources</a></li>
+ <li><a href="/why-mi/journey" >Journey</a></li>
+ <li><a href="/blog/" >Blog</a></li>
+ </ul>
+ <ul class="horizontal-list">
+ <li><a href="/policies/privacy-policy" >Privacy Policy</a></li>
+ <li><a href="/policies/terms-of-use" >Terms of Use</a></li>
+ <li><a href="/subscriptions" >Manage Subscriptions</a></li>
+ <li><a href="/support/ccpa" >CCPA</a></li>
+ </ul>
+ <ul class="icon-list">
+ <li>
+<a href="https://www.instagram.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Instagram" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704717/50399.png" srcset="https://dam.mihomes.com/media/4704717/50399.png?timestamp=2026-05-04T18%3A56%3A58.4036491 300w, https://dam.mihomes.com/media/4704717/50420.png 600w" title="instagram" width="24" /></a> </li>
+ <li>
+<a href="https://www.facebook.com/MIHomesInc/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Facebook" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57191/50399.png" srcset="https://dam.mihomes.com/media/57191/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57191/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="facebook" width="24" /></a> </li>
+ <li>
+<a href="https://www.youtube.com/MIHomesInc" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Youtube" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704715/50399.png" srcset="https://dam.mihomes.com/media/4704715/50399.png?timestamp=2026-05-04T18%3A34%3A30.5730196 300w, https://dam.mihomes.com/media/4704715/50420.png 600w" title="youtube" width="24" /></a> </li>
+ <li>
+<a href="https://www.pinterest.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Pinterest" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57192/50399.png" srcset="https://dam.mihomes.com/media/57192/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57192/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="pintrest" width="24" /></a> </li>
+ <li>
+<a href="http://www.houzz.com/pro/mi-homes/m-i-homes" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Houzz" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57193/50399.png" srcset="https://dam.mihomes.com/media/57193/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57193/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="houzz" width="24" /></a> </li>
+ <li>
+<a href="http://portal.hud.gov" class="" rel="me" target="_blank" ><img data-dam-generated alt="Equal Housing" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704718/50399.png" srcset="https://dam.mihomes.com/media/4704718/50399.png?timestamp=2026-05-04T19%3A02%3A51.2896193 300w, https://dam.mihomes.com/media/4704718/50420.png 600w" title="equal-housing" width="28" /></a> </li>
+ </ul>
+ <p class="main-footer-copyright">
+ Copyright 2026, M/I Homes, Inc. All rights reserved.
+ </p>
+ <p id="division-disclaimer" class="main-footer-copyright">
+
+
+ </p>
+ </div>
+</footer>
+</div>
+<div aria-label="Cookie Consent" role="dialog" id="ccpa-modal" class="ccpa-modal">
+ <p>By browsing, you accept our <a href="/policies/terms-of-use">terms of use</a> and <a href="/policies/privacy-policy">privacy policy</a>.</p>
+ <button class="button" type="button">OK</button>
+</div>
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/modals.css?ver=202608092245" rel="stylesheet" fetchpriority="low">
+ <div class="modal modal-wide box" data-modal="" id="privacy-policy-modal">
+ <button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div id="privacy-policy-text"></div>
+</div><div class="modal box box-wide box-paddingless" data-modal="" id="mortgage-payment-calculator-modal">
+<button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+</button>
+ <div id="mortgage-payment-calculator" data-price="415990" data-values="472a5d44-20dd-49a5-a5dc-0e8176d7bb59"></div>
+</div>
+ <div class="modal" data-modal id="search-modal">
+ <form action="/search" class="search-form ">
+ <input class="search-form-input" id="search-form-input" name="search" placeholder="Search M/I Homes"
+ type="search" />
+ <button class="button search-form-clear-button" type="button">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+
+ </button>
+ <button class="button search-form-submit" type="submit">
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ <div class="search-form-results">
+ <div class="search-form-results-list"></div>
+ </div>
+ </form>
+ </div>
+</div>
+
+<!-- toolkit scripts -->
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit_common.js?ver=202608092245"></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit.js?ver=202608092245"></script>
+ <script src="https://cdn.mihomes.com/assets/toolkit/js/product.js?ver=202608092245"></script>
+ <script defer src="https://cdn.mihomes.com/assets/toolkit/js/mortgage-calculator.js?ver=202608092245"></script>
+<script>window.jQuery = window.$ = window.JQUERY;</script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/common.js?ver=202608092245" defer></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/favorites.js?ver=202608092245" defer></script>
+
+
+<script>
+ var w = Math.max(
+ document.body.scrollWidth,
+ document.documentElement.scrollWidth,
+ document.body.offsetWidth,
+ document.documentElement.offsetWidth,
+ document.documentElement.clientWidth
+ );
+ window.setCookie('screen-width', encodeURIComponent(w), { expires: 14, path: "/" })
+ </script>
+
+<script>
+
+
+</script>
+<script type="text/javascript">
+ const millisecondsPerDay = 86400000;
+ const millisecondsPerHour = millisecondsPerDay / 24;
+ const millisecondsPerMinute = millisecondsPerHour / 60;
+ const millisecondsPerSecond = 1000;
+ function addLeadingZero(val) {
+ if(val.toString().length < 2) {
+ return '0'+val;
+ }
+ return val;
+ }
+ function change() {
+ const list = Array.from(document.querySelectorAll('[data-countdown]'));
+ const now = new Date().getTime();
+ list.forEach((el) => {
+ const d = new Date(el.getAttribute('data-countdown')).getTime();
+ let diff = d - now;
+ let days = 0;
+ let hours = 0;
+ let minutes = 0;
+ let seconds = 0;
+ if(diff > 0) {
+ days = Math.floor(diff / millisecondsPerDay);
+ diff = diff - (days * millisecondsPerDay)
+ hours = Math.floor(diff/millisecondsPerHour);
+ diff = diff - (hours * millisecondsPerHour)
+ minutes = Math.floor(diff/millisecondsPerMinute);
+ diff = diff - (minutes * millisecondsPerMinute);
+ seconds = Math.floor(diff/millisecondsPerSecond);
+ }
+ try {
+ el.querySelector('.days').innerText = addLeadingZero(Math.max(days, 0));
+
+ } catch (e) {}
+ try {
+ el.querySelector('.hours').innerText = addLeadingZero(Math.max(hours, 0));
+ } catch(e) {}
+ try {
+ el.querySelector('.minutes').innerText = addLeadingZero(Math.max(minutes, 0));
+ } catch (e) {}
+ try {
+ el.querySelector('.seconds').innerText = addLeadingZero(Math.max(seconds, 0));
+ } catch (e) {}
+
+ });
+ setTimeout(()=>requestAnimationFrame(change), millisecondsPerSecond);
+ }
+ requestAnimationFrame(change);
+</script>
+<script>(function(){function c(){var b=a.contentDocument||(a.contentWindow&&a.contentWindow.document);if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'a29496474b30a425',t:'MTc4NjQyMzQ4Ng=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
+
+</html>
\ No newline at end of file
diff --git a/collectors/mi-homes/fixtures/homes/h14.html b/collectors/mi-homes/fixtures/homes/h14.html
new file mode 100644
index 00000000..75d7e810
--- /dev/null
+++ b/collectors/mi-homes/fixtures/homes/h14.html
@@ -0,0 +1,2133 @@
+
+
+<!doctype html>
+<html lang="en">
+
+<head>
+
+ <script>
+ var G = G || {};
+ G.pingForEmployee = true;
+ </script>
+
+
+<meta name="VIcurrentDateTime" content="639220202900105139" />
+<meta name="VirtualFolder" content="/" />
+<script type="text/javascript" src="/layouts/system/VisitorIdentification.js"></script>
+
+
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" name="viewport">
+ <title>MLS #21333565 - 7022 Winecup Lane Sanger, TX 76266 - M/I Homes</title>
+ <!-- font -->
+ <link rel="preconnect" href="https://cdn.mihomes.com" crossorigin>
+ <link rel="preconnect" href="https://use.typekit.net" crossorigin>
+
+
+
+<!-- Google Tag Script -->
+
+ <script id="js-GTM-script">
+ window.dataLayer = window.dataLayer || [];
+ window.dataLayer.push({
+ "PageType": "Spec",
+ "MIAccount": "No",
+ "Division": "Dallas / Fort Worth"
+});
+
+(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=
+'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
+})(window,document,'script','dataLayer','GTM-M2JH3QJ');
+ </script>
+
+
+<!-- End Google Tag Script -->
+ <meta name="referrer" content="always" />
+
+ <link href="https://use.typekit.net/sgt3sit.css" rel="stylesheet" type="text/css" media="print" onload="this.media='all'" id="fonts-loaded" />
+
+<script>
+ try {
+ document.fonts.ready.then(() => {
+ document.body.classList.add('body--fonts-loaded');
+ if(window.setCookiie) {
+ window.setCookie('fonts-cached', 'true', { expires: 7, path: '/' });
+ }
+ });
+ } catch (e) { }
+</script>
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/toolkit.css?ver=202608092247" type="text/css" rel="stylesheet">
+ <!-- conditionally load css for blog -->
+
+ <script>
+ window.environment = "Prod";
+ window.googleApiKey = "REDACTED-THIRD-PARTY-PUBLIC-KEY";
+ </script>
+ <script>
+
+ window.maps =[];
+ window.AssetRootUrl = 'https://cdn.mihomes.com';
+
+ </script>
+
+ <meta name="twitter:card" content="summary" />
+<meta name="twitter:site" content="@mihomes" />
+<meta name="twitter:creator" content="@mihomes">
+
+<meta property="og:site_name" content="https://www.mihomes.com" />
+<meta property="og:type" content="article" />
+<meta property="og:url" content="https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/sanger/lane-ranch/herrera-plan/7022-winecup-lane" />
+
+
+ <meta property="og:title" content="7022 Winecup Lane" />
+ <meta name="twitter:title" content="7022 Winecup Lane" />
+
+
+
+ <meta property="og:description" content="Welcome to 7022 Winecup Lane, Sanger, Texas — a beautifully crafted new construction single-story home built by M/I Homes. This 4-bedroom, 2-bathroom home offers 2,029 square feet of thoughtfully designed living space, perfect for comfortable everyday living and effortless entertaining." />
+ <meta name="twitter:description" content="Welcome to 7022 Winecup Lane, Sanger, Texas — a beautifully crafted new construction single-story home built by M/I Homes. This 4-bedroom, 2-bathroom home offers 2,029 square feet of thoughtfully designed living space, perfect for comfortable everyday living and effortless entertaining." />
+ <meta name="description" content="Welcome to 7022 Winecup Lane, Sanger, Texas — a beautifully crafted new construction single-story home built by M/I Homes. This 4-bedroom, 2-bathroom home offers 2,029 square feet of thoughtfully designed living space, perfect for comfortable everyday living and effortless entertaining." />
+
+
+
+ <link rel="canonical" href="https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/sanger/lane-ranch/herrera-plan/7022-winecup-lane">
+ <link defer href="https://dam.mihomes.com/media/4179716/50399.png" rel="icon" type="image/vnd.microsoft.icon" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="57x57"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-57x57.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="114x114"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-114x114.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="72x72"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-72x72.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="144x144"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-144x144.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="60x60"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-60x60.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="120x120"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-120x120.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="76x76"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-76x76.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="152x152"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-152x152.png" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-196x196.png"
+ sizes="196x196" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-96x96.png"
+ sizes="96x96" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-32x32.png"
+ sizes="32x32" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-16x16.png"
+ sizes="16x16" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-128.png"
+ sizes="128x128" />
+ <meta name="application-name" content=" " />
+ <meta name="msapplication-TileColor" content="#FFFFFF" />
+ <meta name="msapplication-TileImage" content="https://cdn.mihomes.com/assets/favicons/images/mstile-144x144.png" />
+ <meta name="msapplication-square70x70logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-70x70.png" />
+ <meta name="msapplication-square150x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-150x150.png" />
+ <meta name="msapplication-wide310x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x150.png" />
+ <meta name="msapplication-square310x310logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x310.png" />
+
+ <script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Organization",
+ "foundingDate": "1976",
+ "duns": "071649743",
+ "founders": [
+ {
+ "@type": "Person",
+ "name": "Melvin Schottenstein"
+ },
+ {
+ "@type": "Person",
+ "name": "Irving Schottenstein"
+ }
+ ],
+ "employees": [
+ {
+ "@type": "Person",
+ "name": "Robert H. Schottenstein",
+ "jobTitle": "Chairman, President, and CEO"
+ }
+ ],
+ "sameAs": [
+ "https://www.facebook.com/MIHomesInc",
+ "https://twitter.com/mihomes",
+ "https://www.instagram.com/mihomes/",
+ "https://www.youtube.com/MIHomesInc",
+ "https://www.houzz.com/pro/mi-homes/m-i-homes",
+ "https://www.pinterest.com/mihomes/"
+ ],
+ "logo": {
+ "@type": "ImageObject",
+ "name": "M/I Homes logo",
+ "contentUrl": "https://dam.mihomes.com/media/39664/50399.png"
+ },
+ "name": "M/I Homes",
+ "description": "M/I Homes, Inc. founded in 1976, M/I Homes is one of nation's leading builders of single family homes. M/I has established an exemplary reputation based on a strong commitment to superior customer service, innovative design, quality construction and premium locations. Listed on the New York Stock Exchange, M/I Homes serves a broad segment of the housing market including first-time, move-up, luxury and empty nester buyers.",
+ "url": "https://www.mihomes.com",
+ "isicv4": "4100"
+}</script>
+ <script defer src="https://www.youtube.com/iframe_api"></script>
+ <script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
+ <script>
+ window.addEventListener('load', () => {
+ const swUrl = "https://cdn.mihomes.com/assets/workers/product-page-service-worker.js"
+ navigator.serviceWorker
+ .register(swUrl, {
+ scope: '/'
+ })
+ .then(registration => {
+ console.log('Service Worker registered with scope:', registration.scope);
+ })
+ .catch(error => {
+ console.error('Error during service worker registration:', error);
+ });
+ });
+ </script>
+</head>
+
+<body class="no-js body--home-template">
+
+
+
+<!-- Google Tag Manager --><!-- Global site tag (gtag.js) - Google Analytics -->
+
+ <noscript>
+ <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M2JH3QJ"
+ height="0" width="0" style="display: none; visibility: hidden">
+ </iframe>
+ </noscript>
+
+<!-- End Google Tag Manager GTMM2JH3QJ -->
+<a class="skip-link" href="#content">Skip To Content</a>
+
+<div class="page-container">
+ <div id="overview" data-subnav-page-link="Overview"></div>
+
+
+<header class="main-header">
+ <div class="main-header-inner">
+<a href="/" class="main-header-logo" > <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png">
+<svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg></a> <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png" />
+ <button class="main-header-open-nav" data-open-nav="" title="Toggle Hamburger Navigation">
+ <svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg>
+ <svg class="icon icon-menu" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#menu"></use>
+</svg>
+ </button>
+ <div class="main-header-nav-items" data-a11y-focus data-nav-tray>
+ <nav class="main-nav">
+ <ul>
+ <li>
+
+ <a href="/" class="main-nav-link mobile-only" >Home</a>
+ </li>
+ <li>
+
+ <a href="/new-homes/texas/dallas-fort-worth-metroplex" class="main-nav-link find-a-home-link" >Find a Home</a>
+ </li>
+ <li>
+
+ <a href="/about-us/overview" class="main-nav-link " >About</a>
+ </li>
+ <li>
+
+ <a href="/why-mi/overview" class="main-nav-link " >Why M/I</a>
+ </li>
+ <li>
+
+ <a href="/incentives" class="main-nav-link " >Incentives</a>
+ </li>
+ <li>
+
+ <a href="/financing" class="main-nav-link " >Financing</a>
+ </li>
+ <li>
+
+ <a href="/support/warranty" class="main-nav-link " >Warranty</a>
+ </li>
+ <li>
+
+ <a href="/support" class="main-nav-link " >Contact</a>
+ </li>
+ <li>
+
+ <a href="/resources" class="main-nav-link " >Resources</a>
+ </li>
+ </ul>
+ </nav>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ <div class="aux-nav">
+ <ul>
+ <li data-a11y-focus>
+ <a href="/account/register" class="main-nav-link" >Sign Up</a>
+ </li>
+ <li data-a11y-focus>
+ <a href="/account/login" class="main-nav-link" >Log In</a>
+ </li>
+ </ul>
+ </div>
+ </div>
+ <button class="main-header-close-nav" data-close-nav>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ </div>
+</header>
+ <div class="breadcrumbs-bar">
+ <div class="breadcrumbs-wrapper">
+ <nav class="breadcrumbs">
+ <a class="button-plain" href="/">Home</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/communities">Texas</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/dallas-fort-worth-metroplex/communities">Dallas / Fort Worth Metroplex</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/dallas-fort-worth-metroplex/sanger">Sanger</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/dallas-fort-worth-metroplex/sanger/lane-ranch">Lane Ranch</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/dallas-fort-worth-metroplex/sanger/lane-ranch/herrera-plan">Herrera</a>
+ <span class="seperator"> • </span>
+ <span>7022 Winecup Lane</span>
+ </nav>
+ </div>
+ </div>
+ <script>var bar = document.querySelector('.breadcrumbs-bar'); bar.setAttribute('style', 'height:' + bar.getBoundingClientRect().height + 'px');</script>
+<script type="application/ld+json">
+{
+"@context": "https://schema.org",
+"@type": "BreadcrumbList",
+"itemListElement":[
+{
+"@type":"ListItem",
+"position":1,
+"name":"Texas",
+"item":"https://www.mihomes.com/new-homes/texas/communities"
+},
+{
+"@type":"ListItem",
+"position":2,
+"name":"Dallas / Fort Worth Metroplex",
+"item":"https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/communities"
+},
+{
+"@type":"ListItem",
+"position":3,
+"name":"Sanger",
+"item":"https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/sanger"
+},
+{
+"@type":"ListItem",
+"position":4,
+"name":"Lane Ranch",
+"item":"https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/sanger/lane-ranch"
+},
+{
+"@type":"ListItem",
+"position":5,
+"name":"Herrera",
+"item":"https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/sanger/lane-ranch/herrera-plan"
+},
+{
+"@type":"ListItem",
+"position":6,
+"name":"7022 Winecup Lane",
+
+}
+]
+}
+</script>
+
+
+ <div class="page-notice-wrapper" id="page-notification"></div>
+ <main class="main-content" id="content" tabindex="0">
+
+<ul class="product-flags">
+ <li>
+ <a href="https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/incentives/lower-payments" data-is="me">
+
+
+<div class="product-flag " style="color: #35603d">
+ <span class="product-flag-text">Lower Payments with 2/1 Buydown</span>
+</div>
+ </a>
+ </li>
+</ul>
+<div class="image-banner">
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <img data-dam-generated alt="Herrera Elevation G" height="1600" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/3240963/50421.jpeg?timestamp=2025-06-13T16%3A02%3A05.9813560" srcset="https://dam.mihomes.com/media/3240963/50398.jpeg?timestamp=2025-06-13T16%3A02%3A01.9591424 300w, https://dam.mihomes.com/media/3240963/50397.jpeg?timestamp=2025-06-13T16%3A02%3A00.9999845 600w, https://dam.mihomes.com/media/3240963/50423.jpeg?timestamp=2025-06-13T16%3A02%3A06.9562717 900w, https://dam.mihomes.com/media/3240963/50396.jpeg?timestamp=2025-06-13T16%3A02%3A00.9744735 1200w, https://dam.mihomes.com/media/3240963/50421.jpeg?timestamp=2025-06-13T16%3A02%3A05.9813560 1800w, https://dam.mihomes.com/media/3240963/50422.jpeg?timestamp=2025-06-13T16%3A02%3A05.5925809 2400w" title="DFW-S420-Herrera-ElevationG1-Gen3-elev_DSK" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </a>
+ <div class="image-banner-more">
+ <a href="#product-gallery"
+ data-goto-slide="1"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="1"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Front Exterior" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5018833/50421.jpeg?timestamp=2026-07-17T17%3A02%3A21.1774328" srcset="https://dam.mihomes.com/media/5018833/50398.jpeg?timestamp=2026-07-17T17%3A02%3A18.2653805 300w, https://dam.mihomes.com/media/5018833/50397.jpeg?timestamp=2026-07-17T17%3A02%3A17.1482082 600w, https://dam.mihomes.com/media/5018833/50423.jpeg?timestamp=2026-07-17T17%3A02%3A23.0004456 900w, https://dam.mihomes.com/media/5018833/50396.jpeg?timestamp=2026-07-17T17%3A02%3A16.2589781 1200w, https://dam.mihomes.com/media/5018833/50421.jpeg?timestamp=2026-07-17T17%3A02%3A21.1774328 1800w, https://dam.mihomes.com/media/5018833/50422.jpeg?timestamp=2026-07-17T17%3A02%3A22.3850031 2400w" title="DFW-Marilee-Herrera-FrontExterior-Representational" width="1800" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="2"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="2"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Kitchen" height="1703" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4864489/50421.jpeg?timestamp=2026-06-13T00%3A46%3A29.1262619" srcset="https://dam.mihomes.com/media/4864489/50398.jpeg?timestamp=2026-06-13T00%3A46%3A26.1599578 300w, https://dam.mihomes.com/media/4864489/50397.jpeg?timestamp=2026-06-13T00%3A46%3A26.5295912 600w, https://dam.mihomes.com/media/4864489/50423.jpeg?timestamp=2026-06-13T00%3A46%3A28.4185786 900w, https://dam.mihomes.com/media/4864489/50396.jpeg?timestamp=2026-06-13T00%3A46%3A26.4282857 1200w, https://dam.mihomes.com/media/4864489/50421.jpeg?timestamp=2026-06-13T00%3A46%3A29.1262619 1800w, https://dam.mihomes.com/media/4864489/50422.jpeg?timestamp=2026-06-13T00%3A46%3A29.4361801 2400w" title="[L1804-z013]Kitchen" width="2560" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="3"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="3"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Kitchen" height="1703" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4864490/50421.jpeg?timestamp=2026-06-13T00%3A46%3A32.8856441" srcset="https://dam.mihomes.com/media/4864490/50398.jpeg?timestamp=2026-06-13T00%3A46%3A32.1620850 300w, https://dam.mihomes.com/media/4864490/50397.jpeg?timestamp=2026-06-13T00%3A46%3A31.2099942 600w, https://dam.mihomes.com/media/4864490/50423.jpeg?timestamp=2026-06-13T00%3A46%3A34.2725320 900w, https://dam.mihomes.com/media/4864490/50396.jpeg?timestamp=2026-06-13T00%3A46%3A30.8900616 1200w, https://dam.mihomes.com/media/4864490/50421.jpeg?timestamp=2026-06-13T00%3A46%3A32.8856441 1800w, https://dam.mihomes.com/media/4864490/50422.jpeg?timestamp=2026-06-13T00%3A46%3A34.2862262 2400w" title="[L1804-z011]Interior" width="2560" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="4"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="4"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Family Room" height="1703" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4864493/50421.jpeg?timestamp=2026-06-13T00%3A46%3A47.3600991" srcset="https://dam.mihomes.com/media/4864493/50398.jpeg?timestamp=2026-06-13T00%3A46%3A47.0706763 300w, https://dam.mihomes.com/media/4864493/50397.jpeg?timestamp=2026-06-13T00%3A46%3A45.7395425 600w, https://dam.mihomes.com/media/4864493/50423.jpeg?timestamp=2026-06-13T00%3A46%3A48.7032951 900w, https://dam.mihomes.com/media/4864493/50396.jpeg?timestamp=2026-06-13T00%3A46%3A44.4241104 1200w, https://dam.mihomes.com/media/4864493/50421.jpeg?timestamp=2026-06-13T00%3A46%3A47.3600991 1800w, https://dam.mihomes.com/media/4864493/50422.jpeg?timestamp=2026-06-13T00%3A46%3A49.1953050 2400w" title="[L1804-z015]Interior" width="2560" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="third event-click image-banner-total gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <span class="button button-transparent">
+ View 12 Photos
+ </span>
+ </a>
+ </div>
+</div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Herrera Elevation G" height="1600" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/3240963/50421.jpeg?timestamp=2025-06-13T16%3A02%3A05.9813560" srcset="https://dam.mihomes.com/media/3240963/50398.jpeg?timestamp=2025-06-13T16%3A02%3A01.9591424 300w, https://dam.mihomes.com/media/3240963/50397.jpeg?timestamp=2025-06-13T16%3A02%3A00.9999845 600w, https://dam.mihomes.com/media/3240963/50423.jpeg?timestamp=2025-06-13T16%3A02%3A06.9562717 900w, https://dam.mihomes.com/media/3240963/50396.jpeg?timestamp=2025-06-13T16%3A02%3A00.9744735 1200w, https://dam.mihomes.com/media/3240963/50421.jpeg?timestamp=2025-06-13T16%3A02%3A05.9813560 1800w, https://dam.mihomes.com/media/3240963/50422.jpeg?timestamp=2025-06-13T16%3A02%3A05.5925809 2400w" title="DFW-S420-Herrera-ElevationG1-Gen3-elev_DSK" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Front Exterior" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5018833/50421.jpeg?timestamp=2026-07-17T17%3A02%3A21.1774328" srcset="https://dam.mihomes.com/media/5018833/50398.jpeg?timestamp=2026-07-17T17%3A02%3A18.2653805 300w, https://dam.mihomes.com/media/5018833/50397.jpeg?timestamp=2026-07-17T17%3A02%3A17.1482082 600w, https://dam.mihomes.com/media/5018833/50423.jpeg?timestamp=2026-07-17T17%3A02%3A23.0004456 900w, https://dam.mihomes.com/media/5018833/50396.jpeg?timestamp=2026-07-17T17%3A02%3A16.2589781 1200w, https://dam.mihomes.com/media/5018833/50421.jpeg?timestamp=2026-07-17T17%3A02%3A21.1774328 1800w, https://dam.mihomes.com/media/5018833/50422.jpeg?timestamp=2026-07-17T17%3A02%3A22.3850031 2400w" title="DFW-Marilee-Herrera-FrontExterior-Representational" width="1800" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Kitchen" height="1703" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4864489/50421.jpeg?timestamp=2026-06-13T00%3A46%3A29.1262619" srcset="https://dam.mihomes.com/media/4864489/50398.jpeg?timestamp=2026-06-13T00%3A46%3A26.1599578 300w, https://dam.mihomes.com/media/4864489/50397.jpeg?timestamp=2026-06-13T00%3A46%3A26.5295912 600w, https://dam.mihomes.com/media/4864489/50423.jpeg?timestamp=2026-06-13T00%3A46%3A28.4185786 900w, https://dam.mihomes.com/media/4864489/50396.jpeg?timestamp=2026-06-13T00%3A46%3A26.4282857 1200w, https://dam.mihomes.com/media/4864489/50421.jpeg?timestamp=2026-06-13T00%3A46%3A29.1262619 1800w, https://dam.mihomes.com/media/4864489/50422.jpeg?timestamp=2026-06-13T00%3A46%3A29.4361801 2400w" title="[L1804-z013]Kitchen" width="2560" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Kitchen" height="1703" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4864490/50421.jpeg?timestamp=2026-06-13T00%3A46%3A32.8856441" srcset="https://dam.mihomes.com/media/4864490/50398.jpeg?timestamp=2026-06-13T00%3A46%3A32.1620850 300w, https://dam.mihomes.com/media/4864490/50397.jpeg?timestamp=2026-06-13T00%3A46%3A31.2099942 600w, https://dam.mihomes.com/media/4864490/50423.jpeg?timestamp=2026-06-13T00%3A46%3A34.2725320 900w, https://dam.mihomes.com/media/4864490/50396.jpeg?timestamp=2026-06-13T00%3A46%3A30.8900616 1200w, https://dam.mihomes.com/media/4864490/50421.jpeg?timestamp=2026-06-13T00%3A46%3A32.8856441 1800w, https://dam.mihomes.com/media/4864490/50422.jpeg?timestamp=2026-06-13T00%3A46%3A34.2862262 2400w" title="[L1804-z011]Interior" width="2560" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Family Room" height="1703" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4864493/50421.jpeg?timestamp=2026-06-13T00%3A46%3A47.3600991" srcset="https://dam.mihomes.com/media/4864493/50398.jpeg?timestamp=2026-06-13T00%3A46%3A47.0706763 300w, https://dam.mihomes.com/media/4864493/50397.jpeg?timestamp=2026-06-13T00%3A46%3A45.7395425 600w, https://dam.mihomes.com/media/4864493/50423.jpeg?timestamp=2026-06-13T00%3A46%3A48.7032951 900w, https://dam.mihomes.com/media/4864493/50396.jpeg?timestamp=2026-06-13T00%3A46%3A44.4241104 1200w, https://dam.mihomes.com/media/4864493/50421.jpeg?timestamp=2026-06-13T00%3A46%3A47.3600991 1800w, https://dam.mihomes.com/media/4864493/50422.jpeg?timestamp=2026-06-13T00%3A46%3A49.1953050 2400w" title="[L1804-z015]Interior" width="2560" class="image-banner-item-more" />
+ </span>
+ </div>
+
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <div class="modal fullscreen-modal gallery-modal gallery-modal--simple" data-modal="" id="simple-gallery-modal" data-track-views="">
+ <div class="gallery-modal__list-container">
+ <div class="gallery-modal__controls">
+ <button class="close-icon" data-modal-close>
+ <svg class="icon icon-close-gallery" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close-gallery"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__list-container-arrows">
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="prev" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="11" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="next" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="0" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__controls gallery-modal__controls__zoom">
+ <button class="close-icon" data-gallery="simple-gallery-modal" data-zoom>
+ <svg class="icon icon-zoom" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#zoom"></use>
+</svg>
+ </button>
+ </div>
+ <ul class="gallery-modal__list no-transition" style="transform: translateX(-200%);">
+
+ <li class="gallery-slide-container" data-slide-id="0" data-image="https://dam.mihomes.com/media/3240963/50398.jpeg?timestamp=2025-06-13T16%3A02%3A01.9591424 300w, https://dam.mihomes.com/media/3240963/50397.jpeg?timestamp=2025-06-13T16%3A02%3A00.9999845 600w, https://dam.mihomes.com/media/3240963/50423.jpeg?timestamp=2025-06-13T16%3A02%3A06.9562717 900w, https://dam.mihomes.com/media/3240963/50396.jpeg?timestamp=2025-06-13T16%3A02%3A00.9744735 1200w, https://dam.mihomes.com/media/3240963/50421.jpeg?timestamp=2025-06-13T16%3A02%3A05.9813560 1800w, https://dam.mihomes.com/media/3240963/50422.jpeg?timestamp=2025-06-13T16%3A02%3A05.5925809 2400w" data-caption="Herrera Elevation G" data-count="<strong>1</strong> of <strong>12</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Herrera Elevation G" height="1600" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/3240963/50421.jpeg?timestamp=2025-06-13T16%3A02%3A05.9813560" srcset="https://dam.mihomes.com/media/3240963/50398.jpeg?timestamp=2025-06-13T16%3A02%3A01.9591424 300w, https://dam.mihomes.com/media/3240963/50397.jpeg?timestamp=2025-06-13T16%3A02%3A00.9999845 600w, https://dam.mihomes.com/media/3240963/50423.jpeg?timestamp=2025-06-13T16%3A02%3A06.9562717 900w, https://dam.mihomes.com/media/3240963/50396.jpeg?timestamp=2025-06-13T16%3A02%3A00.9744735 1200w, https://dam.mihomes.com/media/3240963/50421.jpeg?timestamp=2025-06-13T16%3A02%3A05.9813560 1800w, https://dam.mihomes.com/media/3240963/50422.jpeg?timestamp=2025-06-13T16%3A02%3A05.5925809 2400w" title="DFW-S420-Herrera-ElevationG1-Gen3-elev_DSK" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="1" data-image="https://dam.mihomes.com/media/5018833/50398.jpeg?timestamp=2026-07-17T17%3A02%3A18.2653805 300w, https://dam.mihomes.com/media/5018833/50397.jpeg?timestamp=2026-07-17T17%3A02%3A17.1482082 600w, https://dam.mihomes.com/media/5018833/50423.jpeg?timestamp=2026-07-17T17%3A02%3A23.0004456 900w, https://dam.mihomes.com/media/5018833/50396.jpeg?timestamp=2026-07-17T17%3A02%3A16.2589781 1200w, https://dam.mihomes.com/media/5018833/50421.jpeg?timestamp=2026-07-17T17%3A02%3A21.1774328 1800w, https://dam.mihomes.com/media/5018833/50422.jpeg?timestamp=2026-07-17T17%3A02%3A22.3850031 2400w" data-caption="Front Exterior - Representational Photo" data-count="<strong>2</strong> of <strong>12</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Front Exterior" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5018833/50421.jpeg?timestamp=2026-07-17T17%3A02%3A21.1774328" srcset="https://dam.mihomes.com/media/5018833/50398.jpeg?timestamp=2026-07-17T17%3A02%3A18.2653805 300w, https://dam.mihomes.com/media/5018833/50397.jpeg?timestamp=2026-07-17T17%3A02%3A17.1482082 600w, https://dam.mihomes.com/media/5018833/50423.jpeg?timestamp=2026-07-17T17%3A02%3A23.0004456 900w, https://dam.mihomes.com/media/5018833/50396.jpeg?timestamp=2026-07-17T17%3A02%3A16.2589781 1200w, https://dam.mihomes.com/media/5018833/50421.jpeg?timestamp=2026-07-17T17%3A02%3A21.1774328 1800w, https://dam.mihomes.com/media/5018833/50422.jpeg?timestamp=2026-07-17T17%3A02%3A22.3850031 2400w" title="DFW-Marilee-Herrera-FrontExterior-Representational" width="1800" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="2" data-image="https://dam.mihomes.com/media/4864489/50398.jpeg?timestamp=2026-06-13T00%3A46%3A26.1599578 300w, https://dam.mihomes.com/media/4864489/50397.jpeg?timestamp=2026-06-13T00%3A46%3A26.5295912 600w, https://dam.mihomes.com/media/4864489/50423.jpeg?timestamp=2026-06-13T00%3A46%3A28.4185786 900w, https://dam.mihomes.com/media/4864489/50396.jpeg?timestamp=2026-06-13T00%3A46%3A26.4282857 1200w, https://dam.mihomes.com/media/4864489/50421.jpeg?timestamp=2026-06-13T00%3A46%3A29.1262619 1800w, https://dam.mihomes.com/media/4864489/50422.jpeg?timestamp=2026-06-13T00%3A46%3A29.4361801 2400w" data-caption="Kitchen - Representational Photo" data-count="<strong>3</strong> of <strong>12</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4864489/50421.jpeg?timestamp=2026-06-13T00%3A46%3A29.1262619" srcset="https://dam.mihomes.com/media/4864489/50398.jpeg?timestamp=2026-06-13T00%3A46%3A26.1599578 300w, https://dam.mihomes.com/media/4864489/50397.jpeg?timestamp=2026-06-13T00%3A46%3A26.5295912 600w, https://dam.mihomes.com/media/4864489/50423.jpeg?timestamp=2026-06-13T00%3A46%3A28.4185786 900w, https://dam.mihomes.com/media/4864489/50396.jpeg?timestamp=2026-06-13T00%3A46%3A26.4282857 1200w, https://dam.mihomes.com/media/4864489/50421.jpeg?timestamp=2026-06-13T00%3A46%3A29.1262619 1800w, https://dam.mihomes.com/media/4864489/50422.jpeg?timestamp=2026-06-13T00%3A46%3A29.4361801 2400w" title="[L1804-z013]Kitchen" width="2560" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="3" data-image="https://dam.mihomes.com/media/4864490/50398.jpeg?timestamp=2026-06-13T00%3A46%3A32.1620850 300w, https://dam.mihomes.com/media/4864490/50397.jpeg?timestamp=2026-06-13T00%3A46%3A31.2099942 600w, https://dam.mihomes.com/media/4864490/50423.jpeg?timestamp=2026-06-13T00%3A46%3A34.2725320 900w, https://dam.mihomes.com/media/4864490/50396.jpeg?timestamp=2026-06-13T00%3A46%3A30.8900616 1200w, https://dam.mihomes.com/media/4864490/50421.jpeg?timestamp=2026-06-13T00%3A46%3A32.8856441 1800w, https://dam.mihomes.com/media/4864490/50422.jpeg?timestamp=2026-06-13T00%3A46%3A34.2862262 2400w" data-caption="Kitchen - Representational Photo" data-count="<strong>4</strong> of <strong>12</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4864490/50421.jpeg?timestamp=2026-06-13T00%3A46%3A32.8856441" srcset="https://dam.mihomes.com/media/4864490/50398.jpeg?timestamp=2026-06-13T00%3A46%3A32.1620850 300w, https://dam.mihomes.com/media/4864490/50397.jpeg?timestamp=2026-06-13T00%3A46%3A31.2099942 600w, https://dam.mihomes.com/media/4864490/50423.jpeg?timestamp=2026-06-13T00%3A46%3A34.2725320 900w, https://dam.mihomes.com/media/4864490/50396.jpeg?timestamp=2026-06-13T00%3A46%3A30.8900616 1200w, https://dam.mihomes.com/media/4864490/50421.jpeg?timestamp=2026-06-13T00%3A46%3A32.8856441 1800w, https://dam.mihomes.com/media/4864490/50422.jpeg?timestamp=2026-06-13T00%3A46%3A34.2862262 2400w" title="[L1804-z011]Interior" width="2560" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="4" data-image="https://dam.mihomes.com/media/4864493/50398.jpeg?timestamp=2026-06-13T00%3A46%3A47.0706763 300w, https://dam.mihomes.com/media/4864493/50397.jpeg?timestamp=2026-06-13T00%3A46%3A45.7395425 600w, https://dam.mihomes.com/media/4864493/50423.jpeg?timestamp=2026-06-13T00%3A46%3A48.7032951 900w, https://dam.mihomes.com/media/4864493/50396.jpeg?timestamp=2026-06-13T00%3A46%3A44.4241104 1200w, https://dam.mihomes.com/media/4864493/50421.jpeg?timestamp=2026-06-13T00%3A46%3A47.3600991 1800w, https://dam.mihomes.com/media/4864493/50422.jpeg?timestamp=2026-06-13T00%3A46%3A49.1953050 2400w" data-caption="Family Room - Representational Photo" data-count="<strong>5</strong> of <strong>12</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Family Room" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4864493/50421.jpeg?timestamp=2026-06-13T00%3A46%3A47.3600991" srcset="https://dam.mihomes.com/media/4864493/50398.jpeg?timestamp=2026-06-13T00%3A46%3A47.0706763 300w, https://dam.mihomes.com/media/4864493/50397.jpeg?timestamp=2026-06-13T00%3A46%3A45.7395425 600w, https://dam.mihomes.com/media/4864493/50423.jpeg?timestamp=2026-06-13T00%3A46%3A48.7032951 900w, https://dam.mihomes.com/media/4864493/50396.jpeg?timestamp=2026-06-13T00%3A46%3A44.4241104 1200w, https://dam.mihomes.com/media/4864493/50421.jpeg?timestamp=2026-06-13T00%3A46%3A47.3600991 1800w, https://dam.mihomes.com/media/4864493/50422.jpeg?timestamp=2026-06-13T00%3A46%3A49.1953050 2400w" title="[L1804-z015]Interior" width="2560" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="5" data-image="https://dam.mihomes.com/media/4864478/50398.jpeg 300w, https://dam.mihomes.com/media/4864478/50397.jpeg 600w, https://dam.mihomes.com/media/4864478/50423.jpeg 900w, https://dam.mihomes.com/media/4864478/50396.jpeg 1200w, https://dam.mihomes.com/media/4864478/50421.jpeg 1800w, https://dam.mihomes.com/media/4864478/50422.jpeg 2400w" data-caption="Family Room - Representational Photo" data-count="<strong>6</strong> of <strong>12</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Family Room" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4864478/50421.jpeg?timestamp=2026-06-13T00%3A45%3A40.2586801" srcset="https://dam.mihomes.com/media/4864478/50398.jpeg 300w, https://dam.mihomes.com/media/4864478/50397.jpeg 600w, https://dam.mihomes.com/media/4864478/50423.jpeg 900w, https://dam.mihomes.com/media/4864478/50396.jpeg 1200w, https://dam.mihomes.com/media/4864478/50421.jpeg 1800w, https://dam.mihomes.com/media/4864478/50422.jpeg 2400w" title="[L1804-z017]Interior" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="6" data-image="https://dam.mihomes.com/media/4864499/50398.jpeg 300w, https://dam.mihomes.com/media/4864499/50397.jpeg 600w, https://dam.mihomes.com/media/4864499/50423.jpeg 900w, https://dam.mihomes.com/media/4864499/50396.jpeg 1200w, https://dam.mihomes.com/media/4864499/50421.jpeg 1800w, https://dam.mihomes.com/media/4864499/50422.jpeg 2400w" data-caption="Owner's Bedroom - Representational Photo" data-count="<strong>7</strong> of <strong>12</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owner's Bedroom" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4864499/50421.jpeg?timestamp=2026-06-13T00%3A47%3A15.7263789" srcset="https://dam.mihomes.com/media/4864499/50398.jpeg 300w, https://dam.mihomes.com/media/4864499/50397.jpeg 600w, https://dam.mihomes.com/media/4864499/50423.jpeg 900w, https://dam.mihomes.com/media/4864499/50396.jpeg 1200w, https://dam.mihomes.com/media/4864499/50421.jpeg 1800w, https://dam.mihomes.com/media/4864499/50422.jpeg 2400w" title="[L1804-z027]Interior" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="7" data-image="https://dam.mihomes.com/media/4864480/50398.jpeg 300w, https://dam.mihomes.com/media/4864480/50397.jpeg 600w, https://dam.mihomes.com/media/4864480/50423.jpeg 900w, https://dam.mihomes.com/media/4864480/50396.jpeg 1200w, https://dam.mihomes.com/media/4864480/50421.jpeg 1800w, https://dam.mihomes.com/media/4864480/50422.jpeg 2400w" data-caption="Owner's Bathroom - Representational Photo" data-count="<strong>8</strong> of <strong>12</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owner's Bathroom" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4864480/50421.jpeg?timestamp=2026-06-13T00%3A46%3A04.9918390" srcset="https://dam.mihomes.com/media/4864480/50398.jpeg 300w, https://dam.mihomes.com/media/4864480/50397.jpeg 600w, https://dam.mihomes.com/media/4864480/50423.jpeg 900w, https://dam.mihomes.com/media/4864480/50396.jpeg 1200w, https://dam.mihomes.com/media/4864480/50421.jpeg 1800w, https://dam.mihomes.com/media/4864480/50422.jpeg 2400w" title="[L1804-z019]OwnersBathroom" width="2559" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="8" data-image="https://dam.mihomes.com/media/4864482/50398.jpeg 300w, https://dam.mihomes.com/media/4864482/50397.jpeg 600w, https://dam.mihomes.com/media/4864482/50423.jpeg 900w, https://dam.mihomes.com/media/4864482/50396.jpeg 1200w, https://dam.mihomes.com/media/4864482/50421.jpeg 1800w, https://dam.mihomes.com/media/4864482/50422.jpeg 2400w" data-caption="Owner's Bathroom - Representational Photo" data-count="<strong>9</strong> of <strong>12</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owner's Bathroom" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4864482/50421.jpeg?timestamp=2026-06-13T00%3A46%3A01.0451232" srcset="https://dam.mihomes.com/media/4864482/50398.jpeg 300w, https://dam.mihomes.com/media/4864482/50397.jpeg 600w, https://dam.mihomes.com/media/4864482/50423.jpeg 900w, https://dam.mihomes.com/media/4864482/50396.jpeg 1200w, https://dam.mihomes.com/media/4864482/50421.jpeg 1800w, https://dam.mihomes.com/media/4864482/50422.jpeg 2400w" title="[L1804-z018]OwnersBathroom" width="2559" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="9" data-image="https://dam.mihomes.com/media/4864495/50398.jpeg 300w, https://dam.mihomes.com/media/4864495/50397.jpeg 600w, https://dam.mihomes.com/media/4864495/50423.jpeg 900w, https://dam.mihomes.com/media/4864495/50396.jpeg 1200w, https://dam.mihomes.com/media/4864495/50421.jpeg 1800w, https://dam.mihomes.com/media/4864495/50422.jpeg 2400w" data-caption="Bedroom - Representational Photo" data-count="<strong>10</strong> of <strong>12</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4864495/50421.jpeg?timestamp=2026-06-13T00%3A46%3A58.0226414" srcset="https://dam.mihomes.com/media/4864495/50398.jpeg 300w, https://dam.mihomes.com/media/4864495/50397.jpeg 600w, https://dam.mihomes.com/media/4864495/50423.jpeg 900w, https://dam.mihomes.com/media/4864495/50396.jpeg 1200w, https://dam.mihomes.com/media/4864495/50421.jpeg 1800w, https://dam.mihomes.com/media/4864495/50422.jpeg 2400w" title="[L1804-z004]Interior" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="10" data-image="https://dam.mihomes.com/media/4864459/50398.jpeg 300w, https://dam.mihomes.com/media/4864459/50397.jpeg 600w, https://dam.mihomes.com/media/4864459/50423.jpeg 900w, https://dam.mihomes.com/media/4864459/50396.jpeg 1200w, https://dam.mihomes.com/media/4864459/50421.jpeg 1800w, https://dam.mihomes.com/media/4864459/50422.jpeg 2400w" data-caption="Bathroom - Representational Photo" data-count="<strong>11</strong> of <strong>12</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bathroom" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4864459/50421.jpeg?timestamp=2026-06-13T00%3A44%3A14.5532424" srcset="https://dam.mihomes.com/media/4864459/50398.jpeg 300w, https://dam.mihomes.com/media/4864459/50397.jpeg 600w, https://dam.mihomes.com/media/4864459/50423.jpeg 900w, https://dam.mihomes.com/media/4864459/50396.jpeg 1200w, https://dam.mihomes.com/media/4864459/50421.jpeg 1800w, https://dam.mihomes.com/media/4864459/50422.jpeg 2400w" title="[L1804-z002]Bathroom" width="2559" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="11" data-image="https://dam.mihomes.com/media/4864502/50398.jpeg 300w, https://dam.mihomes.com/media/4864502/50397.jpeg 600w, https://dam.mihomes.com/media/4864502/50423.jpeg 900w, https://dam.mihomes.com/media/4864502/50396.jpeg 1200w, https://dam.mihomes.com/media/4864502/50421.jpeg 1800w, https://dam.mihomes.com/media/4864502/50422.jpeg 2400w" data-caption="Flex Space - Representational Photo" data-count="<strong>12</strong> of <strong>12</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Flex Space" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4864502/50421.jpeg?timestamp=2026-06-13T00%3A47%3A32.0503688" srcset="https://dam.mihomes.com/media/4864502/50398.jpeg 300w, https://dam.mihomes.com/media/4864502/50397.jpeg 600w, https://dam.mihomes.com/media/4864502/50423.jpeg 900w, https://dam.mihomes.com/media/4864502/50396.jpeg 1200w, https://dam.mihomes.com/media/4864502/50421.jpeg 1800w, https://dam.mihomes.com/media/4864502/50422.jpeg 2400w" title="[L1804-z010]Interior" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ </ul>
+ <div class="gallery-slide__footer">
+ <span class="gallery-slide__title title-caption"></span>
+ <div class="gallery-slide__share-buttons">
+ <span class="count"></span>
+ </div>
+ </div>
+ </div>
+ </div>
+</div><script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Product",
+ "additionalType": "https://schema.org/SingleFamilyResidence",
+ "name": "7022 Winecup Lane",
+ "sku": "0zMFgiJGxkSWkVQTNDvH2Q",
+ "description": "Welcome to 7022 Winecup Lane, Sanger, Texas — a beautifully crafted new construction single-story home built by M/I Homes. This 4-bedroom, 2-bathroom home offers 2,029 square feet of thoughtfully designed living space, perfect for comfortable everyday living and effortless entertaining.",
+ "image": [
+ "https://dam.mihomes.com/media/3240963/50421.jpeg",
+ "https://dam.mihomes.com/media/5018833/50421.jpeg",
+ "https://dam.mihomes.com/media/4864489/50421.jpeg",
+ "https://dam.mihomes.com/media/4864490/50421.jpeg",
+ "https://dam.mihomes.com/media/4864493/50421.jpeg",
+ "https://dam.mihomes.com/media/4864478/50421.jpeg",
+ "https://dam.mihomes.com/media/4864499/50421.jpeg",
+ "https://dam.mihomes.com/media/4864480/50421.jpeg",
+ "https://dam.mihomes.com/media/4864482/50421.jpeg",
+ "https://dam.mihomes.com/media/4864495/50421.jpeg",
+ "https://dam.mihomes.com/media/4864459/50421.jpeg",
+ "https://dam.mihomes.com/media/4864502/50421.jpeg"
+ ],
+ "url": "https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/sanger/lane-ranch/herrera-plan/7022-winecup-lane",
+ "brand": {
+ "@type": "Organization",
+ "parentOrganization": {
+ "@type": "Organization",
+ "name": "M/I Homes"
+ },
+ "name": "Lane Ranch"
+ },
+ "address": {
+ "@type": "PostalAddress",
+ "streetAddress": "7022 Winecup Lane",
+ "addressLocality": "Sanger",
+ "addressRegion": "TX",
+ "postalCode": "76266",
+ "addressCountry": "US"
+ },
+ "geo": {
+ "@type": "GeoCoordinates",
+ "latitude": 33.3663031825684,
+ "longitude": -97.1562816993481
+ },
+ "telephone": "+19726194200",
+ "offers": {
+ "@type": "Offer",
+ "url": "/new-homes/texas/dallas-fort-worth-metroplex/sanger/lane-ranch/herrera-plan/7022-winecup-lane",
+ "price": "352990.00",
+ "priceCurrency": "USD",
+ "priceValidUntil": "08-12-2026",
+ "itemCondition": "https://schema.org/NewCondition",
+ "availability": "https://schema.org/InStock"
+ },
+ "model": "https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/sanger/lane-ranch/herrera-plan",
+ "numberOfBedrooms": {
+ "@type": "Integer",
+ "value": 4
+ },
+ "numberOfFullBathrooms": {
+ "@type": "Integer",
+ "value": 2
+ },
+ "numberOfPartialBathrooms": {
+ "@type": "Integer",
+ "value": 0
+ },
+ "petsAllowed": true,
+ "yearBuilt": "2026",
+ "floorSize": {
+ "@type": "QuantitativeValue",
+ "value": 2029,
+ "unitCode": "FTK"
+ }
+}</script>
+<div class="modals" data-modal-container aria-hidden="true">
+ <div class="modal box" data-modal id="signup-modal">
+ <button class="modal-close" data-modal-close>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+
+ <h2 class="h1 alt">Sign up for an M/I Homes account</h2>
+ <p>Save your favorite home plans and communities, compare home plans and share your dream home with sales associates and real estate agents.</p>
+ <p>
+ Already a member?
+ <a class="button-plain" href="/account/login">Log In to your account »</a>
+ </p>
+ <a class="button button-wide" href="/account/register">
+ <span class="button-text">
+ Sign up with email
+ </span>
+ </a>
+ </div>
+</div>
+
+<div class="product-header" data-yes="true">
+
+ <div class="product-header-row product-header__top">
+
+ <div class="product-header-centered ">
+ <div>
+ <a href="/new-homes/texas/dallas-fort-worth-metroplex/sanger/lane-ranch" class="button-plain">
+ Lane Ranch
+ </a>
+
+ <h1 class="header-seo-h2">
+ 7022 Winecup Lane, Sanger, TX 76266
+ <button class="aux-nav-link button-favorite-product gami-favorite-save" data-favorite-type="Home" data-favorite-id="820533d3-4622-44c6-9691-5413343bc7d9" data-favorite-fav-id="820533d3-4622-44c6-9691-5413343bc7d9" data-add-favorite>
+ <svg class="icon icon-favorite" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#favorite"></use>
+</svg>
+ <span class="aux-nav-link-action-text">
+ Favorite
+ </span>
+ </button>
+ </h1>
+ </div>
+
+ <div class="product-header__actions">
+ <a class="button button-mobile-link button-virtual-tour event-click" href="https://www.zillow.com/view-imx/8b349006-d5e0-44c3-a1c3-3f1fcf9324d3?wl=true&setAttribution=mls&initialViewType=pano" target="_blank" data-event-category=VirtualTour
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <span class="button-text">Virtual Tour</span>
+ </a>
+ </div>
+ </div>
+ </div>
+
+ <div class="product-header-row">
+ <div class="product-header-centered tooptip-container">
+ <div>
+ <dl>
+ <dt>Ready date:</dt>
+ <dd>
+ <strong class="current-size">
+ September 20, 2026
+ </strong>
+ </dd>
+ </dl>
+ </div>
+ <div class="product-header-price">
+
+ Price:
+ <span class="home-card-price-old">$356,019</span>
+ <span class="product-header-price-new" content="352990">$352,990</span>
+
+ (
+ <span data-open-modal="mortgage-payment-calculator-modal" data-tooltip="Click estimate to see how we calculate this monthly payment" data-annualinsurance="2000" data-taxrate="0" data-interestrate="2.875" data-downpayment="3.5" data-price="352990" data-mortgage-monthly-payment tabindex="0" class="product-header-price-monthly"></span>
+ )
+
+
+ <span class="product-header-calculator">
+ <a class="button-plain button-plain-icon small button-icon-right gami-mortcalc-view" data-open-modal="mortgage-payment-calculator-modal">
+ <svg class="icon icon-calculator" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#calculator"></use>
+</svg>
+ Estimate Your Monthly Payment
+ </a>
+ </span>
+ </div>
+ </div>
+ </div>
+</div> <a rel="noopener" href="/new-homes/texas/dallas-fort-worth-metroplex/sanger/lane-ranch/plat map?lot=267814000512" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=8024 Butterfield Drive, Sanger, TX 76266&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=CstyWRmwgDn6dax4-xQIFzlUn5w=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+<div class="product-header-centered product-header-centered--contact-card-only">
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Lane Ranch</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://maps.google.com/maps?q=8024+Butterfield+Drive%3cbr%3eSanger%2c+TX+76266">
+ 8024 Butterfield Drive<br>Sanger, TX 76266
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">Appointment Only</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">Appointment Only</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+</div><div class="product-header">
+ <div class="product-header product-header-navigation">
+ <nav class="product-header-subnav" data-subnav="">
+ <div class="product-header-subnav-wrapper">
+ <div class="product-header-subnav-mobile-bottom">
+ <a class="button button-contact-us" href="/support/sales">
+ <span class="button-text">
+ Contact Us
+ </span>
+ </a>
+ </div>
+
+
+ <a class="product-header-subnav-toggle subnav-link" data-subnav-toggle="">
+ <span class="text" data-subnav-text="">Overview</span>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </a>
+
+ <ul class="product-header-subnav-links" data-subnav-links=""></ul>
+ </div>
+ </nav>
+
+ <div class="product-header-subnav-spacer"></div>
+
+ <a href="#overview" class="product-header__back-to-top is-hidden" data-back-to-top>
+ <div class="arrow arrow--up"></div>
+ </a>
+ </div>
+</div><section class="content-inner-with-sidebar content-inner-with-sidebar-right">
+
+
+ <div class="content-inner-content">
+
+
+
+
+
+<section class="plan-specification">
+ <h2 class="plan-specification__header">
+ About 7022 Winecup Lane
+ </h2>
+ <a class="plan-specification__get-directions button-plain button-plain-alt negative-top gami-directions-exit" target="_blank" href="https://www.google.com/maps/search/?api=1&query=33.3663031825684,-97.1562816993481">Get Directions</a>
+ <ul class="plan-specification__list">
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sq-ft" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sq-ft"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">square feet</span>
+ <strong class="plan-specification-item__value">
+ 2,029
+ </strong>
+ </div>
+ </li>
+ <li class="stories-specification">
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-homes" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#homes"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">stories</span>
+ <strong class="plan-specification-item__value">
+ 1
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-bed" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#bed"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">bedrooms</span>
+ <strong class="plan-specification-item__value">
+ 4
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-shower" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#shower"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">full bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 2
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sink" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sink"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">half bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 0
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-car" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#car"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">garages</span>
+ <strong class="plan-specification-item__value">
+ 2
+ <span data-tooltip="The most common approach to a home's garage, the front load garage incorporates the garage entry into a home's front elevation.">(Front Load)</span>
+
+ </strong>
+ </div>
+ </li>
+ </ul>
+</section>
+
+<div class="overview-table">
+ <div class="overview-table-table">
+ <dl>
+ <dt>City</dt>
+ <dd>Sanger, TX</dd>
+
+ <dt>Owner's Suite</dt>
+ <dd>First Floor</dd>
+
+ <dt>County</dt>
+ <dd>Denton</dd>
+
+ <dt>Home Type</dt>
+ <dd>Single Family Home</dd>
+
+ <dt>School District</dt>
+ <dd>Sanger ISD</dd>
+
+ <dt>Foundation Type</dt>
+ <dd>Slab</dd>
+
+ <dt>Home Plan</dt>
+ <dd>Herrera</dd>
+
+ <dt>MLS Number</dt>
+ <dd>21333565</dd>
+
+ <dt>Homesite</dt>
+ <dd>512</dd>
+
+ <dt> Base Plan Width & Depth</dt>
+ <dd>38'-11" x 67'-1 1/2" </dd>
+ </dl>
+ </div>
+</div>
+<article class="faq__question-item faq__question-item--mobile-only">
+ <button class="faq__question" data-expander="" aria-controls="community-series-teaser" aria-expanded="false">
+ <span class="faq__icon-wrapper">
+ <span class="faq__icon gami-directions-view">
+ <svg class="icon icon-arrow" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#arrow"></use>
+</svg>
+ </span>
+ </span>
+ Part of the 40' Smart Series
+ <span class="show-hide-text hidden-text">Hide</span>
+ </button>
+ <div class="faq__answer preview-box preview-box--series-tout" id="community-series-teaser" role="region" tabindex="-1">
+ <a class="preview-box__image preview-box__preview one-fourth" href="/new-homes/texas/dallas-fort-worth-metroplex/sanger/lane-ranch/series/40-smart-series">
+ <img data-dam-generated alt="Preview image" height="1536" loading="lazy" sizes="(min-width: 48rem) 193px, 100vw" src="https://dam.mihomes.com/media/1467440/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/1467440/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/1467440/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/1467440/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/1467440/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/1467440/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/1467440/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="[L702-z003]FamilyRoom" width="2304" class="cover-image" />
+ </a>
+ <div class="preview-box__content ">
+ <div class="preview-box__text__series-teaser">
+ <h3>Part of the 40' Smart Series</h3>
+ <p>
+ We believe your new home should be as flexible as your lifestyle, and the journey to owning it should be both enjoyable and stress-free. Our 1- and 2-story 40' Smart Series plans, range from around 1,600 to over 3,000 square feet and are designed with both style and functionality in mind.
+ </p>
+ </div>
+ <p>
+ <a class="button" href="/new-homes/texas/dallas-fort-worth-metroplex/sanger/lane-ranch/series/40-smart-series">Learn More</a>
+ </p>
+ </div>
+ </div>
+</article> <h2>
+ New 4-Bedroom Home for Sale in Sanger, Texas
+ </h2>
+ <div class="content-inner-content__capped-mobile-content">
+ <p>Welcome to 7022 Winecup Lane, Sanger, Texas — a beautifully crafted new construction single-story home built by M/I Homes. This 4-bedroom, 2-bathroom home offers 2,029 square feet of thoughtfully designed living space, perfect for comfortable everyday living and effortless entertaining.</p>
+<p>Step inside to discover an open-concept living space that connects the main gathering areas, creating a seamless flow throughout the home. The quality of design is evident in every detail, from the well-proportioned rooms to the carefully planned layout that maximizes both functionality and style.</p>
+<p><strong>Key Features:</strong></p>
+<ul>
+ <li>4 bedrooms and 2 bathrooms</li>
+ <li>2,029 square feet of single-story living</li>
+ <li>New construction by M/I Homes</li>
+ <li>Open-concept living space</li>
+ <li>Spacious owner's bedroom with en-suite bathroom</li>
+ <li>Covered patio for outdoor relaxation</li>
+ <li>Move-in ready with pre-selected features throughout</li>
+</ul>
+<p>The owner's bedroom serves as a private retreat, complemented by a dedicated en-suite bathroom designed for comfort and convenience. 3 additional bedrooms provide generous space for family, guests, or a home office.</p>
+<p>Outside, the covered patio extends the living area and offers a shaded spot to enjoy the outdoors. The surrounding neighborhood provides a welcoming atmosphere, with proximity to parks that offer recreational opportunities for residents of all ages.</p>
+<p>This home reflects quality craftsmanship and a well-executed design that prioritizes both comfort and practicality in every room.</p>
+
+ <!-- and done -->
+ <h3>
+ About the Community
+ </h3>
+ <p>
+ Lane Ranch is a welcoming new home community in Sanger, TX, offering small-town charm with easy access to the Denton area. Located just north of Denton and minutes from Lake Ray Roberts, the community provides a quieter pace of life while keeping shopping, dining, and outdoor recreation close by.
+The neighborhood features single-family Smart Series homes with a mix of one- and two-story floorplans designed for flexibility and comfort. Open-concept layouts, adaptable living spaces, and curated design packages make it easy to create a home that fits your lifestyle without added complexity.
+Residents enjoy amenities that encourage connection and time outdoors, including walking trails, greenbelts, open common spaces, and a neighborhood playground. The setting supports relaxed evenings, active weekends, and a strong sense of community.
+Lane Ranch is served by Sanger Independent School District, with schools located within walking distance for added convenience. With lower overall taxes, approachable home designs, and proximity to both nature and nearby city amenities, Lane Ranch offers an easy, affordable lifestyle well suited to many stages of life.
+Provide your feedback on BizChat
+ <br />
+ <a class="button-plain button-plain-alt" href="/new-homes/texas/dallas-fort-worth-metroplex/sanger/lane-ranch">Learn more about this community »</a>
+ </p>
+ </div>
+ <button class="faq__question color-aqua" aria-expanded="false" data-read-more="">
+ <span class="faq__icon-wrapper">
+ <span class="faq__icon">
+ <svg class="icon icon-arrow" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#arrow"></use>
+</svg>
+ </span>
+ </span>
+ <span data-read-more-collapsed="">Read More</span>
+ <span data-read-more-expanded="">Show Less</span>
+ <span class="show-hide-text hidden-text">Show</span>
+ </button>
+
+
+ <h4>Upcoming Events</h4>
+ <article class="preview-box">
+ <div class="preview-box-link">
+ <div class="preview-box__image preview-box__preview one-fifth">
+ <a href="/new-homes/texas/dallas-fort-worth-metroplex/events/open-house-get-home-before-the-bell-rings">
+ <img data-dam-generated alt="RTG | A+ Opportunities" height="5000" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/5018835/50421.jpeg?timestamp=2026-07-17T17%3A41%3A43.1681871" srcset="https://dam.mihomes.com/media/5018835/50398.jpeg?timestamp=2026-07-17T17%3A41%3A53.5631550 300w, https://dam.mihomes.com/media/5018835/50397.jpeg?timestamp=2026-07-17T17%3A41%3A46.6762870 600w, https://dam.mihomes.com/media/5018835/50423.jpeg?timestamp=2026-07-17T17%3A41%3A59.8473079 900w" title="A+Opportunities-Card" width="7500" class="cover-image" maxwidth="900" />
+ </a>
+ </div>
+ <div class="preview-box__content -multiple-times">
+ <h3 class="h3 preview-box__header">
+ Open House: Get Home Before the Bell Rings 🏡🎒
+ </h3>
+ <time class="preview-box__time" datetime="2026-08-15T10:00:00">Aug 15, 2026, 10:00 AM - 6:00 PM</time>
+ <p class="preview-box__text"><p>School is almost back in session and the bell is ringing on our Quick Move-In homes! Join us this weekend and find a home that is ready for study sessions, family game night, and A+ celebrations. 🏡🎒</p>
+<p><strong><em>Contact our team to RSVP today! </em></strong></p></p>
+ <p>
+ <a class="button-plain button-plain-alt" href="/new-homes/texas/dallas-fort-worth-metroplex/events/open-house-get-home-before-the-bell-rings">RSVP for this event »</a>
+ </p>
+ </div>
+ </div>
+ </article>
+ <a class="button-plain button-plain-alt negative-top" href="/new-homes/texas/dallas-fort-worth-metroplex/events">RSVP for this event »</a>
+
+ </div>
+
+ <div class="content-sidebar-right">
+ <a rel="noopener" href="/new-homes/texas/dallas-fort-worth-metroplex/sanger/lane-ranch/plat map?lot=267814000512" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=8024 Butterfield Drive, Sanger, TX 76266&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=CstyWRmwgDn6dax4-xQIFzlUn5w=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Lane Ranch</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://maps.google.com/maps?q=8024+Butterfield+Drive%3cbr%3eSanger%2c+TX+76266">
+ 8024 Butterfield Drive<br>Sanger, TX 76266
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">Appointment Only</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">Appointment Only</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+
+
+ <figure class="lead-form lead-form-sidebar lead-form-sidebar--compact lead-form-sidebar-signup">
+ <div class="lead-form-container">
+ <div id="lead-sidebar-header" class="lead-form-sidebar-header lead-form-sidebar-header-image">
+ <div id="isa-information" data-sidebar-section="1">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="Headshot" height="600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4527384/50397.jpeg?timestamp=2026-03-17T14%3A40%3A26.7276996" srcset="https://dam.mihomes.com/media/4527384/50398.jpeg?timestamp=2026-03-17T14%3A40%3A26.7375435 300w, https://dam.mihomes.com/media/4527384/50397.jpeg?timestamp=2026-03-17T14%3A40%3A26.7276996 600w, https://dam.mihomes.com/media/4527384/50423.jpeg?timestamp=2026-03-17T14%3A40%3A28.7048958 900w, https://dam.mihomes.com/media/4527384/50396.jpeg?timestamp=2026-03-17T14%3A40%3A26.6747850 1200w, https://dam.mihomes.com/media/4527384/50421.jpeg?timestamp=2026-03-17T14%3A40%3A27.5566686 1800w, https://dam.mihomes.com/media/4527384/50422.jpeg?timestamp=2026-03-17T14%3A40%3A28.0977903 2400w" title="DFW-Headshot-ChandlerWall" width="600" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="Headshot" height="600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4527383/50397.jpeg?timestamp=2026-03-17T14%3A40%3A26.7308400" srcset="https://dam.mihomes.com/media/4527383/50398.jpeg?timestamp=2026-03-17T14%3A40%3A26.7901979 300w, https://dam.mihomes.com/media/4527383/50397.jpeg?timestamp=2026-03-17T14%3A40%3A26.7308400 600w, https://dam.mihomes.com/media/4527383/50423.jpeg?timestamp=2026-03-17T14%3A40%3A29.3188334 900w, https://dam.mihomes.com/media/4527383/50396.jpeg?timestamp=2026-03-17T14%3A40%3A26.7882196 1200w, https://dam.mihomes.com/media/4527383/50421.jpeg?timestamp=2026-03-17T14%3A40%3A28.1752043 1800w, https://dam.mihomes.com/media/4527383/50422.jpeg?timestamp=2026-03-17T14%3A40%3A28.7793584 2400w" title="DFW-Headshot-BeckyKim" width="600" class="cover-image" />
+ </div>
+ </div>
+ <h3 class="">Have questions for us?</h3>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=9726194200'>(972) 619-4200</a>
+ </p>
+ </div>
+ <div id="form-agent-header" class="lead-form-sidebar-section right" style="display: none;">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+
+ </div>
+ <div class="lead-form-sidebar-form" data-lead-form-sidebar="">
+ <div class="lead-form-sidebar-errors"></div>
+<form action="/api/LeadGenFormSidebar/LeadGenFormSidebar" data-gami-event="gami-form-question" data-parsley-validate="" data-sidebar-hidden-required="" data-sidebar-nav-check="visit_sidebar" method="post" name="basic_sidebar" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="8643aa76-9cb0-4933-8d13-a9f27fc9e5bc" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Inventory" /><input id="PostType" name="PostType" type="hidden" value="sidebar" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:50 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="ItemId" name="ItemId" type="hidden" value="820533d3-4622-44c6-9691-5413343bc7d9" /><input id="HomeType" name="HomeType" type="hidden" value="Single Family Home" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 443px;">
+ <div class="align-left center lead-form-sidebar-section" data-cta="Request Information" data-sidebar-section="0">
+ <div>
+
+ <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="">
+ </div>
+
+ <div class="form-field no-label-errors" style="margin-top: 1px">
+ <label for="fullname_sidebar"></label>
+ <input type="text"
+ name="FormFullName"
+ id="fullname_sidebar"
+ placeholder="Full Name"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required." data-parsley-trigger="blur"
+ maxlength="60"
+ data-parsley-filter-emoji=""
+ >
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormEmailAddress"
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="phone_sidebar">Phone Number</label>
+ <input class="gami-tel" type="tel"
+ autocomplete="tel-national"
+ name="FormPhoneNumber"
+ id="phone_sidebar"
+ placeholder="Phone Number" +
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ value=""
+
+ data-parsley-phone-number="" data-parsley-trigger="blur"
+ maxlength="25">
+ </div>
+
+ <div class="form-field no-label-errors">
+ <label for="comments_sidebar">Questions or Comments</label>
+ <textarea rows="5"
+ name="FormComments"
+ id="comments_sidebar"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000">Please send me information about 7022 Winecup Lane</textarea>
+ </div>
+ </div>
+ <div>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox hide" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input data-parsley-multiple="visit_sidebar" name="visit_sidebar" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to plan a visit</span>
+ </label>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormEmailOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSAssociateCommunicationsOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" data-sidebar-section="1" tabindex="-1">
+ <div>
+ <h4>Plan a visit</h4>
+ <p>Select your preferred day and time and we’ll help set up the perfect visit.</p>
+ </div>
+ <div>
+ <div class="select no-label-errors">
+ <label for="tripday_sidebar"> </label>
+ <div class="select-wrap">
+<select data-nested-select="#select-triptime-block-sidebar" data-parsley-group="visit_sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+
+ <div class="select no-label-errors">
+ <label for="triptime_sidebar"> </label>
+ <div class="select-wrap">
+<select data-parsley-group="visit_sidebar" id="triptime_sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" dta-cta="Continue" data-sidebar-section="2" data-agent-section tabindex="-1">
+
+ <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0">
+ <div class="align-left center lead-form-sidebar-section" data-sidebar-section="0">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button form-submit">
+ <span class="button-text">Request Information</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-left lead-form-sidebar-section right" data-sidebar-section="1">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit" disabled tabindex="-1">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="2">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button" disabled tabindex="-1">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit" disabled tabindex="-1">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+ </div>
+ </div>
+</form> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 25px;">
+ <div class="align-center center lead-form-sidebar-section" data-sidebar-section="0">
+ <button class="button-plain small" data-open-modal="privacy-policy-modal" href="javascript:void()">Privacy Policy</button>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="1">
+ <button class="button-plain small" data-sidebar-nav="0" tabindex="-1">« Go Back</button>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <!-- THANK YOU MESSAGE -->
+ <div class="lead-form-container-success">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-success lead-form-sidebar-header-image">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" data-parsley-validate="" method="POST" name="thanksyou_sidebar" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+ <div>
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+ <div class="form-field form-field-password">
+ <label for="password"> </label>
+ <input data-parsley-required-message="Password is required." data-parsley-valid-password="" id="password" minlength="8" name="password" placeholder="Password" required="" type="password" data-parsley-filter-emoji="" data-parsley-trigger="blur">
+ <button class="password-input-change" data-input-change="" type="button">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)" tabindex="0">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">
+ Create Account
+ </span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ <h3 class="h3 preview-box__header">
+ Incentives
+ </h3>
+ <a class="incentive incentive__sidebar--simple" href="/new-homes/texas/dallas-fort-worth-metroplex/incentives/lower-payments">
+ <div class="incentive-background">
+ <img data-dam-generated alt="Lower Payments" height="1200" loading="eager" sizes="(min-width: 64rem) 328px, 100vw" src="https://dam.mihomes.com/media/3398695/50421.jpeg" srcset="https://dam.mihomes.com/media/3398695/50398.jpeg?timestamp=2025-07-15T17%3A06%3A54.6851490 300w, https://dam.mihomes.com/media/3398695/50397.jpeg?timestamp=2025-07-15T17%3A06%3A53.2195117 600w, https://dam.mihomes.com/media/3398695/50423.jpeg?timestamp=2025-07-15T17%3A07%3A01.3602581 900w, https://dam.mihomes.com/media/3398695/50396.jpeg?timestamp=2025-07-15T17%3A06%3A51.6143482 1200w, https://dam.mihomes.com/media/3398695/50421.jpeg?timestamp=2025-07-15T17%3A06%3A59.7040981 1800w, https://dam.mihomes.com/media/3398695/50422.jpeg?timestamp=2025-07-15T17%3A07%3A00.6417884 2400w" title="LowerPayments-Header-1800x430" width="1800" class="cover-image cover-image--abs" />
+ <div class="incentive__badge">
+<img data-dam-generated alt="Lower Payments" height="250" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3398693/50420.png?timestamp=2025-09-05T14%3A20%3A10.9917892" srcset="https://dam.mihomes.com/media/3398693/50399.png?timestamp=2025-07-15T17%3A09%3A05.6165736 300w, https://dam.mihomes.com/media/3398693/50420.png?timestamp=2025-09-05T14%3A20%3A10.9917892 600w" title="Low Payments Icon 250x250" width="250" class="incentive__badge-background" maxwidth="2400" /> </div>
+ </div>
+ <div class="incentive-inner">
+ <span class="incentive-title--wrapper">
+ <p class="incentive-title">Move In Now, Receive Lower Payments</p>
+ </span>
+ <p class="incentive-sub-headline">A high-quality home doesn't have to mean a higher payment. For a limited time, secure a 2/1 buydown with first-year rates as low as 2.875%* / 5.632% APR* on a 30-year fixed FHA loan through M/I Financial, LLC. Increase your home-buying power and lower your rate today.</p>
+ <p class="incentive-button--wrapper">
+ <span class="button button-small" href="/new-homes/texas/dallas-fort-worth-metroplex/incentives/lower-payments">
+ <span class="button-text uppercase">View Details</span>
+ </span>
+ </p>
+ </div>
+ </a>
+
+</div>
+</section>
+
+ <div id="design" class="box box-full box-no-padding-bottom" data-subnav-page-link="Design Options">
+ <div class="content-inner-centered">
+ <h2>Add the perfect finishing touch</h2>
+ <p class="subtitle content-inner-centered-narrow negative-top">
+ Put your personal touch on these Quick Move-In Homes with some selections from our Design Studio.
+ </p>
+ <div class="button-tooltip-wrapper">
+ <a class="button button-tooltip event-click" href="https://edc.envisionoptions.com/browser.aspx?NHTNumber=MIHOMES&Loc1=100&Lev1=CORP&Loc2=267&Lev2=DIV&HomeNumber=13D5C4&Page=Confirmselection&utm_source=mihomes.com&utm_campaign=&utm_content=lane-ranch-Herrera-7022-Winecup-Lane&utm_term=" target="_blank" data-event-category=OptionsGallery
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ See This Home's Options
+ </a>
+
+
+ </div>
+ <a class="button" href="/design/design-studio">
+ <span class="button-text">
+ Visit a Design Studio
+ </span>
+ </a>
+ </div>
+ </div>
+ <div class="box box-full box-no-padding-top">
+ <div class="contained-width">
+ <hr class="hr-even">
+
+ <h4>Incentives</h4>
+ <article class="preview-box ">
+ <a class="preview-box-link" href="/new-homes/texas/dallas-fort-worth-metroplex/incentives/lower-payments">
+ <div class="preview-box__image preview-box__preview one-third">
+ <img data-dam-generated alt="Lower Payments" height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3398695/50421.jpeg" srcset="https://dam.mihomes.com/media/3398695/50398.jpeg?timestamp=2025-07-15T17%3A06%3A54.6851490 300w, https://dam.mihomes.com/media/3398695/50397.jpeg?timestamp=2025-07-15T17%3A06%3A53.2195117 600w, https://dam.mihomes.com/media/3398695/50423.jpeg?timestamp=2025-07-15T17%3A07%3A01.3602581 900w" title="LowerPayments-Header-1800x430" width="1800" class="cover-image" maxwidth="900" />
+ </div>
+ <div class="preview-box__content">
+ <h3 class="h3 preview-box__header">
+ Move In Now, Receive Lower Payments
+
+
+ </h3>
+ <p class="preview-box__text">A high-quality home doesn't have to mean a higher payment. For a limited time, secure a 2/1 buydown with first-year rates as low as 2.875%* / 5.632% APR* on a 30-year fixed FHA loan through M/I Financial, LLC. Increase your home-buying power and lower your rate today.</p>
+ <p>
+ <span class="button-plain button-plain-alt" href="/new-homes/texas/dallas-fort-worth-metroplex/incentives/lower-payments">View Details »</span>
+ </p>
+ </div>
+ </a>
+ </article>
+ </div>
+ </div>
+
+ <div id="floor" class="box box-full box-last event-inview" data-subnav-page-link="FloorPlan" data-event-category=Floorplan
+ data-event-action=scroll
+ data-event-label=view
+>
+ <div class="content-inner-centered content-inner-centered--mobile">
+<img data-dam-generated alt="Herrera Floorplan" height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4830149/50421.jpeg?timestamp=2026-06-04T22%3A03%3A20.0598197" srcset="https://dam.mihomes.com/media/4830149/50398.jpeg?timestamp=2026-06-04T22%3A03%3A18.5219530 300w, https://dam.mihomes.com/media/4830149/50397.jpeg?timestamp=2026-06-04T22%3A03%3A18.5018182 600w, https://dam.mihomes.com/media/4830149/50423.jpeg?timestamp=2026-06-04T22%3A03%3A21.6954922 900w, https://dam.mihomes.com/media/4830149/50396.jpeg?timestamp=2026-06-04T22%3A03%3A18.5493881 1200w, https://dam.mihomes.com/media/4830149/50421.jpeg?timestamp=2026-06-04T22%3A03%3A20.0598197 1800w, https://dam.mihomes.com/media/4830149/50422.jpeg?timestamp=2026-06-04T22%3A03%3A20.7862437 2400w" title="DFW-herrera-F-40smartseries-print" width="1800" class="cover-image cover-image--abs" /> <h2>Floorplan Options for Your New Home</h2>
+ <p class="content-inner-centered-narrow negative-top subtitle">The Herrera accommodates a variety of household living arrangements with its highly desired flexibility and modern design. Explore the many possibilities in the popular Herrera plan.</p>
+ <a target="_blank" class="button floor-plan-options__button event-click" href="https://rifp.ml3ds-icon.com/#/floorplan/559350?pcoLink=67420&pco=1503087%2c1503088%2c1503091%2c1503092%2c1503538&reverseFloorPlan=false&pcoElevations=653028" data-event-category=Floorplan
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <svg class="icon icon-fullscreen" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#fullscreen"></use>
+</svg>
+ <span class="button-text">
+ Show Floorplan
+ </span>
+ </a>
+ </div>
+ <section class="floor-plan-options">
+ <iframe loading="lazy" id="floor-plan" data-fullsize class="floor-plan-options__iframe" data-src="https://rifp.ml3ds-icon.com/#/floorplan/559350?pcoLink=67420&pco=1503087%2c1503088%2c1503091%2c1503092%2c1503538&reverseFloorPlan=false&pcoElevations=653028" scrolling="no" style="overflow: hidden">
+ <p>Your browser does not support iframes.</p>
+ </iframe>
+ </section>
+ </div>
+
+ <div class="box box-full box-no-padding-top-bottom " id="">
+ <div class="content-inner-centered">
+ <div class="leadgenTitleBlock">
+ <h2 class="h2">Ready to plan a visit? We can help</h2>
+ <p class="subtitle marginless">Send us your preferred time to stop by and a sales representative will take care of the rest</p>
+ </div>
+ <section class="lead-form">
+ <div id="lead-form-block-user-info" class="lead-form-container lead-form-block" data-lead-form-sidebar="">
+ <aside class="lead-form-block__details" style="">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="Headshot" height="600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4527384/50397.jpeg?timestamp=2026-03-17T14%3A40%3A26.7276996" srcset="https://dam.mihomes.com/media/4527384/50398.jpeg?timestamp=2026-03-17T14%3A40%3A26.7375435 300w, https://dam.mihomes.com/media/4527384/50397.jpeg?timestamp=2026-03-17T14%3A40%3A26.7276996 600w, https://dam.mihomes.com/media/4527384/50423.jpeg?timestamp=2026-03-17T14%3A40%3A28.7048958 900w, https://dam.mihomes.com/media/4527384/50396.jpeg?timestamp=2026-03-17T14%3A40%3A26.6747850 1200w, https://dam.mihomes.com/media/4527384/50421.jpeg?timestamp=2026-03-17T14%3A40%3A27.5566686 1800w, https://dam.mihomes.com/media/4527384/50422.jpeg?timestamp=2026-03-17T14%3A40%3A28.0977903 2400w" title="DFW-Headshot-ChandlerWall" width="600" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="Headshot" height="600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4527383/50397.jpeg?timestamp=2026-03-17T14%3A40%3A26.7308400" srcset="https://dam.mihomes.com/media/4527383/50398.jpeg?timestamp=2026-03-17T14%3A40%3A26.7901979 300w, https://dam.mihomes.com/media/4527383/50397.jpeg?timestamp=2026-03-17T14%3A40%3A26.7308400 600w, https://dam.mihomes.com/media/4527383/50423.jpeg?timestamp=2026-03-17T14%3A40%3A29.3188334 900w, https://dam.mihomes.com/media/4527383/50396.jpeg?timestamp=2026-03-17T14%3A40%3A26.7882196 1200w, https://dam.mihomes.com/media/4527383/50421.jpeg?timestamp=2026-03-17T14%3A40%3A28.1752043 1800w, https://dam.mihomes.com/media/4527383/50422.jpeg?timestamp=2026-03-17T14%3A40%3A28.7793584 2400w" title="DFW-Headshot-BeckyKim" width="600" class="cover-image" />
+ </div>
+ </div>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=9726194200'>(972) 619-4200</a>
+ </p>
+ </aside>
+<form action="/api/LeadGenFormBlock/LeadGenFormBlock" class="lead-form-block__form" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="8643aa76-9cb0-4933-8d13-a9f27fc9e5bc" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Model" /><input id="PostType" name="PostType" type="hidden" value="block" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:50 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="FormAgentEmailAddress" name="FormAgentEmailAddress" type="hidden" value="" /><input id="ItemId" name="ItemId" type="hidden" value="820533d3-4622-44c6-9691-5413343bc7d9" /><input id="HomeType" name="HomeType" type="hidden" value="Single Family Home" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="" hidden>
+ </div>
+ <div class="form-field">
+ <label for="fullname">Full Name </label>
+ <input type="text"
+ name="FormFullName"
+ placeholder="John Doe"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required."
+ maxlength="60"
+
+ data-parsley-filter-emoji=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="emailaddress">Email Address </label>
+ <input type="email"
+ name="FormEmailAddress" ,
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field">
+ <label for="phone">Phone Number </label>
+ <input class="gami-tel" type="tel"
+ name="FormPhoneNumber"
+ id="phone"
+ placeholder="5555555555"
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ maxlength="25"
+ value=""
+
+ data-parsley-phone-number=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="input">Questions or Comments </label>
+ <textarea rows="5"
+ name="FormComments"
+ id="input"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000"></textarea>
+ </div>
+ <div class="lead-form-block__contacts">
+ <div class="form-field select" {="">
+ <label for="tripday_block">Preferred Day <em> (Optional)</em></label>
+ <div class="select-wrap">
+ <div class="select-wrap">
+<select date-nested-select="#select-triptime-block-sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+
+ <div class="form-field select" {="">
+ <label for="triptime_block">Preferred Time <em> (Optional)</em></label>
+ <div class="select-wrap">
+
+<select id="select-triptime-block-sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-block__checkboxes-container">
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormEmailOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSAssociateCommunicationsOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ <div class="lead-form-block__submit">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+
+ <span class="align-center">
+ <a class="button-plain small" data-open-modal="privacy-policy-modal">Privacy Policy</a>
+ </span>
+ </div>
+</form> </div>
+ <div id="lead-form-block-agent-form" class="lead-form-container lead-form-block" data-lead-form-sidebar="" data-agent-section style="display: none;">
+ <figure class="lead-form lead-form-sidebar">
+ <div id="form-agent-header" class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+<form action="/new-homes/texas/dallas-fort-worth-metroplex/sanger/lane-ranch/herrera-plan/7022-winecup-lane" class="lead-form-sidebar-section" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""> <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ id="block-agent-email"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+</form> </div>
+ </figure>
+ </div>
+
+
+
+ <div class="lead-form-container-success">
+ <figure class="lead-form lead-form-sidebar">
+ <div class="lead-form-container-success" style="display: block">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" method="POST" name="thanksyou_sidebar" data-parsley-validate="" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+
+ <div>
+ <div class="form-field form-field-password">
+ <label for="password"></label>
+ <input type="password"
+ name="password"
+ id="password"
+ placeholder="Password"
+ data-parsley-valid-password=""
+ minlength="8"
+ required=""
+ data-parsley-required-message="Password is required."
+ data-parsley-trigger="blur">
+
+ <button type="button" class="password-input-change" data-input-change="">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span tabindex="0"
+ data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">Create Account</span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ </div>
+ </section>
+ </div>
+ </div>
+
+ <div class="box box-centered box-full box-transparent" id="neraby">
+ <div class="box-full-inner">
+ <h3 class="h2">
+ Other Quick Move-In Homes
+ </h3>
+
+ <div class="featured-grid">
+ <div class="row">
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/texas/dallas-fort-worth-metroplex/sanger/lane-ranch/sanpiper-plan/7021-butterfield-drive">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Sanpiper Elevation G" height="1600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3273574/50421.jpeg?timestamp=2025-06-20T16%3A00%3A55.5956202" srcset="https://dam.mihomes.com/media/3273574/50398.jpeg?timestamp=2025-06-20T16%3A00%3A53.0382502 300w, https://dam.mihomes.com/media/3273574/50397.jpeg?timestamp=2025-06-20T16%3A00%3A51.8675999 600w, https://dam.mihomes.com/media/3273574/50423.jpeg?timestamp=2025-06-20T16%3A00%3A56.7944319 900w, https://dam.mihomes.com/media/3273574/50396.jpeg?timestamp=2025-06-20T16%3A00%3A50.6949358 1200w, https://dam.mihomes.com/media/3273574/50421.jpeg?timestamp=2025-06-20T16%3A00%3A55.5956202 1800w, https://dam.mihomes.com/media/3273574/50422.jpeg?timestamp=2025-06-20T16%3A00%3A55.1011070 2400w" title="DFW-Sanpiper-ElevationG1-Gen3-elev_DSK" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Sanpiper</p>
+ <p class="featured-grid-middle">7021 Butterfield Drive, Sanger, Texas</p>
+ <p class="featured-grid-subtitle">Listed at $333,990</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/texas/dallas-fort-worth-metroplex/sanger/lane-ranch/shipton-plan/7025-winecup-lane">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Shipton Elevation G" height="1600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3441402/50421.jpeg?timestamp=2025-07-23T22%3A02%3A44.0940286" srcset="https://dam.mihomes.com/media/3441402/50398.jpeg?timestamp=2025-07-23T22%3A02%3A42.0405234 300w, https://dam.mihomes.com/media/3441402/50397.jpeg?timestamp=2025-07-23T22%3A02%3A41.3459134 600w, https://dam.mihomes.com/media/3441402/50423.jpeg?timestamp=2025-07-23T22%3A02%3A44.1315351 900w, https://dam.mihomes.com/media/3441402/50396.jpeg?timestamp=2025-07-23T22%3A02%3A41.3910914 1200w, https://dam.mihomes.com/media/3441402/50421.jpeg?timestamp=2025-07-23T22%3A02%3A44.0940286 1800w, https://dam.mihomes.com/media/3441402/50422.jpeg?timestamp=2025-07-23T22%3A02%3A43.3785763 2400w" title="DFW-S419-Shipton-ElevationG1-Gen3-elev_DSK" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Shipton</p>
+ <p class="featured-grid-middle">7025 Winecup Lane, Sanger, Texas</p>
+ <p class="featured-grid-subtitle">Listed at $344,990</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/texas/dallas-fort-worth-metroplex/sanger/lane-ranch/pizarro-plan/7018-winecup-lane">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Pizarro Elevation H" height="1600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/2053203/50421.jpeg?timestamp=2024-07-02T16%3A20%3A47.9946944" srcset="https://dam.mihomes.com/media/2053203/50398.jpeg?timestamp=2024-07-02T16%3A21%3A05.3240402 300w, https://dam.mihomes.com/media/2053203/50397.jpeg?timestamp=2024-07-02T16%3A21%3A14.8018385 600w, https://dam.mihomes.com/media/2053203/50423.jpeg?timestamp=2024-07-02T16%3A21%3A20.3455241 900w, https://dam.mihomes.com/media/2053203/50396.jpeg?timestamp=2024-07-02T16%3A21%3A04.6815049 1200w, https://dam.mihomes.com/media/2053203/50421.jpeg?timestamp=2024-07-02T16%3A20%3A47.9946944 1800w, https://dam.mihomes.com/media/2053203/50422.jpeg?timestamp=2024-07-02T16%3A20%3A52.1104126 2400w" title="DFW-Pizarro-ElevationH-Gen3-elev_DSK" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Pizarro</p>
+ <p class="featured-grid-middle">7018 Winecup Lane, Sanger, Texas</p>
+ <p class="featured-grid-subtitle">Listed at $359,990</p>
+ </a>
+</div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ </main>
+
+
+<footer class="main-footer">
+ <div class="main-footer-inner">
+ <ul class="horizontal-list">
+ <li><a href="https://apply.workable.com/mi-homes/" target="_blank" rel="noopener noreferrer" >Careers</a></li>
+ <li><a href="/support/warranty" >Warranty</a></li>
+ <li><a href="https://investors.mihomes.com/" rel="noopener noreferrer" title="Investor Relations" target="_blank" >Investors</a></li>
+ <li><a href="/events" >Events</a></li>
+ <li><a href="/incentives" >Incentives</a></li>
+ <li><a href="/agent/agent-info" >Agents & Brokers</a></li>
+ <li><a href="/resources" >Home Buying Resources</a></li>
+ <li><a href="/why-mi/journey" >Journey</a></li>
+ <li><a href="/blog/" >Blog</a></li>
+ </ul>
+ <ul class="horizontal-list">
+ <li><a href="/policies/privacy-policy" >Privacy Policy</a></li>
+ <li><a href="/policies/terms-of-use" >Terms of Use</a></li>
+ <li><a href="/subscriptions" >Manage Subscriptions</a></li>
+ <li><a href="/support/ccpa" >CCPA</a></li>
+ </ul>
+ <ul class="icon-list">
+ <li>
+<a href="https://www.instagram.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Instagram" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704717/50399.png" srcset="https://dam.mihomes.com/media/4704717/50399.png?timestamp=2026-05-04T18%3A56%3A58.4036491 300w, https://dam.mihomes.com/media/4704717/50420.png 600w" title="instagram" width="24" /></a> </li>
+ <li>
+<a href="https://www.facebook.com/MIHomesInc/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Facebook" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57191/50399.png" srcset="https://dam.mihomes.com/media/57191/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57191/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="facebook" width="24" /></a> </li>
+ <li>
+<a href="https://www.youtube.com/MIHomesInc" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Youtube" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704715/50399.png" srcset="https://dam.mihomes.com/media/4704715/50399.png?timestamp=2026-05-04T18%3A34%3A30.5730196 300w, https://dam.mihomes.com/media/4704715/50420.png 600w" title="youtube" width="24" /></a> </li>
+ <li>
+<a href="https://www.pinterest.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Pinterest" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57192/50399.png" srcset="https://dam.mihomes.com/media/57192/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57192/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="pintrest" width="24" /></a> </li>
+ <li>
+<a href="http://www.houzz.com/pro/mi-homes/m-i-homes" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Houzz" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57193/50399.png" srcset="https://dam.mihomes.com/media/57193/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57193/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="houzz" width="24" /></a> </li>
+ <li>
+<a href="http://portal.hud.gov" class="" rel="me" target="_blank" ><img data-dam-generated alt="Equal Housing" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704718/50399.png" srcset="https://dam.mihomes.com/media/4704718/50399.png?timestamp=2026-05-04T19%3A02%3A51.2896193 300w, https://dam.mihomes.com/media/4704718/50420.png 600w" title="equal-housing" width="28" /></a> </li>
+ </ul>
+ <p class="main-footer-copyright">
+ Copyright 2026, M/I Homes, Inc. All rights reserved.
+ </p>
+ <p id="division-disclaimer" class="main-footer-copyright">
+
+
+ </p>
+ </div>
+</footer>
+</div>
+<div aria-label="Cookie Consent" role="dialog" id="ccpa-modal" class="ccpa-modal">
+ <p>By browsing, you accept our <a href="/policies/terms-of-use">terms of use</a> and <a href="/policies/privacy-policy">privacy policy</a>.</p>
+ <button class="button" type="button">OK</button>
+</div>
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/modals.css?ver=202608092247" rel="stylesheet" fetchpriority="low">
+ <div class="modal modal-wide box" data-modal="" id="privacy-policy-modal">
+ <button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div id="privacy-policy-text"></div>
+</div><div class="modal box box-wide box-paddingless" data-modal="" id="mortgage-payment-calculator-modal">
+<button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+</button>
+ <div id="mortgage-payment-calculator" data-price="352990" data-values="ee47ee7e-3f3c-4c54-b97a-7e9f3286a13c"></div>
+</div>
+ <div class="modal" data-modal id="search-modal">
+ <form action="/search" class="search-form ">
+ <input class="search-form-input" id="search-form-input" name="search" placeholder="Search M/I Homes"
+ type="search" />
+ <button class="button search-form-clear-button" type="button">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+
+ </button>
+ <button class="button search-form-submit" type="submit">
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ <div class="search-form-results">
+ <div class="search-form-results-list"></div>
+ </div>
+ </form>
+ </div>
+</div>
+
+<!-- toolkit scripts -->
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit_common.js?ver=202608092247"></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit.js?ver=202608092247"></script>
+ <script src="https://cdn.mihomes.com/assets/toolkit/js/product.js?ver=202608092247"></script>
+ <script defer src="https://cdn.mihomes.com/assets/toolkit/js/mortgage-calculator.js?ver=202608092247"></script>
+<script>window.jQuery = window.$ = window.JQUERY;</script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/common.js?ver=202608092247" defer></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/favorites.js?ver=202608092247" defer></script>
+
+
+<script>
+ var w = Math.max(
+ document.body.scrollWidth,
+ document.documentElement.scrollWidth,
+ document.body.offsetWidth,
+ document.documentElement.offsetWidth,
+ document.documentElement.clientWidth
+ );
+ window.setCookie('screen-width', encodeURIComponent(w), { expires: 14, path: "/" })
+ </script>
+
+<script>
+
+
+</script>
+<script type="text/javascript">
+ const millisecondsPerDay = 86400000;
+ const millisecondsPerHour = millisecondsPerDay / 24;
+ const millisecondsPerMinute = millisecondsPerHour / 60;
+ const millisecondsPerSecond = 1000;
+ function addLeadingZero(val) {
+ if(val.toString().length < 2) {
+ return '0'+val;
+ }
+ return val;
+ }
+ function change() {
+ const list = Array.from(document.querySelectorAll('[data-countdown]'));
+ const now = new Date().getTime();
+ list.forEach((el) => {
+ const d = new Date(el.getAttribute('data-countdown')).getTime();
+ let diff = d - now;
+ let days = 0;
+ let hours = 0;
+ let minutes = 0;
+ let seconds = 0;
+ if(diff > 0) {
+ days = Math.floor(diff / millisecondsPerDay);
+ diff = diff - (days * millisecondsPerDay)
+ hours = Math.floor(diff/millisecondsPerHour);
+ diff = diff - (hours * millisecondsPerHour)
+ minutes = Math.floor(diff/millisecondsPerMinute);
+ diff = diff - (minutes * millisecondsPerMinute);
+ seconds = Math.floor(diff/millisecondsPerSecond);
+ }
+ try {
+ el.querySelector('.days').innerText = addLeadingZero(Math.max(days, 0));
+
+ } catch (e) {}
+ try {
+ el.querySelector('.hours').innerText = addLeadingZero(Math.max(hours, 0));
+ } catch(e) {}
+ try {
+ el.querySelector('.minutes').innerText = addLeadingZero(Math.max(minutes, 0));
+ } catch (e) {}
+ try {
+ el.querySelector('.seconds').innerText = addLeadingZero(Math.max(seconds, 0));
+ } catch (e) {}
+
+ });
+ setTimeout(()=>requestAnimationFrame(change), millisecondsPerSecond);
+ }
+ requestAnimationFrame(change);
+</script>
+<script>(function(){function c(){var b=a.contentDocument||(a.contentWindow&&a.contentWindow.document);if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'a2949659ed4412ad',t:'MTc4NjQyMzQ4OQ=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
+
+</html>
\ No newline at end of file
diff --git a/collectors/mi-homes/fixtures/homes/h2.html b/collectors/mi-homes/fixtures/homes/h2.html
new file mode 100644
index 00000000..5b52035a
--- /dev/null
+++ b/collectors/mi-homes/fixtures/homes/h2.html
@@ -0,0 +1,2074 @@
+
+
+<!doctype html>
+<html lang="en">
+
+<head>
+
+ <script>
+ var G = G || {};
+ G.pingForEmployee = true;
+ </script>
+
+
+<meta name="VIcurrentDateTime" content="639220202492791679" />
+<meta name="VirtualFolder" content="/" />
+<script type="text/javascript" src="/layouts/system/VisitorIdentification.js"></script>
+
+
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" name="viewport">
+ <title>13213 Keefer Drive Manchaca, TX 78652 - M/I Homes</title>
+ <!-- font -->
+ <link rel="preconnect" href="https://cdn.mihomes.com" crossorigin>
+ <link rel="preconnect" href="https://use.typekit.net" crossorigin>
+
+
+
+<!-- Google Tag Script -->
+
+ <script id="js-GTM-script">
+ window.dataLayer = window.dataLayer || [];
+ window.dataLayer.push({
+ "PageType": "Spec",
+ "MIAccount": "No",
+ "Division": "Austin"
+});
+
+(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=
+'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
+})(window,document,'script','dataLayer','GTM-M2JH3QJ');
+ </script>
+
+
+<!-- End Google Tag Script -->
+ <meta name="referrer" content="always" />
+
+ <link href="https://use.typekit.net/sgt3sit.css" rel="stylesheet" type="text/css" media="print" onload="this.media='all'" id="fonts-loaded" />
+
+<script>
+ try {
+ document.fonts.ready.then(() => {
+ document.body.classList.add('body--fonts-loaded');
+ if(window.setCookiie) {
+ window.setCookie('fonts-cached', 'true', { expires: 7, path: '/' });
+ }
+ });
+ } catch (e) { }
+</script>
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/toolkit.css?ver=202608092245" type="text/css" rel="stylesheet">
+ <!-- conditionally load css for blog -->
+
+ <script>
+ window.environment = "Prod";
+ window.googleApiKey = "REDACTED-THIRD-PARTY-PUBLIC-KEY";
+ </script>
+ <script>
+
+ window.maps =[];
+ window.AssetRootUrl = 'https://cdn.mihomes.com';
+
+ </script>
+
+ <meta name="twitter:card" content="summary" />
+<meta name="twitter:site" content="@mihomes" />
+<meta name="twitter:creator" content="@mihomes">
+
+<meta property="og:site_name" content="https://www.mihomes.com" />
+<meta property="og:type" content="article" />
+<meta property="og:url" content="https://www.mihomes.com/new-homes/texas/greater-austin/austin/estancia-west/estonian-plan/13213-keefer-drive" />
+
+
+ <meta property="og:title" content="13213 Keefer Drive" />
+ <meta name="twitter:title" content="13213 Keefer Drive" />
+
+
+
+ <meta property="og:description" content="Welcome to 13213 Keefer Drive, Manchaca, TX — a new construction home built by M/I Homes. This 2-story home offers 2,434 square feet of thoughtfully designed living space with 3 bedrooms, 2 full bathrooms, and 1 half bathroom." />
+ <meta name="twitter:description" content="Welcome to 13213 Keefer Drive, Manchaca, TX — a new construction home built by M/I Homes. This 2-story home offers 2,434 square feet of thoughtfully designed living space with 3 bedrooms, 2 full bathrooms, and 1 half bathroom." />
+ <meta name="description" content="Welcome to 13213 Keefer Drive, Manchaca, TX — a new construction home built by M/I Homes. This 2-story home offers 2,434 square feet of thoughtfully designed living space with 3 bedrooms, 2 full bathrooms, and 1 half bathroom." />
+
+
+
+ <link rel="canonical" href="https://www.mihomes.com/new-homes/texas/greater-austin/austin/estancia-west/estonian-plan/13213-keefer-drive">
+ <link defer href="https://dam.mihomes.com/media/4179716/50399.png" rel="icon" type="image/vnd.microsoft.icon" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="57x57"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-57x57.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="114x114"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-114x114.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="72x72"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-72x72.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="144x144"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-144x144.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="60x60"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-60x60.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="120x120"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-120x120.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="76x76"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-76x76.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="152x152"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-152x152.png" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-196x196.png"
+ sizes="196x196" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-96x96.png"
+ sizes="96x96" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-32x32.png"
+ sizes="32x32" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-16x16.png"
+ sizes="16x16" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-128.png"
+ sizes="128x128" />
+ <meta name="application-name" content=" " />
+ <meta name="msapplication-TileColor" content="#FFFFFF" />
+ <meta name="msapplication-TileImage" content="https://cdn.mihomes.com/assets/favicons/images/mstile-144x144.png" />
+ <meta name="msapplication-square70x70logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-70x70.png" />
+ <meta name="msapplication-square150x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-150x150.png" />
+ <meta name="msapplication-wide310x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x150.png" />
+ <meta name="msapplication-square310x310logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x310.png" />
+
+ <script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Organization",
+ "foundingDate": "1976",
+ "duns": "071649743",
+ "founders": [
+ {
+ "@type": "Person",
+ "name": "Melvin Schottenstein"
+ },
+ {
+ "@type": "Person",
+ "name": "Irving Schottenstein"
+ }
+ ],
+ "employees": [
+ {
+ "@type": "Person",
+ "name": "Robert H. Schottenstein",
+ "jobTitle": "Chairman, President, and CEO"
+ }
+ ],
+ "sameAs": [
+ "https://www.facebook.com/MIHomesInc",
+ "https://twitter.com/mihomes",
+ "https://www.instagram.com/mihomes/",
+ "https://www.youtube.com/MIHomesInc",
+ "https://www.houzz.com/pro/mi-homes/m-i-homes",
+ "https://www.pinterest.com/mihomes/"
+ ],
+ "logo": {
+ "@type": "ImageObject",
+ "name": "M/I Homes logo",
+ "contentUrl": "https://dam.mihomes.com/media/39664/50399.png"
+ },
+ "name": "M/I Homes",
+ "description": "M/I Homes, Inc. founded in 1976, M/I Homes is one of nation's leading builders of single family homes. M/I has established an exemplary reputation based on a strong commitment to superior customer service, innovative design, quality construction and premium locations. Listed on the New York Stock Exchange, M/I Homes serves a broad segment of the housing market including first-time, move-up, luxury and empty nester buyers.",
+ "url": "https://www.mihomes.com",
+ "isicv4": "4100"
+}</script>
+ <script defer src="https://www.youtube.com/iframe_api"></script>
+ <script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
+ <script>
+ window.addEventListener('load', () => {
+ const swUrl = "https://cdn.mihomes.com/assets/workers/product-page-service-worker.js"
+ navigator.serviceWorker
+ .register(swUrl, {
+ scope: '/'
+ })
+ .then(registration => {
+ console.log('Service Worker registered with scope:', registration.scope);
+ })
+ .catch(error => {
+ console.error('Error during service worker registration:', error);
+ });
+ });
+ </script>
+</head>
+
+<body class="no-js body--home-template">
+
+
+
+<!-- Google Tag Manager --><!-- Global site tag (gtag.js) - Google Analytics -->
+
+ <noscript>
+ <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M2JH3QJ"
+ height="0" width="0" style="display: none; visibility: hidden">
+ </iframe>
+ </noscript>
+
+<!-- End Google Tag Manager GTMM2JH3QJ -->
+<a class="skip-link" href="#content">Skip To Content</a>
+
+<div class="page-container">
+ <div id="overview" data-subnav-page-link="Overview"></div>
+
+
+<header class="main-header">
+ <div class="main-header-inner">
+<a href="/" class="main-header-logo" > <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png">
+<svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg></a> <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png" />
+ <button class="main-header-open-nav" data-open-nav="" title="Toggle Hamburger Navigation">
+ <svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg>
+ <svg class="icon icon-menu" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#menu"></use>
+</svg>
+ </button>
+ <div class="main-header-nav-items" data-a11y-focus data-nav-tray>
+ <nav class="main-nav">
+ <ul>
+ <li>
+
+ <a href="/" class="main-nav-link mobile-only" >Home</a>
+ </li>
+ <li>
+
+ <a href="/new-homes/texas/greater-austin" class="main-nav-link find-a-home-link" >Find a Home</a>
+ </li>
+ <li>
+
+ <a href="/about-us/overview" class="main-nav-link " >About</a>
+ </li>
+ <li>
+
+ <a href="/why-mi/overview" class="main-nav-link " >Why M/I</a>
+ </li>
+ <li>
+
+ <a href="/incentives" class="main-nav-link " >Incentives</a>
+ </li>
+ <li>
+
+ <a href="/financing" class="main-nav-link " >Financing</a>
+ </li>
+ <li>
+
+ <a href="/support/warranty" class="main-nav-link " >Warranty</a>
+ </li>
+ <li>
+
+ <a href="/support" class="main-nav-link " >Contact</a>
+ </li>
+ <li>
+
+ <a href="/resources" class="main-nav-link " >Resources</a>
+ </li>
+ </ul>
+ </nav>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ <div class="aux-nav">
+ <ul>
+ <li data-a11y-focus>
+ <a href="/account/register" class="main-nav-link" >Sign Up</a>
+ </li>
+ <li data-a11y-focus>
+ <a href="/account/login" class="main-nav-link" >Log In</a>
+ </li>
+ </ul>
+ </div>
+ </div>
+ <button class="main-header-close-nav" data-close-nav>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ </div>
+</header>
+ <div class="breadcrumbs-bar">
+ <div class="breadcrumbs-wrapper">
+ <nav class="breadcrumbs">
+ <a class="button-plain" href="/">Home</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/communities">Texas</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/greater-austin/communities">Greater Austin</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/greater-austin/austin">Austin</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/greater-austin/austin/estancia-west">Estancia West</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/greater-austin/austin/estancia-west/estonian-plan">Estonian</a>
+ <span class="seperator"> • </span>
+ <span>13213 Keefer Drive</span>
+ </nav>
+ </div>
+ </div>
+ <script>var bar = document.querySelector('.breadcrumbs-bar'); bar.setAttribute('style', 'height:' + bar.getBoundingClientRect().height + 'px');</script>
+<script type="application/ld+json">
+{
+"@context": "https://schema.org",
+"@type": "BreadcrumbList",
+"itemListElement":[
+{
+"@type":"ListItem",
+"position":1,
+"name":"Texas",
+"item":"https://www.mihomes.com/new-homes/texas/communities"
+},
+{
+"@type":"ListItem",
+"position":2,
+"name":"Greater Austin",
+"item":"https://www.mihomes.com/new-homes/texas/greater-austin/communities"
+},
+{
+"@type":"ListItem",
+"position":3,
+"name":"Austin",
+"item":"https://www.mihomes.com/new-homes/texas/greater-austin/austin"
+},
+{
+"@type":"ListItem",
+"position":4,
+"name":"Estancia West",
+"item":"https://www.mihomes.com/new-homes/texas/greater-austin/austin/estancia-west"
+},
+{
+"@type":"ListItem",
+"position":5,
+"name":"Estonian",
+"item":"https://www.mihomes.com/new-homes/texas/greater-austin/austin/estancia-west/estonian-plan"
+},
+{
+"@type":"ListItem",
+"position":6,
+"name":"13213 Keefer Drive",
+
+}
+]
+}
+</script>
+
+
+ <div class="page-notice-wrapper" id="page-notification"></div>
+ <main class="main-content" id="content" tabindex="0">
+
+<ul class="product-flags">
+</ul>
+<div class="image-banner">
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <img data-dam-generated alt="Estonian Elevation C" height="1800" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/756721/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/756721/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/756721/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/756721/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/756721/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/756721/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/756721/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="AUST-Estonian-ElevationC-elev_DAY" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </a>
+ <div class="image-banner-more">
+ <a href="#product-gallery"
+ data-goto-slide="1"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="1"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Front Exterior" height="1365" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/2907221/50421.jpeg?timestamp=2025-03-25T00%3A05%3A29.6176162" srcset="https://dam.mihomes.com/media/2907221/50398.jpeg?timestamp=2025-03-25T00%3A05%3A20.1811569 300w, https://dam.mihomes.com/media/2907221/50397.jpeg?timestamp=2025-03-25T00%3A05%3A18.8004113 600w, https://dam.mihomes.com/media/2907221/50423.jpeg?timestamp=2025-03-25T00%3A05%3A33.6991962 900w, https://dam.mihomes.com/media/2907221/50396.jpeg?timestamp=2025-03-25T00%3A05%3A17.7524623 1200w, https://dam.mihomes.com/media/2907221/50421.jpeg?timestamp=2025-03-25T00%3A05%3A29.6176162 1800w, https://dam.mihomes.com/media/2907221/50422.jpeg?timestamp=2025-03-25T00%3A05%3A29.4215897 2400w" title="[L220-z002]Exterior" width="2047" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="2"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="2"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Kitchen" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/2906845/50421.jpeg?timestamp=2025-03-24T10%3A19%3A42.0566980" srcset="https://dam.mihomes.com/media/2906845/50398.jpeg?timestamp=2025-03-24T10%3A19%3A34.3879131 300w, https://dam.mihomes.com/media/2906845/50397.jpeg?timestamp=2025-03-24T10%3A19%3A32.2286225 600w, https://dam.mihomes.com/media/2906845/50423.jpeg?timestamp=2025-03-24T10%3A19%3A44.8068557 900w, https://dam.mihomes.com/media/2906845/50396.jpeg?timestamp=2025-03-24T10%3A19%3A30.3643543 1200w, https://dam.mihomes.com/media/2906845/50421.jpeg?timestamp=2025-03-24T10%3A19%3A42.0566980 1800w, https://dam.mihomes.com/media/2906845/50422.jpeg?timestamp=2025-03-24T10%3A19%3A43.1613828 2400w" title="[L220-z007]Kitchen" width="1800" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="3"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="3"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Kitchen" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/2906846/50421.jpeg?timestamp=2025-03-24T10%3A19%3A30.2655084" srcset="https://dam.mihomes.com/media/2906846/50398.jpeg?timestamp=2025-03-24T10%3A19%3A24.3469554 300w, https://dam.mihomes.com/media/2906846/50397.jpeg?timestamp=2025-03-24T10%3A19%3A23.4171618 600w, https://dam.mihomes.com/media/2906846/50423.jpeg?timestamp=2025-03-24T10%3A19%3A36.8790811 900w, https://dam.mihomes.com/media/2906846/50396.jpeg?timestamp=2025-03-24T10%3A19%3A23.4628338 1200w, https://dam.mihomes.com/media/2906846/50421.jpeg?timestamp=2025-03-24T10%3A19%3A30.2655084 1800w, https://dam.mihomes.com/media/2906846/50422.jpeg?timestamp=2025-03-24T10%3A19%3A34.6796287 2400w" title="[L220-z013]Kitchen" width="1800" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="4"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="4"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Family Room" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/2906842/50421.jpeg?timestamp=2025-03-24T10%3A19%3A45.6439481" srcset="https://dam.mihomes.com/media/2906842/50398.jpeg?timestamp=2025-03-24T10%3A19%3A38.1102213 300w, https://dam.mihomes.com/media/2906842/50397.jpeg?timestamp=2025-03-24T10%3A19%3A36.0737247 600w, https://dam.mihomes.com/media/2906842/50423.jpeg?timestamp=2025-03-24T10%3A19%3A49.2563454 900w, https://dam.mihomes.com/media/2906842/50396.jpeg?timestamp=2025-03-24T10%3A19%3A33.4820680 1200w, https://dam.mihomes.com/media/2906842/50421.jpeg?timestamp=2025-03-24T10%3A19%3A45.6439481 1800w, https://dam.mihomes.com/media/2906842/50422.jpeg?timestamp=2025-03-24T10%3A19%3A47.3449866 2400w" title="[L220-z012]FamilyRoom" width="1800" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="third event-click image-banner-total gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <span class="button button-transparent">
+ View 11 Photos
+ </span>
+ </a>
+ </div>
+</div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Estonian Elevation C" height="1800" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/756721/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/756721/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/756721/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/756721/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/756721/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/756721/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/756721/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="AUST-Estonian-ElevationC-elev_DAY" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Front Exterior" height="1365" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/2907221/50421.jpeg?timestamp=2025-03-25T00%3A05%3A29.6176162" srcset="https://dam.mihomes.com/media/2907221/50398.jpeg?timestamp=2025-03-25T00%3A05%3A20.1811569 300w, https://dam.mihomes.com/media/2907221/50397.jpeg?timestamp=2025-03-25T00%3A05%3A18.8004113 600w, https://dam.mihomes.com/media/2907221/50423.jpeg?timestamp=2025-03-25T00%3A05%3A33.6991962 900w, https://dam.mihomes.com/media/2907221/50396.jpeg?timestamp=2025-03-25T00%3A05%3A17.7524623 1200w, https://dam.mihomes.com/media/2907221/50421.jpeg?timestamp=2025-03-25T00%3A05%3A29.6176162 1800w, https://dam.mihomes.com/media/2907221/50422.jpeg?timestamp=2025-03-25T00%3A05%3A29.4215897 2400w" title="[L220-z002]Exterior" width="2047" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Kitchen" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/2906845/50421.jpeg?timestamp=2025-03-24T10%3A19%3A42.0566980" srcset="https://dam.mihomes.com/media/2906845/50398.jpeg?timestamp=2025-03-24T10%3A19%3A34.3879131 300w, https://dam.mihomes.com/media/2906845/50397.jpeg?timestamp=2025-03-24T10%3A19%3A32.2286225 600w, https://dam.mihomes.com/media/2906845/50423.jpeg?timestamp=2025-03-24T10%3A19%3A44.8068557 900w, https://dam.mihomes.com/media/2906845/50396.jpeg?timestamp=2025-03-24T10%3A19%3A30.3643543 1200w, https://dam.mihomes.com/media/2906845/50421.jpeg?timestamp=2025-03-24T10%3A19%3A42.0566980 1800w, https://dam.mihomes.com/media/2906845/50422.jpeg?timestamp=2025-03-24T10%3A19%3A43.1613828 2400w" title="[L220-z007]Kitchen" width="1800" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Kitchen" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/2906846/50421.jpeg?timestamp=2025-03-24T10%3A19%3A30.2655084" srcset="https://dam.mihomes.com/media/2906846/50398.jpeg?timestamp=2025-03-24T10%3A19%3A24.3469554 300w, https://dam.mihomes.com/media/2906846/50397.jpeg?timestamp=2025-03-24T10%3A19%3A23.4171618 600w, https://dam.mihomes.com/media/2906846/50423.jpeg?timestamp=2025-03-24T10%3A19%3A36.8790811 900w, https://dam.mihomes.com/media/2906846/50396.jpeg?timestamp=2025-03-24T10%3A19%3A23.4628338 1200w, https://dam.mihomes.com/media/2906846/50421.jpeg?timestamp=2025-03-24T10%3A19%3A30.2655084 1800w, https://dam.mihomes.com/media/2906846/50422.jpeg?timestamp=2025-03-24T10%3A19%3A34.6796287 2400w" title="[L220-z013]Kitchen" width="1800" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Family Room" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/2906842/50421.jpeg?timestamp=2025-03-24T10%3A19%3A45.6439481" srcset="https://dam.mihomes.com/media/2906842/50398.jpeg?timestamp=2025-03-24T10%3A19%3A38.1102213 300w, https://dam.mihomes.com/media/2906842/50397.jpeg?timestamp=2025-03-24T10%3A19%3A36.0737247 600w, https://dam.mihomes.com/media/2906842/50423.jpeg?timestamp=2025-03-24T10%3A19%3A49.2563454 900w, https://dam.mihomes.com/media/2906842/50396.jpeg?timestamp=2025-03-24T10%3A19%3A33.4820680 1200w, https://dam.mihomes.com/media/2906842/50421.jpeg?timestamp=2025-03-24T10%3A19%3A45.6439481 1800w, https://dam.mihomes.com/media/2906842/50422.jpeg?timestamp=2025-03-24T10%3A19%3A47.3449866 2400w" title="[L220-z012]FamilyRoom" width="1800" class="image-banner-item-more" />
+ </span>
+ </div>
+
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <div class="modal fullscreen-modal gallery-modal gallery-modal--simple" data-modal="" id="simple-gallery-modal" data-track-views="">
+ <div class="gallery-modal__list-container">
+ <div class="gallery-modal__controls">
+ <button class="close-icon" data-modal-close>
+ <svg class="icon icon-close-gallery" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close-gallery"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__list-container-arrows">
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="prev" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="10" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="next" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="0" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__controls gallery-modal__controls__zoom">
+ <button class="close-icon" data-gallery="simple-gallery-modal" data-zoom>
+ <svg class="icon icon-zoom" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#zoom"></use>
+</svg>
+ </button>
+ </div>
+ <ul class="gallery-modal__list no-transition" style="transform: translateX(-200%);">
+
+ <li class="gallery-slide-container" data-slide-id="0" data-image="https://dam.mihomes.com/media/756721/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/756721/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/756721/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/756721/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/756721/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/756721/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" data-caption="Estonian Elevation C" data-count="<strong>1</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Estonian Elevation C" height="1800" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/756721/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/756721/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/756721/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/756721/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/756721/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/756721/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/756721/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="AUST-Estonian-ElevationC-elev_DAY" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="1" data-image="https://dam.mihomes.com/media/2907221/50398.jpeg?timestamp=2025-03-25T00%3A05%3A20.1811569 300w, https://dam.mihomes.com/media/2907221/50397.jpeg?timestamp=2025-03-25T00%3A05%3A18.8004113 600w, https://dam.mihomes.com/media/2907221/50423.jpeg?timestamp=2025-03-25T00%3A05%3A33.6991962 900w, https://dam.mihomes.com/media/2907221/50396.jpeg?timestamp=2025-03-25T00%3A05%3A17.7524623 1200w, https://dam.mihomes.com/media/2907221/50421.jpeg?timestamp=2025-03-25T00%3A05%3A29.6176162 1800w, https://dam.mihomes.com/media/2907221/50422.jpeg?timestamp=2025-03-25T00%3A05%3A29.4215897 2400w" data-caption="Front Exterior - Representational Photo" data-count="<strong>2</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Front Exterior" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/2907221/50421.jpeg?timestamp=2025-03-25T00%3A05%3A29.6176162" srcset="https://dam.mihomes.com/media/2907221/50398.jpeg?timestamp=2025-03-25T00%3A05%3A20.1811569 300w, https://dam.mihomes.com/media/2907221/50397.jpeg?timestamp=2025-03-25T00%3A05%3A18.8004113 600w, https://dam.mihomes.com/media/2907221/50423.jpeg?timestamp=2025-03-25T00%3A05%3A33.6991962 900w, https://dam.mihomes.com/media/2907221/50396.jpeg?timestamp=2025-03-25T00%3A05%3A17.7524623 1200w, https://dam.mihomes.com/media/2907221/50421.jpeg?timestamp=2025-03-25T00%3A05%3A29.6176162 1800w, https://dam.mihomes.com/media/2907221/50422.jpeg?timestamp=2025-03-25T00%3A05%3A29.4215897 2400w" title="[L220-z002]Exterior" width="2047" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="2" data-image="https://dam.mihomes.com/media/2906845/50398.jpeg?timestamp=2025-03-24T10%3A19%3A34.3879131 300w, https://dam.mihomes.com/media/2906845/50397.jpeg?timestamp=2025-03-24T10%3A19%3A32.2286225 600w, https://dam.mihomes.com/media/2906845/50423.jpeg?timestamp=2025-03-24T10%3A19%3A44.8068557 900w, https://dam.mihomes.com/media/2906845/50396.jpeg?timestamp=2025-03-24T10%3A19%3A30.3643543 1200w, https://dam.mihomes.com/media/2906845/50421.jpeg?timestamp=2025-03-24T10%3A19%3A42.0566980 1800w, https://dam.mihomes.com/media/2906845/50422.jpeg?timestamp=2025-03-24T10%3A19%3A43.1613828 2400w" data-caption="Kitchen - Representational Photo" data-count="<strong>3</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/2906845/50421.jpeg?timestamp=2025-03-24T10%3A19%3A42.0566980" srcset="https://dam.mihomes.com/media/2906845/50398.jpeg?timestamp=2025-03-24T10%3A19%3A34.3879131 300w, https://dam.mihomes.com/media/2906845/50397.jpeg?timestamp=2025-03-24T10%3A19%3A32.2286225 600w, https://dam.mihomes.com/media/2906845/50423.jpeg?timestamp=2025-03-24T10%3A19%3A44.8068557 900w, https://dam.mihomes.com/media/2906845/50396.jpeg?timestamp=2025-03-24T10%3A19%3A30.3643543 1200w, https://dam.mihomes.com/media/2906845/50421.jpeg?timestamp=2025-03-24T10%3A19%3A42.0566980 1800w, https://dam.mihomes.com/media/2906845/50422.jpeg?timestamp=2025-03-24T10%3A19%3A43.1613828 2400w" title="[L220-z007]Kitchen" width="1800" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="3" data-image="https://dam.mihomes.com/media/2906846/50398.jpeg?timestamp=2025-03-24T10%3A19%3A24.3469554 300w, https://dam.mihomes.com/media/2906846/50397.jpeg?timestamp=2025-03-24T10%3A19%3A23.4171618 600w, https://dam.mihomes.com/media/2906846/50423.jpeg?timestamp=2025-03-24T10%3A19%3A36.8790811 900w, https://dam.mihomes.com/media/2906846/50396.jpeg?timestamp=2025-03-24T10%3A19%3A23.4628338 1200w, https://dam.mihomes.com/media/2906846/50421.jpeg?timestamp=2025-03-24T10%3A19%3A30.2655084 1800w, https://dam.mihomes.com/media/2906846/50422.jpeg?timestamp=2025-03-24T10%3A19%3A34.6796287 2400w" data-caption="Kitchen - Representational Photo" data-count="<strong>4</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/2906846/50421.jpeg?timestamp=2025-03-24T10%3A19%3A30.2655084" srcset="https://dam.mihomes.com/media/2906846/50398.jpeg?timestamp=2025-03-24T10%3A19%3A24.3469554 300w, https://dam.mihomes.com/media/2906846/50397.jpeg?timestamp=2025-03-24T10%3A19%3A23.4171618 600w, https://dam.mihomes.com/media/2906846/50423.jpeg?timestamp=2025-03-24T10%3A19%3A36.8790811 900w, https://dam.mihomes.com/media/2906846/50396.jpeg?timestamp=2025-03-24T10%3A19%3A23.4628338 1200w, https://dam.mihomes.com/media/2906846/50421.jpeg?timestamp=2025-03-24T10%3A19%3A30.2655084 1800w, https://dam.mihomes.com/media/2906846/50422.jpeg?timestamp=2025-03-24T10%3A19%3A34.6796287 2400w" title="[L220-z013]Kitchen" width="1800" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="4" data-image="https://dam.mihomes.com/media/2906842/50398.jpeg?timestamp=2025-03-24T10%3A19%3A38.1102213 300w, https://dam.mihomes.com/media/2906842/50397.jpeg?timestamp=2025-03-24T10%3A19%3A36.0737247 600w, https://dam.mihomes.com/media/2906842/50423.jpeg?timestamp=2025-03-24T10%3A19%3A49.2563454 900w, https://dam.mihomes.com/media/2906842/50396.jpeg?timestamp=2025-03-24T10%3A19%3A33.4820680 1200w, https://dam.mihomes.com/media/2906842/50421.jpeg?timestamp=2025-03-24T10%3A19%3A45.6439481 1800w, https://dam.mihomes.com/media/2906842/50422.jpeg?timestamp=2025-03-24T10%3A19%3A47.3449866 2400w" data-caption="Family Room - Representational Photo" data-count="<strong>5</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Family Room" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/2906842/50421.jpeg?timestamp=2025-03-24T10%3A19%3A45.6439481" srcset="https://dam.mihomes.com/media/2906842/50398.jpeg?timestamp=2025-03-24T10%3A19%3A38.1102213 300w, https://dam.mihomes.com/media/2906842/50397.jpeg?timestamp=2025-03-24T10%3A19%3A36.0737247 600w, https://dam.mihomes.com/media/2906842/50423.jpeg?timestamp=2025-03-24T10%3A19%3A49.2563454 900w, https://dam.mihomes.com/media/2906842/50396.jpeg?timestamp=2025-03-24T10%3A19%3A33.4820680 1200w, https://dam.mihomes.com/media/2906842/50421.jpeg?timestamp=2025-03-24T10%3A19%3A45.6439481 1800w, https://dam.mihomes.com/media/2906842/50422.jpeg?timestamp=2025-03-24T10%3A19%3A47.3449866 2400w" title="[L220-z012]FamilyRoom" width="1800" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="5" data-image="https://dam.mihomes.com/media/2906875/50398.jpeg 300w, https://dam.mihomes.com/media/2906875/50397.jpeg 600w, https://dam.mihomes.com/media/2906875/50423.jpeg 900w, https://dam.mihomes.com/media/2906875/50396.jpeg 1200w, https://dam.mihomes.com/media/2906875/50421.jpeg 1800w, https://dam.mihomes.com/media/2906875/50422.jpeg 2400w" data-caption="Game Room - Representational Photo" data-count="<strong>6</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Game Room" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/2906875/50421.jpeg?timestamp=2025-03-24T10%3A23%3A13.5910076" srcset="https://dam.mihomes.com/media/2906875/50398.jpeg 300w, https://dam.mihomes.com/media/2906875/50397.jpeg 600w, https://dam.mihomes.com/media/2906875/50423.jpeg 900w, https://dam.mihomes.com/media/2906875/50396.jpeg 1200w, https://dam.mihomes.com/media/2906875/50421.jpeg 1800w, https://dam.mihomes.com/media/2906875/50422.jpeg 2400w" title="[L220-z022]Interior" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="6" data-image="https://dam.mihomes.com/media/2906852/50398.jpeg 300w, https://dam.mihomes.com/media/2906852/50397.jpeg 600w, https://dam.mihomes.com/media/2906852/50423.jpeg 900w, https://dam.mihomes.com/media/2906852/50396.jpeg 1200w, https://dam.mihomes.com/media/2906852/50421.jpeg 1800w, https://dam.mihomes.com/media/2906852/50422.jpeg 2400w" data-caption="Owner's Bedroom - Representational Photo" data-count="<strong>7</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owner's Bedroom" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/2906852/50421.jpeg?timestamp=2025-03-24T10%3A20%3A19.8632407" srcset="https://dam.mihomes.com/media/2906852/50398.jpeg 300w, https://dam.mihomes.com/media/2906852/50397.jpeg 600w, https://dam.mihomes.com/media/2906852/50423.jpeg 900w, https://dam.mihomes.com/media/2906852/50396.jpeg 1200w, https://dam.mihomes.com/media/2906852/50421.jpeg 1800w, https://dam.mihomes.com/media/2906852/50422.jpeg 2400w" title="[L220-z017]Interior" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="7" data-image="https://dam.mihomes.com/media/2906866/50398.jpeg 300w, https://dam.mihomes.com/media/2906866/50397.jpeg 600w, https://dam.mihomes.com/media/2906866/50423.jpeg 900w, https://dam.mihomes.com/media/2906866/50396.jpeg 1200w, https://dam.mihomes.com/media/2906866/50421.jpeg 1800w, https://dam.mihomes.com/media/2906866/50422.jpeg 2400w" data-caption="Owner's Bathroom - Representational Photo" data-count="<strong>8</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owner's Bathroom" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/2906866/50421.jpeg?timestamp=2025-03-24T10%3A23%3A08.3482310" srcset="https://dam.mihomes.com/media/2906866/50398.jpeg 300w, https://dam.mihomes.com/media/2906866/50397.jpeg 600w, https://dam.mihomes.com/media/2906866/50423.jpeg 900w, https://dam.mihomes.com/media/2906866/50396.jpeg 1200w, https://dam.mihomes.com/media/2906866/50421.jpeg 1800w, https://dam.mihomes.com/media/2906866/50422.jpeg 2400w" title="[L220-z019]Bathroom" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="8" data-image="https://dam.mihomes.com/media/2906873/50398.jpeg 300w, https://dam.mihomes.com/media/2906873/50397.jpeg 600w, https://dam.mihomes.com/media/2906873/50423.jpeg 900w, https://dam.mihomes.com/media/2906873/50396.jpeg 1200w, https://dam.mihomes.com/media/2906873/50421.jpeg 1800w, https://dam.mihomes.com/media/2906873/50422.jpeg 2400w" data-caption="Owner's Bathroom - Representational Photo" data-count="<strong>9</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owner's Bathroom" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/2906873/50421.jpeg?timestamp=2025-03-24T10%3A23%3A28.4995219" srcset="https://dam.mihomes.com/media/2906873/50398.jpeg 300w, https://dam.mihomes.com/media/2906873/50397.jpeg 600w, https://dam.mihomes.com/media/2906873/50423.jpeg 900w, https://dam.mihomes.com/media/2906873/50396.jpeg 1200w, https://dam.mihomes.com/media/2906873/50421.jpeg 1800w, https://dam.mihomes.com/media/2906873/50422.jpeg 2400w" title="[L220-z018]Interior" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="9" data-image="https://dam.mihomes.com/media/2906864/50398.jpeg 300w, https://dam.mihomes.com/media/2906864/50397.jpeg 600w, https://dam.mihomes.com/media/2906864/50423.jpeg 900w, https://dam.mihomes.com/media/2906864/50396.jpeg 1200w, https://dam.mihomes.com/media/2906864/50421.jpeg 1800w, https://dam.mihomes.com/media/2906864/50422.jpeg 2400w" data-caption="Bedroom - Representational Photo" data-count="<strong>10</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/2906864/50421.jpeg?timestamp=2025-03-24T10%3A22%3A50.3669209" srcset="https://dam.mihomes.com/media/2906864/50398.jpeg 300w, https://dam.mihomes.com/media/2906864/50397.jpeg 600w, https://dam.mihomes.com/media/2906864/50423.jpeg 900w, https://dam.mihomes.com/media/2906864/50396.jpeg 1200w, https://dam.mihomes.com/media/2906864/50421.jpeg 1800w, https://dam.mihomes.com/media/2906864/50422.jpeg 2400w" title="[L220-z024]Bedroom" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="10" data-image="https://dam.mihomes.com/media/2906858/50398.jpeg 300w, https://dam.mihomes.com/media/2906858/50397.jpeg 600w, https://dam.mihomes.com/media/2906858/50423.jpeg 900w, https://dam.mihomes.com/media/2906858/50396.jpeg 1200w, https://dam.mihomes.com/media/2906858/50421.jpeg 1800w, https://dam.mihomes.com/media/2906858/50422.jpeg 2400w" data-caption="Backyard - Representational Photo" data-count="<strong>11</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Backyard" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/2906858/50421.jpeg?timestamp=2025-03-24T10%3A22%3A31.7502071" srcset="https://dam.mihomes.com/media/2906858/50398.jpeg 300w, https://dam.mihomes.com/media/2906858/50397.jpeg 600w, https://dam.mihomes.com/media/2906858/50423.jpeg 900w, https://dam.mihomes.com/media/2906858/50396.jpeg 1200w, https://dam.mihomes.com/media/2906858/50421.jpeg 1800w, https://dam.mihomes.com/media/2906858/50422.jpeg 2400w" title="[L220-z029]Backyard" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ </ul>
+ <div class="gallery-slide__footer">
+ <span class="gallery-slide__title title-caption"></span>
+ <div class="gallery-slide__share-buttons">
+ <span class="count"></span>
+ </div>
+ </div>
+ </div>
+ </div>
+</div><script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Product",
+ "additionalType": "https://schema.org/SingleFamilyResidence",
+ "name": "13213 Keefer Drive",
+ "sku": "fSB6oBZ0iEm5Ah7p4JF8Gw",
+ "description": "Welcome to 13213 Keefer Drive, Manchaca, TX — a new construction home built by M/I Homes. This 2-story home offers 2,434 square feet of thoughtfully designed living space with 3 bedrooms, 2 full bathrooms, and 1 half bathroom.",
+ "image": [
+ "https://dam.mihomes.com/media/756721/50421.jpeg",
+ "https://dam.mihomes.com/media/2907221/50421.jpeg",
+ "https://dam.mihomes.com/media/2906845/50421.jpeg",
+ "https://dam.mihomes.com/media/2906846/50421.jpeg",
+ "https://dam.mihomes.com/media/2906842/50421.jpeg",
+ "https://dam.mihomes.com/media/2906875/50421.jpeg",
+ "https://dam.mihomes.com/media/2906852/50421.jpeg",
+ "https://dam.mihomes.com/media/2906866/50421.jpeg",
+ "https://dam.mihomes.com/media/2906873/50421.jpeg",
+ "https://dam.mihomes.com/media/2906864/50421.jpeg",
+ "https://dam.mihomes.com/media/2906858/50421.jpeg"
+ ],
+ "url": "https://www.mihomes.com/new-homes/texas/greater-austin/austin/estancia-west/estonian-plan/13213-keefer-drive",
+ "brand": {
+ "@type": "Organization",
+ "parentOrganization": {
+ "@type": "Organization",
+ "name": "M/I Homes"
+ },
+ "name": "Estancia West"
+ },
+ "address": {
+ "@type": "PostalAddress",
+ "streetAddress": "13213 Keefer Drive",
+ "addressLocality": "Manchaca",
+ "addressRegion": "TX",
+ "postalCode": "78652",
+ "addressCountry": "US"
+ },
+ "geo": {
+ "@type": "GeoCoordinates",
+ "latitude": 30.1154365640099,
+ "longitude": -97.8120977687287
+ },
+ "telephone": "+15122650288",
+ "offers": {
+ "@type": "Offer",
+ "url": "/new-homes/texas/greater-austin/austin/estancia-west/estonian-plan/13213-keefer-drive",
+ "price": "452990.00",
+ "priceCurrency": "USD",
+ "priceValidUntil": "08-12-2026",
+ "itemCondition": "https://schema.org/NewCondition",
+ "availability": "https://schema.org/InStock"
+ },
+ "model": "https://www.mihomes.com/new-homes/texas/greater-austin/austin/estancia-west/estonian-plan",
+ "numberOfBedrooms": {
+ "@type": "Integer",
+ "value": 3
+ },
+ "numberOfFullBathrooms": {
+ "@type": "Integer",
+ "value": 2
+ },
+ "numberOfPartialBathrooms": {
+ "@type": "Integer",
+ "value": 1
+ },
+ "petsAllowed": true,
+ "yearBuilt": "2026",
+ "floorSize": {
+ "@type": "QuantitativeValue",
+ "value": 2434,
+ "unitCode": "FTK"
+ }
+}</script>
+<div class="modals" data-modal-container aria-hidden="true">
+ <div class="modal box" data-modal id="signup-modal">
+ <button class="modal-close" data-modal-close>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+
+ <h2 class="h1 alt">Sign up for an M/I Homes account</h2>
+ <p>Save your favorite home plans and communities, compare home plans and share your dream home with sales associates and real estate agents.</p>
+ <p>
+ Already a member?
+ <a class="button-plain" href="/account/login">Log In to your account »</a>
+ </p>
+ <a class="button button-wide" href="/account/register">
+ <span class="button-text">
+ Sign up with email
+ </span>
+ </a>
+ </div>
+</div>
+
+<div class="product-header" data-yes="true">
+
+ <div class="product-header-row product-header__top">
+
+ <div class="product-header-centered ">
+ <div>
+ <a href="/new-homes/texas/greater-austin/austin/estancia-west" class="button-plain">
+ Estancia West
+ </a>
+
+ <h1 class="header-seo-h2">
+ 13213 Keefer Drive, Manchaca, TX 78652
+ <button class="aux-nav-link button-favorite-product gami-favorite-save" data-favorite-type="Home" data-favorite-id="a07a207d-7416-4988-b902-1ee9e0917c1b" data-favorite-fav-id="a07a207d-7416-4988-b902-1ee9e0917c1b" data-add-favorite>
+ <svg class="icon icon-favorite" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#favorite"></use>
+</svg>
+ <span class="aux-nav-link-action-text">
+ Favorite
+ </span>
+ </button>
+ </h1>
+ </div>
+
+ <div class="product-header__actions">
+ <a class="button button-mobile-link button-virtual-tour event-click" href="https://www.zillow.com/view-imx/9bca64fd-df36-4e49-ac5c-00e5e1705964?setAttribution=mls&wl=true&initialViewType=pano&utm_source=dashboard" target="_blank" data-event-category=VirtualTour
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <span class="button-text">Virtual Tour</span>
+ </a>
+ </div>
+ </div>
+ </div>
+
+ <div class="product-header-row">
+ <div class="product-header-centered tooptip-container">
+ <div>
+ <dl>
+ <dt>Ready date:</dt>
+ <dd>
+ <strong class="current-size">
+ December 31, 2026
+ </strong>
+ </dd>
+ </dl>
+ </div>
+ <div class="product-header-price">
+
+ Price:
+ <span content="452990">$452,990</span>
+
+ (
+ <span data-open-modal="mortgage-payment-calculator-modal" data-tooltip="Click estimate to see how we calculate this monthly payment" data-annualinsurance="0" data-taxrate="0" data-interestrate="4.875" data-downpayment="3.5" data-price="452990" data-mortgage-monthly-payment tabindex="0" class="product-header-price-monthly"></span>
+ )
+
+
+ <span class="product-header-calculator">
+ <a class="button-plain button-plain-icon small button-icon-right gami-mortcalc-view" data-open-modal="mortgage-payment-calculator-modal">
+ <svg class="icon icon-calculator" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#calculator"></use>
+</svg>
+ Estimate Your Monthly Payment
+ </a>
+ </span>
+ </div>
+ </div>
+ </div>
+</div> <a rel="noopener" href="/new-homes/texas/greater-austin/austin/estancia-west/plat map?lot=262138002119" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=13101 Mazzone Drive, Manchaca, TX 78652&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=hOcVy5y7MIzoLjrEsficrL0rPGc=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+<div class="product-header-centered product-header-centered--contact-card-only">
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Estancia West</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://www.google.com/maps/dir/?api=1&destination=30.1154365640099,-97.8120977687287">
+ 13101 Mazzone Drive<br>Manchaca, TX 78652
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+</div><div class="product-header">
+ <div class="product-header product-header-navigation">
+ <nav class="product-header-subnav" data-subnav="">
+ <div class="product-header-subnav-wrapper">
+ <div class="product-header-subnav-mobile-bottom">
+ <a class="button button-contact-us" href="/support/sales">
+ <span class="button-text">
+ Contact Us
+ </span>
+ </a>
+ </div>
+
+
+ <a class="product-header-subnav-toggle subnav-link" data-subnav-toggle="">
+ <span class="text" data-subnav-text="">Overview</span>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </a>
+
+ <ul class="product-header-subnav-links" data-subnav-links=""></ul>
+ </div>
+ </nav>
+
+ <div class="product-header-subnav-spacer"></div>
+
+ <a href="#overview" class="product-header__back-to-top is-hidden" data-back-to-top>
+ <div class="arrow arrow--up"></div>
+ </a>
+ </div>
+</div><section class="content-inner-with-sidebar content-inner-with-sidebar-right">
+
+
+ <div class="content-inner-content">
+
+
+
+
+
+<section class="plan-specification">
+ <h2 class="plan-specification__header">
+ About 13213 Keefer Drive
+ </h2>
+ <a class="plan-specification__get-directions button-plain button-plain-alt negative-top gami-directions-exit" target="_blank" href="https://www.google.com/maps/search/?api=1&query=30.1154365640099,-97.8120977687287">Get Directions</a>
+ <ul class="plan-specification__list">
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sq-ft" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sq-ft"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">square feet</span>
+ <strong class="plan-specification-item__value">
+ 2,434
+ </strong>
+ </div>
+ </li>
+ <li class="stories-specification">
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-homes" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#homes"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">stories</span>
+ <strong class="plan-specification-item__value">
+ 2
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-bed" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#bed"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">bedrooms</span>
+ <strong class="plan-specification-item__value">
+ 3
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-shower" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#shower"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">full bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 2
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sink" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sink"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">half bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 1
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-car" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#car"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">garages</span>
+ <strong class="plan-specification-item__value">
+ 2
+ <span data-tooltip="The most common approach to a home's garage, the front load garage incorporates the garage entry into a home's front elevation.">(Front Load)</span>
+
+ </strong>
+ </div>
+ </li>
+ </ul>
+</section>
+
+<div class="overview-table">
+ <div class="overview-table-table">
+ <dl>
+ <dt>City</dt>
+ <dd>Manchaca, TX</dd>
+
+ <dt>Owner's Suite</dt>
+ <dd>First Floor</dd>
+
+ <dt>County</dt>
+ <dd>Travis</dd>
+
+ <dt>Home Type</dt>
+ <dd>Single Family Home</dd>
+
+ <dt>School District</dt>
+ <dd>Austin ISD</dd>
+
+ <dt>Foundation Type</dt>
+ <dd>Slab</dd>
+
+ <dt>Home Plan</dt>
+ <dd>Estonian</dd>
+
+
+ <dt>Homesite</dt>
+ <dd>2119</dd>
+
+ <dt> Base Plan Width & Depth</dt>
+ <dd>34.11 x 63.9 </dd>
+ </dl>
+ </div>
+</div>
+<article class="faq__question-item faq__question-item--mobile-only">
+ <button class="faq__question" data-expander="" aria-controls="community-series-teaser" aria-expanded="false">
+ <span class="faq__icon-wrapper">
+ <span class="faq__icon gami-directions-view">
+ <svg class="icon icon-arrow" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#arrow"></use>
+</svg>
+ </span>
+ </span>
+ Part of the Capital Series
+ <span class="show-hide-text hidden-text">Hide</span>
+ </button>
+ <div class="faq__answer preview-box preview-box--series-tout" id="community-series-teaser" role="region" tabindex="-1">
+ <a class="preview-box__image preview-box__preview one-fourth" href="/new-homes/texas/greater-austin/austin/estancia-west/series/capital-series">
+ <img data-dam-generated alt="Preview image" height="1200" loading="lazy" sizes="(min-width: 48rem) 193px, 100vw" src="https://dam.mihomes.com/media/4078351/50421.jpeg?timestamp=2025-11-25T01%3A52%3A33.3655719" srcset="https://dam.mihomes.com/media/4078351/50398.jpeg?timestamp=2025-11-25T01%3A52%3A32.2659426 300w, https://dam.mihomes.com/media/4078351/50397.jpeg?timestamp=2025-11-25T01%3A52%3A32.3430169 600w, https://dam.mihomes.com/media/4078351/50423.jpeg?timestamp=2025-11-25T01%3A52%3A34.3703952 900w, https://dam.mihomes.com/media/4078351/50396.jpeg?timestamp=2025-11-25T01%3A52%3A31.7575215 1200w, https://dam.mihomes.com/media/4078351/50421.jpeg?timestamp=2025-11-25T01%3A52%3A33.3655719 1800w, https://dam.mihomes.com/media/4078351/50422.jpeg?timestamp=2025-11-25T01%3A52%3A33.9151157 2400w" title="[L2148-z007]FrontExterior" width="1800" class="cover-image" />
+ </a>
+ <div class="preview-box__content ">
+ <div class="preview-box__text__series-teaser">
+ <h3>Part of the Capital Series</h3>
+ <p>
+ Experience the Capital Series at Estancia West, where flexible layouts and personalized design come together to create a home that fits your family’s lifestyle with comfort and style.
+ </p>
+ </div>
+ <p>
+ <a class="button" href="/new-homes/texas/greater-austin/austin/estancia-west/series/capital-series">Learn More</a>
+ </p>
+ </div>
+ </div>
+</article> <h2>
+ New 3-Bedroom Home for Sale in Manchaca, Texas
+ </h2>
+ <div class="content-inner-content__capped-mobile-content">
+ <p>Welcome to 13213 Keefer Drive, Manchaca, TX — a new construction home built by M/I Homes. This 2-story home offers 2,434 square feet of thoughtfully designed living space with 3 bedrooms, 2 full bathrooms, and 1 half bathroom.</p>
+<p>Step inside to discover an open-concept living space that creates a seamless flow between gathering areas, ideal for everyday living and entertaining. The quality of design is evident throughout, with well-crafted finishes and a functional layout that maximizes every square foot of the home.</p>
+<p>The owner's bedroom features a private en-suite bathroom, providing a comfortable retreat. The additional 2 bedrooms offer generous space for family, guests, or a home office. A convenient half bathroom serves shared living areas on the main level.</p>
+<p>Outside, a covered patio extends your living space and provides a perfect spot for relaxing or hosting gatherings in any weather.</p>
+<h3>Key Features:</h3>
+<ul>
+ <li>New construction by M/I Homes</li>
+ <li>2,434 square feet of living space</li>
+ <li>3 bedrooms and 2 full bathrooms</li>
+ <li>1 half bathroom</li>
+ <li>2-story floorplan</li>
+ <li>Open-concept living space</li>
+ <li>Covered patio</li>
+ <li>Quality design and finishes throughout</li>
+</ul>
+<p>This home is situated in a welcoming neighborhood with convenient proximity to parks, offering outdoor recreation and green space for the entire family. The thoughtful design and quality construction make this home an outstanding option for buyers seeking a move-in ready new construction home.</p>
+
+ <!-- and done -->
+ <h3>
+ About the Community
+ </h3>
+ <p>
+ Estancia West in South Austin offers a welcoming community of new single family homes in a convenient location near I‑35, providing quick access to Downtown Austin and the lively South Congress area. Homes are designed for modern living with thoughtful layouts that balance style and functionality.
+
+Residents can enjoy nearby outdoor destinations such as Zilker Park, Town Lake, and Barton Springs, along with easy trips to Southpark Meadows and Downtown Buda for shopping and dining. Within the community, planned amenities include a park, playground, pool, and walking trails.
+
+Served by Austin ISD, the area supports families seeking strong educational options. With its blend of city access, outdoor recreation, and a comfortable neighborhood setting, Estancia West offers a balanced South Austin lifestyle.
+ <br />
+ <a class="button-plain button-plain-alt" href="/new-homes/texas/greater-austin/austin/estancia-west">Learn more about this community »</a>
+ </p>
+ </div>
+ <button class="faq__question color-aqua" aria-expanded="false" data-read-more="">
+ <span class="faq__icon-wrapper">
+ <span class="faq__icon">
+ <svg class="icon icon-arrow" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#arrow"></use>
+</svg>
+ </span>
+ </span>
+ <span data-read-more-collapsed="">Read More</span>
+ <span data-read-more-expanded="">Show Less</span>
+ <span class="show-hide-text hidden-text">Show</span>
+ </button>
+ <div class="matterport-wrapper">
+ <iframe loading="lazy" class="box-full" width="803" height="480" src="https://my.matterport.com/show/?m=hzvDM2954tT" frameborder="0" allowfullscreen allow="vr" style="align-self: center" data-subnav-page-link="3D Tour" id="3dTour"></iframe>
+ </div>
+
+
+
+ </div>
+
+ <div class="content-sidebar-right">
+ <a rel="noopener" href="/new-homes/texas/greater-austin/austin/estancia-west/plat map?lot=262138002119" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=13101 Mazzone Drive, Manchaca, TX 78652&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=hOcVy5y7MIzoLjrEsficrL0rPGc=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Estancia West</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://www.google.com/maps/dir/?api=1&destination=30.1154365640099,-97.8120977687287">
+ 13101 Mazzone Drive<br>Manchaca, TX 78652
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+
+
+ <figure class="lead-form lead-form-sidebar lead-form-sidebar--compact lead-form-sidebar-signup">
+ <div class="lead-form-container">
+ <div id="lead-sidebar-header" class="lead-form-sidebar-header lead-form-sidebar-header-image">
+ <div id="isa-information" data-sidebar-section="1">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="vescobedo@mihomes.com-0627202506.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3307272/50421.jpeg?timestamp=2025-06-27T10%3A55%3A23.8134313" srcset="https://dam.mihomes.com/media/3307272/50398.jpeg?timestamp=2025-06-27T10%3A55%3A22.0491671 300w, https://dam.mihomes.com/media/3307272/50397.jpeg?timestamp=2025-06-27T10%3A55%3A21.9994951 600w, https://dam.mihomes.com/media/3307272/50423.jpeg?timestamp=2025-06-27T10%3A55%3A24.3943122 900w, https://dam.mihomes.com/media/3307272/50396.jpeg?timestamp=2025-06-27T10%3A55%3A21.9990722 1200w, https://dam.mihomes.com/media/3307272/50421.jpeg?timestamp=2025-06-27T10%3A55%3A23.8134313 1800w, https://dam.mihomes.com/media/3307272/50422.jpeg?timestamp=2025-06-27T10%3A55%3A23.9812354 2400w" title="vescobedo@mihomes.com-0627202506" width="96" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="amoore@mihomes.com-0627202506.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3307273/50421.jpeg?timestamp=2025-06-27T10%3A55%3A27.1280435" srcset="https://dam.mihomes.com/media/3307273/50398.jpeg?timestamp=2025-06-27T10%3A55%3A28.1689021 300w, https://dam.mihomes.com/media/3307273/50397.jpeg?timestamp=2025-06-27T10%3A55%3A28.6732007 600w, https://dam.mihomes.com/media/3307273/50423.jpeg?timestamp=2025-06-27T10%3A55%3A29.7473420 900w, https://dam.mihomes.com/media/3307273/50396.jpeg?timestamp=2025-06-27T10%3A55%3A26.5784159 1200w, https://dam.mihomes.com/media/3307273/50421.jpeg?timestamp=2025-06-27T10%3A55%3A27.1280435 1800w, https://dam.mihomes.com/media/3307273/50422.jpeg?timestamp=2025-06-27T10%3A55%3A27.6258427 2400w" title="amoore@mihomes.com-0627202506" width="96" class="cover-image" />
+ </div>
+ </div>
+ <h3 class="">Have questions for us?</h3>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=5122650288'>(512) 265-0288</a>
+ </p>
+ </div>
+ <div id="form-agent-header" class="lead-form-sidebar-section right" style="display: none;">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+
+ </div>
+ <div class="lead-form-sidebar-form" data-lead-form-sidebar="">
+ <div class="lead-form-sidebar-errors"></div>
+<form action="/api/LeadGenFormSidebar/LeadGenFormSidebar" data-gami-event="gami-form-question" data-parsley-validate="" data-sidebar-hidden-required="" data-sidebar-nav-check="visit_sidebar" method="post" name="basic_sidebar" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="b0cb8f77-209a-4968-843e-5587dc52480a" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Inventory" /><input id="PostType" name="PostType" type="hidden" value="sidebar" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:09 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="ItemId" name="ItemId" type="hidden" value="a07a207d-7416-4988-b902-1ee9e0917c1b" /><input id="HomeType" name="HomeType" type="hidden" value="Single Family Home" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 443px;">
+ <div class="align-left center lead-form-sidebar-section" data-cta="Request Information" data-sidebar-section="0">
+ <div>
+
+ <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="">
+ </div>
+
+ <div class="form-field no-label-errors" style="margin-top: 1px">
+ <label for="fullname_sidebar"></label>
+ <input type="text"
+ name="FormFullName"
+ id="fullname_sidebar"
+ placeholder="Full Name"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required." data-parsley-trigger="blur"
+ maxlength="60"
+ data-parsley-filter-emoji=""
+ >
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormEmailAddress"
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="phone_sidebar">Phone Number</label>
+ <input class="gami-tel" type="tel"
+ autocomplete="tel-national"
+ name="FormPhoneNumber"
+ id="phone_sidebar"
+ placeholder="Phone Number" +
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ value=""
+
+ data-parsley-phone-number="" data-parsley-trigger="blur"
+ maxlength="25">
+ </div>
+
+ <div class="form-field no-label-errors">
+ <label for="comments_sidebar">Questions or Comments</label>
+ <textarea rows="5"
+ name="FormComments"
+ id="comments_sidebar"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000">Please send me information about 13213 Keefer Drive</textarea>
+ </div>
+ </div>
+ <div>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox hide" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input data-parsley-multiple="visit_sidebar" name="visit_sidebar" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to plan a visit</span>
+ </label>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormEmailOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSAssociateCommunicationsOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" data-sidebar-section="1" tabindex="-1">
+ <div>
+ <h4>Plan a visit</h4>
+ <p>Select your preferred day and time and we’ll help set up the perfect visit.</p>
+ </div>
+ <div>
+ <div class="select no-label-errors">
+ <label for="tripday_sidebar"> </label>
+ <div class="select-wrap">
+<select data-nested-select="#select-triptime-block-sidebar" data-parsley-group="visit_sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+
+ <div class="select no-label-errors">
+ <label for="triptime_sidebar"> </label>
+ <div class="select-wrap">
+<select data-parsley-group="visit_sidebar" id="triptime_sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" dta-cta="Continue" data-sidebar-section="2" data-agent-section tabindex="-1">
+
+ <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0">
+ <div class="align-left center lead-form-sidebar-section" data-sidebar-section="0">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button form-submit">
+ <span class="button-text">Request Information</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-left lead-form-sidebar-section right" data-sidebar-section="1">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit" disabled tabindex="-1">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="2">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button" disabled tabindex="-1">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit" disabled tabindex="-1">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+ </div>
+ </div>
+</form> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 25px;">
+ <div class="align-center center lead-form-sidebar-section" data-sidebar-section="0">
+ <button class="button-plain small" data-open-modal="privacy-policy-modal" href="javascript:void()">Privacy Policy</button>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="1">
+ <button class="button-plain small" data-sidebar-nav="0" tabindex="-1">« Go Back</button>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <!-- THANK YOU MESSAGE -->
+ <div class="lead-form-container-success">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-success lead-form-sidebar-header-image">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" data-parsley-validate="" method="POST" name="thanksyou_sidebar" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+ <div>
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+ <div class="form-field form-field-password">
+ <label for="password"> </label>
+ <input data-parsley-required-message="Password is required." data-parsley-valid-password="" id="password" minlength="8" name="password" placeholder="Password" required="" type="password" data-parsley-filter-emoji="" data-parsley-trigger="blur">
+ <button class="password-input-change" data-input-change="" type="button">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)" tabindex="0">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">
+ Create Account
+ </span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+
+</div>
+</section>
+
+ <div id="design" class="box box-full box-no-padding-bottom" data-subnav-page-link="Design Options">
+ <div class="content-inner-centered">
+ <h2>Add the perfect finishing touch</h2>
+ <p class="subtitle content-inner-centered-narrow negative-top">
+ Put your personal touch on these Quick Move-In Homes with some selections from our Design Studio.
+ </p>
+ <div class="button-tooltip-wrapper">
+ <a class="button button-tooltip event-click" href="https://edc.envisionoptions.com/browser.aspx?NHTNumber=MIHOMES&Loc1=100&Lev1=CORP&Loc2=262&Lev2=DIV&HomeNumber=13AE46&Page=Confirmselection&utm_source=mihomes.com&utm_campaign=&utm_content=estancia-west-Estonian-13213-Keefer-Drive&utm_term=" target="_blank" data-event-category=OptionsGallery
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ See This Home's Options
+ </a>
+
+
+ </div>
+ <a class="button" href="/design/design-studio">
+ <span class="button-text">
+ Visit a Design Studio
+ </span>
+ </a>
+ </div>
+ </div>
+ <div class="box box-full box-no-padding-top">
+ <div class="contained-width">
+ <hr class="hr-even">
+
+ <h4>Incentives</h4>
+ <article class="preview-box ">
+ <a class="preview-box-link" href="/new-homes/texas/greater-austin/incentives/2026-save-by-the-bell">
+ <div class="preview-box__image preview-box__preview one-third">
+ <img data-dam-generated alt="Save by the Bell | Reusable Banner Block" height="400" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/205398/50421.jpeg" srcset="https://dam.mihomes.com/media/205398/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/205398/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/205398/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w" title="Save-By-the-Bell-600x400" width="600" class="cover-image" maxwidth="900" />
+ </div>
+ <div class="preview-box__content">
+ <h3 class="h3 preview-box__header">
+ Save Before The Bell Rings
+ <span class="preview-box__separator">|</span>
+ <time datetime="">Aug 6-31, 2026</time>
+
+
+ </h3>
+ <p class="preview-box__text">Save by the Bell and move into a new home before the school year begins. Enjoy open spaces for backpacks to land, homework to get done, and backyards made for after school adventures. Make the move before the bell rings and start the school year in a place your family will love.</p>
+ <p>
+ <span class="button-plain button-plain-alt" href="/new-homes/texas/greater-austin/incentives/2026-save-by-the-bell">View Details »</span>
+ </p>
+ </div>
+ </a>
+ </article>
+ </div>
+ </div>
+
+ <div id="floor" class="box box-full box-last event-inview" data-subnav-page-link="FloorPlan" data-event-category=Floorplan
+ data-event-action=scroll
+ data-event-label=view
+>
+ <div class="content-inner-centered content-inner-centered--mobile">
+<img data-dam-generated alt="Estonian First Floor" height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/114784/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667" srcset="https://dam.mihomes.com/media/114784/50398.jpeg?timestamp=2024-05-21T13%3A18%3A49.2093229 300w, https://dam.mihomes.com/media/114784/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/114784/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/114784/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/114784/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/114784/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="Estonian-FirstFloor" width="1800" class="cover-image cover-image--abs" /> <h2>Floorplan Options for Your New Home</h2>
+ <p class="content-inner-centered-narrow negative-top subtitle">The Estonian accommodates a variety of household living arrangements with its highly desired flexibility and modern design. Explore the many possibilities in the popular Estonian plan.</p>
+ <a target="_blank" class="button floor-plan-options__button event-click" href="https://rifp.ml3ds-icon.com/#/floorplan/316492" data-event-category=Floorplan
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <svg class="icon icon-fullscreen" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#fullscreen"></use>
+</svg>
+ <span class="button-text">
+ Show Floorplan
+ </span>
+ </a>
+ </div>
+ <section class="floor-plan-options">
+ <iframe loading="lazy" id="floor-plan" data-fullsize class="floor-plan-options__iframe" data-src="https://rifp.ml3ds-icon.com/#/floorplan/316492" scrolling="no" style="overflow: hidden">
+ <p>Your browser does not support iframes.</p>
+ </iframe>
+ </section>
+ </div>
+
+ <div class="box box-full box-no-padding-top-bottom " id="">
+ <div class="content-inner-centered">
+ <div class="leadgenTitleBlock">
+ <h2 class="h2">Ready to plan a visit? We can help</h2>
+ <p class="subtitle marginless">Send us your preferred time to stop by and a sales representative will take care of the rest</p>
+ </div>
+ <section class="lead-form">
+ <div id="lead-form-block-user-info" class="lead-form-container lead-form-block" data-lead-form-sidebar="">
+ <aside class="lead-form-block__details" style="">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="vescobedo@mihomes.com-0627202506.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3307272/50421.jpeg?timestamp=2025-06-27T10%3A55%3A23.8134313" srcset="https://dam.mihomes.com/media/3307272/50398.jpeg?timestamp=2025-06-27T10%3A55%3A22.0491671 300w, https://dam.mihomes.com/media/3307272/50397.jpeg?timestamp=2025-06-27T10%3A55%3A21.9994951 600w, https://dam.mihomes.com/media/3307272/50423.jpeg?timestamp=2025-06-27T10%3A55%3A24.3943122 900w, https://dam.mihomes.com/media/3307272/50396.jpeg?timestamp=2025-06-27T10%3A55%3A21.9990722 1200w, https://dam.mihomes.com/media/3307272/50421.jpeg?timestamp=2025-06-27T10%3A55%3A23.8134313 1800w, https://dam.mihomes.com/media/3307272/50422.jpeg?timestamp=2025-06-27T10%3A55%3A23.9812354 2400w" title="vescobedo@mihomes.com-0627202506" width="96" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="amoore@mihomes.com-0627202506.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3307273/50421.jpeg?timestamp=2025-06-27T10%3A55%3A27.1280435" srcset="https://dam.mihomes.com/media/3307273/50398.jpeg?timestamp=2025-06-27T10%3A55%3A28.1689021 300w, https://dam.mihomes.com/media/3307273/50397.jpeg?timestamp=2025-06-27T10%3A55%3A28.6732007 600w, https://dam.mihomes.com/media/3307273/50423.jpeg?timestamp=2025-06-27T10%3A55%3A29.7473420 900w, https://dam.mihomes.com/media/3307273/50396.jpeg?timestamp=2025-06-27T10%3A55%3A26.5784159 1200w, https://dam.mihomes.com/media/3307273/50421.jpeg?timestamp=2025-06-27T10%3A55%3A27.1280435 1800w, https://dam.mihomes.com/media/3307273/50422.jpeg?timestamp=2025-06-27T10%3A55%3A27.6258427 2400w" title="amoore@mihomes.com-0627202506" width="96" class="cover-image" />
+ </div>
+ </div>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=5122650288'>(512) 265-0288</a>
+ </p>
+ </aside>
+<form action="/api/LeadGenFormBlock/LeadGenFormBlock" class="lead-form-block__form" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="b0cb8f77-209a-4968-843e-5587dc52480a" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Model" /><input id="PostType" name="PostType" type="hidden" value="block" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:09 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="FormAgentEmailAddress" name="FormAgentEmailAddress" type="hidden" value="" /><input id="ItemId" name="ItemId" type="hidden" value="a07a207d-7416-4988-b902-1ee9e0917c1b" /><input id="HomeType" name="HomeType" type="hidden" value="Single Family Home" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="" hidden>
+ </div>
+ <div class="form-field">
+ <label for="fullname">Full Name </label>
+ <input type="text"
+ name="FormFullName"
+ placeholder="John Doe"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required."
+ maxlength="60"
+
+ data-parsley-filter-emoji=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="emailaddress">Email Address </label>
+ <input type="email"
+ name="FormEmailAddress" ,
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field">
+ <label for="phone">Phone Number </label>
+ <input class="gami-tel" type="tel"
+ name="FormPhoneNumber"
+ id="phone"
+ placeholder="5555555555"
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ maxlength="25"
+ value=""
+
+ data-parsley-phone-number=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="input">Questions or Comments </label>
+ <textarea rows="5"
+ name="FormComments"
+ id="input"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000"></textarea>
+ </div>
+ <div class="lead-form-block__contacts">
+ <div class="form-field select" {="">
+ <label for="tripday_block">Preferred Day <em> (Optional)</em></label>
+ <div class="select-wrap">
+ <div class="select-wrap">
+<select date-nested-select="#select-triptime-block-sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+
+ <div class="form-field select" {="">
+ <label for="triptime_block">Preferred Time <em> (Optional)</em></label>
+ <div class="select-wrap">
+
+<select id="select-triptime-block-sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-block__checkboxes-container">
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormEmailOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSAssociateCommunicationsOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ <div class="lead-form-block__submit">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+
+ <span class="align-center">
+ <a class="button-plain small" data-open-modal="privacy-policy-modal">Privacy Policy</a>
+ </span>
+ </div>
+</form> </div>
+ <div id="lead-form-block-agent-form" class="lead-form-container lead-form-block" data-lead-form-sidebar="" data-agent-section style="display: none;">
+ <figure class="lead-form lead-form-sidebar">
+ <div id="form-agent-header" class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+<form action="/new-homes/texas/greater-austin/austin/estancia-west/estonian-plan/13213-keefer-drive" class="lead-form-sidebar-section" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""> <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ id="block-agent-email"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+</form> </div>
+ </figure>
+ </div>
+
+
+
+ <div class="lead-form-container-success">
+ <figure class="lead-form lead-form-sidebar">
+ <div class="lead-form-container-success" style="display: block">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" method="POST" name="thanksyou_sidebar" data-parsley-validate="" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+
+ <div>
+ <div class="form-field form-field-password">
+ <label for="password"></label>
+ <input type="password"
+ name="password"
+ id="password"
+ placeholder="Password"
+ data-parsley-valid-password=""
+ minlength="8"
+ required=""
+ data-parsley-required-message="Password is required."
+ data-parsley-trigger="blur">
+
+ <button type="button" class="password-input-change" data-input-change="">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span tabindex="0"
+ data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">Create Account</span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ </div>
+ </section>
+ </div>
+ </div>
+
+ <div class="box box-centered box-full box-transparent" id="neraby">
+ <div class="box-full-inner">
+ <h3 class="h2">
+ Other Quick Move-In Homes
+ </h3>
+
+ <div class="featured-grid">
+ <div class="row">
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/texas/greater-austin/austin/estancia-west/highland-plan/13210-stabler-drive">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Exterior" height="1536" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/5056984/50421.jpeg?timestamp=2026-07-24T04%3A36%3A51.0086002" srcset="https://dam.mihomes.com/media/5056984/50398.jpeg?timestamp=2026-07-24T04%3A36%3A48.4752356 300w, https://dam.mihomes.com/media/5056984/50397.jpeg?timestamp=2026-07-24T04%3A36%3A47.7181908 600w, https://dam.mihomes.com/media/5056984/50423.jpeg?timestamp=2026-07-24T04%3A36%3A52.2206792 900w, https://dam.mihomes.com/media/5056984/50396.jpeg?timestamp=2026-07-24T04%3A36%3A46.7745504 1200w, https://dam.mihomes.com/media/5056984/50421.jpeg?timestamp=2026-07-24T04%3A36%3A51.0086002 1800w, https://dam.mihomes.com/media/5056984/50422.jpeg?timestamp=2026-07-24T04%3A36%3A51.0899786 2400w" title="[L2129-z002]Exterior" width="2048" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Highland</p>
+ <p class="featured-grid-middle">13210 Stabler Drive, Manchaca, Texas</p>
+ <p class="featured-grid-subtitle">Listed at $381,990</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/texas/greater-austin/austin/estancia-west/estonian-plan/13210-keefer-drive">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Estonian Elevation B" height="1800" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/756719/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/756719/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/756719/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/756719/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/756719/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/756719/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/756719/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="AUST-Estonian-ElevationB-elev_DAY" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Estonian</p>
+ <p class="featured-grid-middle">13210 Keefer Drive, Manchaca, Texas</p>
+ <p class="featured-grid-subtitle">Listed at $444,990</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/texas/greater-austin/austin/estancia-west/estonian-plan/802-boley-drive">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Estonian Elevation C" height="1800" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/756721/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/756721/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/756721/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/756721/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/756721/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/756721/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/756721/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="AUST-Estonian-ElevationC-elev_DAY" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Estonian</p>
+ <p class="featured-grid-middle">802 Boley Drive, Manchaca, Texas</p>
+ <p class="featured-grid-subtitle">Listed at $458,990</p>
+ </a>
+</div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ </main>
+
+
+<footer class="main-footer">
+ <div class="main-footer-inner">
+ <ul class="horizontal-list">
+ <li><a href="https://apply.workable.com/mi-homes/" target="_blank" rel="noopener noreferrer" >Careers</a></li>
+ <li><a href="/support/warranty" >Warranty</a></li>
+ <li><a href="https://investors.mihomes.com/" rel="noopener noreferrer" title="Investor Relations" target="_blank" >Investors</a></li>
+ <li><a href="/events" >Events</a></li>
+ <li><a href="/incentives" >Incentives</a></li>
+ <li><a href="/agent/agent-info" >Agents & Brokers</a></li>
+ <li><a href="/resources" >Home Buying Resources</a></li>
+ <li><a href="/why-mi/journey" >Journey</a></li>
+ <li><a href="/blog/" >Blog</a></li>
+ </ul>
+ <ul class="horizontal-list">
+ <li><a href="/policies/privacy-policy" >Privacy Policy</a></li>
+ <li><a href="/policies/terms-of-use" >Terms of Use</a></li>
+ <li><a href="/subscriptions" >Manage Subscriptions</a></li>
+ <li><a href="/support/ccpa" >CCPA</a></li>
+ </ul>
+ <ul class="icon-list">
+ <li>
+<a href="https://www.instagram.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Instagram" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704717/50399.png" srcset="https://dam.mihomes.com/media/4704717/50399.png?timestamp=2026-05-04T18%3A56%3A58.4036491 300w, https://dam.mihomes.com/media/4704717/50420.png 600w" title="instagram" width="24" /></a> </li>
+ <li>
+<a href="https://www.facebook.com/MIHomesInc/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Facebook" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57191/50399.png" srcset="https://dam.mihomes.com/media/57191/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57191/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="facebook" width="24" /></a> </li>
+ <li>
+<a href="https://www.youtube.com/MIHomesInc" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Youtube" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704715/50399.png" srcset="https://dam.mihomes.com/media/4704715/50399.png?timestamp=2026-05-04T18%3A34%3A30.5730196 300w, https://dam.mihomes.com/media/4704715/50420.png 600w" title="youtube" width="24" /></a> </li>
+ <li>
+<a href="https://www.pinterest.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Pinterest" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57192/50399.png" srcset="https://dam.mihomes.com/media/57192/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57192/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="pintrest" width="24" /></a> </li>
+ <li>
+<a href="http://www.houzz.com/pro/mi-homes/m-i-homes" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Houzz" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57193/50399.png" srcset="https://dam.mihomes.com/media/57193/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57193/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="houzz" width="24" /></a> </li>
+ <li>
+<a href="http://portal.hud.gov" class="" rel="me" target="_blank" ><img data-dam-generated alt="Equal Housing" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704718/50399.png" srcset="https://dam.mihomes.com/media/4704718/50399.png?timestamp=2026-05-04T19%3A02%3A51.2896193 300w, https://dam.mihomes.com/media/4704718/50420.png 600w" title="equal-housing" width="28" /></a> </li>
+ </ul>
+ <p class="main-footer-copyright">
+ Copyright 2026, M/I Homes, Inc. All rights reserved.
+ </p>
+ <p id="division-disclaimer" class="main-footer-copyright">
+
+
+ </p>
+ </div>
+</footer>
+</div>
+<div aria-label="Cookie Consent" role="dialog" id="ccpa-modal" class="ccpa-modal">
+ <p>By browsing, you accept our <a href="/policies/terms-of-use">terms of use</a> and <a href="/policies/privacy-policy">privacy policy</a>.</p>
+ <button class="button" type="button">OK</button>
+</div>
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/modals.css?ver=202608092245" rel="stylesheet" fetchpriority="low">
+ <div class="modal modal-wide box" data-modal="" id="privacy-policy-modal">
+ <button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div id="privacy-policy-text"></div>
+</div><div class="modal box box-wide box-paddingless" data-modal="" id="mortgage-payment-calculator-modal">
+<button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+</button>
+ <div id="mortgage-payment-calculator" data-price="452990" data-values="40b793b1-5fdf-4530-8e0e-43f1ba072a12"></div>
+</div>
+ <div class="modal" data-modal id="search-modal">
+ <form action="/search" class="search-form ">
+ <input class="search-form-input" id="search-form-input" name="search" placeholder="Search M/I Homes"
+ type="search" />
+ <button class="button search-form-clear-button" type="button">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+
+ </button>
+ <button class="button search-form-submit" type="submit">
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ <div class="search-form-results">
+ <div class="search-form-results-list"></div>
+ </div>
+ </form>
+ </div>
+</div>
+
+<!-- toolkit scripts -->
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit_common.js?ver=202608092245"></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit.js?ver=202608092245"></script>
+ <script src="https://cdn.mihomes.com/assets/toolkit/js/product.js?ver=202608092245"></script>
+ <script defer src="https://cdn.mihomes.com/assets/toolkit/js/mortgage-calculator.js?ver=202608092245"></script>
+<script>window.jQuery = window.$ = window.JQUERY;</script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/common.js?ver=202608092245" defer></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/favorites.js?ver=202608092245" defer></script>
+
+
+<script>
+ var w = Math.max(
+ document.body.scrollWidth,
+ document.documentElement.scrollWidth,
+ document.body.offsetWidth,
+ document.documentElement.offsetWidth,
+ document.documentElement.clientWidth
+ );
+ window.setCookie('screen-width', encodeURIComponent(w), { expires: 14, path: "/" })
+ </script>
+
+<script>
+
+
+</script>
+<script type="text/javascript">
+ const millisecondsPerDay = 86400000;
+ const millisecondsPerHour = millisecondsPerDay / 24;
+ const millisecondsPerMinute = millisecondsPerHour / 60;
+ const millisecondsPerSecond = 1000;
+ function addLeadingZero(val) {
+ if(val.toString().length < 2) {
+ return '0'+val;
+ }
+ return val;
+ }
+ function change() {
+ const list = Array.from(document.querySelectorAll('[data-countdown]'));
+ const now = new Date().getTime();
+ list.forEach((el) => {
+ const d = new Date(el.getAttribute('data-countdown')).getTime();
+ let diff = d - now;
+ let days = 0;
+ let hours = 0;
+ let minutes = 0;
+ let seconds = 0;
+ if(diff > 0) {
+ days = Math.floor(diff / millisecondsPerDay);
+ diff = diff - (days * millisecondsPerDay)
+ hours = Math.floor(diff/millisecondsPerHour);
+ diff = diff - (hours * millisecondsPerHour)
+ minutes = Math.floor(diff/millisecondsPerMinute);
+ diff = diff - (minutes * millisecondsPerMinute);
+ seconds = Math.floor(diff/millisecondsPerSecond);
+ }
+ try {
+ el.querySelector('.days').innerText = addLeadingZero(Math.max(days, 0));
+
+ } catch (e) {}
+ try {
+ el.querySelector('.hours').innerText = addLeadingZero(Math.max(hours, 0));
+ } catch(e) {}
+ try {
+ el.querySelector('.minutes').innerText = addLeadingZero(Math.max(minutes, 0));
+ } catch (e) {}
+ try {
+ el.querySelector('.seconds').innerText = addLeadingZero(Math.max(seconds, 0));
+ } catch (e) {}
+
+ });
+ setTimeout(()=>requestAnimationFrame(change), millisecondsPerSecond);
+ }
+ requestAnimationFrame(change);
+</script>
+<script>(function(){function c(){var b=a.contentDocument||(a.contentWindow&&a.contentWindow.document);if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'a294955cfb1f9810',t:'MTc4NjQyMzQ0OQ=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
+
+</html>
\ No newline at end of file
diff --git a/collectors/mi-homes/fixtures/homes/h3.html b/collectors/mi-homes/fixtures/homes/h3.html
new file mode 100644
index 00000000..268bc62d
--- /dev/null
+++ b/collectors/mi-homes/fixtures/homes/h3.html
@@ -0,0 +1,2049 @@
+
+
+<!doctype html>
+<html lang="en">
+
+<head>
+
+ <script>
+ var G = G || {};
+ G.pingForEmployee = true;
+ </script>
+
+
+<meta name="VIcurrentDateTime" content="639220202526118949" />
+<meta name="VirtualFolder" content="/" />
+<script type="text/javascript" src="/layouts/system/VisitorIdentification.js"></script>
+
+
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" name="viewport">
+ <title>1006 Dawsons Drive Hebron, OH 43025 - M/I Homes</title>
+ <!-- font -->
+ <link rel="preconnect" href="https://cdn.mihomes.com" crossorigin>
+ <link rel="preconnect" href="https://use.typekit.net" crossorigin>
+
+
+
+<!-- Google Tag Script -->
+
+ <script id="js-GTM-script">
+ window.dataLayer = window.dataLayer || [];
+ window.dataLayer.push({
+ "PageType": "Spec",
+ "MIAccount": "No",
+ "Division": "Columbus"
+});
+
+(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=
+'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
+})(window,document,'script','dataLayer','GTM-M2JH3QJ');
+ </script>
+
+
+<!-- End Google Tag Script -->
+ <meta name="referrer" content="always" />
+
+ <link href="https://use.typekit.net/sgt3sit.css" rel="stylesheet" type="text/css" media="print" onload="this.media='all'" id="fonts-loaded" />
+
+<script>
+ try {
+ document.fonts.ready.then(() => {
+ document.body.classList.add('body--fonts-loaded');
+ if(window.setCookiie) {
+ window.setCookie('fonts-cached', 'true', { expires: 7, path: '/' });
+ }
+ });
+ } catch (e) { }
+</script>
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/toolkit.css?ver=202608092245" type="text/css" rel="stylesheet">
+ <!-- conditionally load css for blog -->
+
+ <script>
+ window.environment = "Prod";
+ window.googleApiKey = "REDACTED-THIRD-PARTY-PUBLIC-KEY";
+ </script>
+ <script>
+
+ window.maps =[];
+ window.AssetRootUrl = 'https://cdn.mihomes.com';
+
+ </script>
+
+ <meta name="twitter:card" content="summary" />
+<meta name="twitter:site" content="@mihomes" />
+<meta name="twitter:creator" content="@mihomes">
+
+<meta property="og:site_name" content="https://www.mihomes.com" />
+<meta property="og:type" content="article" />
+<meta property="og:url" content="https://www.mihomes.com/new-homes/ohio/central-ohio/hebron/hebron-landing/attucks-plan/1006-dawsons-drive" />
+
+
+ <meta property="og:title" content="1006 Dawsons Drive" />
+ <meta name="twitter:title" content="1006 Dawsons Drive" />
+
+
+
+ <meta property="og:description" content="Welcome to 1006 Dawsons Drive, Hebron, Ohio — a stunning new construction home built by M/I Homes. This 2-story home offers 2,577 square feet of thoughtfully designed living space, featuring 3 bedrooms, 2 full bathrooms, and 1 half bathroom. Step inside to discover an open-concept living space that creates a seamless flow between gathering areas, perfect for everyday living and entertaining. The quality of design is evident throughout, with carefully selected finishes and attention to detail in every room. The owner's bedroom includes a private en-suite bathroom, providing a comfortable retreat at the end of each day. Home Highlights: 2,577 square feet of living space 3 bedrooms and 2 full bathrooms 1 half bathroom for added convenience 2-story layout with open-concept design Owner's bedroom with private en-suite bathroom 2-car garageThis home is situated in a welcoming neighborhood that offers a friendly atmosphere and well-maintained surroundings. Residents enjoy convenient proximity to parks and green spaces, providing ample opportunities for outdoor recreation, walking trails, and family-friendly activities just minutes from the front door. With its quality construction, generous square footage, and well-planned layout, this home at 1006 Dawsons Drive delivers comfort and style for today's homeowner." />
+ <meta name="twitter:description" content="Welcome to 1006 Dawsons Drive, Hebron, Ohio — a stunning new construction home built by M/I Homes. This 2-story home offers 2,577 square feet of thoughtfully designed living space, featuring 3 bedrooms, 2 full bathrooms, and 1 half bathroom. Step inside to discover an open-concept living space that creates a seamless flow between gathering areas, perfect for everyday living and entertaining. The quality of design is evident throughout, with carefully selected finishes and attention to detail in every room. The owner's bedroom includes a private en-suite bathroom, providing a comfortable retreat at the end of each day. Home Highlights: 2,577 square feet of living space 3 bedrooms and 2 full bathrooms 1 half bathroom for added convenience 2-story layout with open-concept design Owner's bedroom with private en-suite bathroom 2-car garageThis home is situated in a welcoming neighborhood that offers a friendly atmosphere and well-maintained surroundings. Residents enjoy convenient proximity to parks and green spaces, providing ample opportunities for outdoor recreation, walking trails, and family-friendly activities just minutes from the front door. With its quality construction, generous square footage, and well-planned layout, this home at 1006 Dawsons Drive delivers comfort and style for today's homeowner." />
+ <meta name="description" content="Welcome to 1006 Dawsons Drive, Hebron, Ohio — a stunning new construction home built by M/I Homes. This 2-story home offers 2,577 square feet of thoughtfully designed living space, featuring 3 bedrooms, 2 full bathrooms, and 1 half bathroom. Step inside to discover an open-concept living space that creates a seamless flow between gathering areas, perfect for everyday living and entertaining. The quality of design is evident throughout, with carefully selected finishes and attention to detail in every room. The owner's bedroom includes a private en-suite bathroom, providing a comfortable retreat at the end of each day. Home Highlights: 2,577 square feet of living space 3 bedrooms and 2 full bathrooms 1 half bathroom for added convenience 2-story layout with open-concept design Owner's bedroom with private en-suite bathroom 2-car garageThis home is situated in a welcoming neighborhood that offers a friendly atmosphere and well-maintained surroundings. Residents enjoy convenient proximity to parks and green spaces, providing ample opportunities for outdoor recreation, walking trails, and family-friendly activities just minutes from the front door. With its quality construction, generous square footage, and well-planned layout, this home at 1006 Dawsons Drive delivers comfort and style for today's homeowner." />
+
+
+
+ <link rel="canonical" href="https://www.mihomes.com/new-homes/ohio/central-ohio/hebron/hebron-landing/attucks-plan/1006-dawsons-drive">
+ <link defer href="https://dam.mihomes.com/media/4179716/50399.png" rel="icon" type="image/vnd.microsoft.icon" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="57x57"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-57x57.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="114x114"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-114x114.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="72x72"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-72x72.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="144x144"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-144x144.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="60x60"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-60x60.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="120x120"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-120x120.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="76x76"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-76x76.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="152x152"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-152x152.png" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-196x196.png"
+ sizes="196x196" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-96x96.png"
+ sizes="96x96" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-32x32.png"
+ sizes="32x32" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-16x16.png"
+ sizes="16x16" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-128.png"
+ sizes="128x128" />
+ <meta name="application-name" content=" " />
+ <meta name="msapplication-TileColor" content="#FFFFFF" />
+ <meta name="msapplication-TileImage" content="https://cdn.mihomes.com/assets/favicons/images/mstile-144x144.png" />
+ <meta name="msapplication-square70x70logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-70x70.png" />
+ <meta name="msapplication-square150x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-150x150.png" />
+ <meta name="msapplication-wide310x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x150.png" />
+ <meta name="msapplication-square310x310logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x310.png" />
+
+ <script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Organization",
+ "foundingDate": "1976",
+ "duns": "071649743",
+ "founders": [
+ {
+ "@type": "Person",
+ "name": "Melvin Schottenstein"
+ },
+ {
+ "@type": "Person",
+ "name": "Irving Schottenstein"
+ }
+ ],
+ "employees": [
+ {
+ "@type": "Person",
+ "name": "Robert H. Schottenstein",
+ "jobTitle": "Chairman, President, and CEO"
+ }
+ ],
+ "sameAs": [
+ "https://www.facebook.com/MIHomesInc",
+ "https://twitter.com/mihomes",
+ "https://www.instagram.com/mihomes/",
+ "https://www.youtube.com/MIHomesInc",
+ "https://www.houzz.com/pro/mi-homes/m-i-homes",
+ "https://www.pinterest.com/mihomes/"
+ ],
+ "logo": {
+ "@type": "ImageObject",
+ "name": "M/I Homes logo",
+ "contentUrl": "https://dam.mihomes.com/media/39664/50399.png"
+ },
+ "name": "M/I Homes",
+ "description": "M/I Homes, Inc. founded in 1976, M/I Homes is one of nation's leading builders of single family homes. M/I has established an exemplary reputation based on a strong commitment to superior customer service, innovative design, quality construction and premium locations. Listed on the New York Stock Exchange, M/I Homes serves a broad segment of the housing market including first-time, move-up, luxury and empty nester buyers.",
+ "url": "https://www.mihomes.com",
+ "isicv4": "4100"
+}</script>
+ <script defer src="https://www.youtube.com/iframe_api"></script>
+ <script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
+ <script>
+ window.addEventListener('load', () => {
+ const swUrl = "https://cdn.mihomes.com/assets/workers/product-page-service-worker.js"
+ navigator.serviceWorker
+ .register(swUrl, {
+ scope: '/'
+ })
+ .then(registration => {
+ console.log('Service Worker registered with scope:', registration.scope);
+ })
+ .catch(error => {
+ console.error('Error during service worker registration:', error);
+ });
+ });
+ </script>
+</head>
+
+<body class="no-js body--home-template">
+
+
+
+<!-- Google Tag Manager --><!-- Global site tag (gtag.js) - Google Analytics -->
+
+ <noscript>
+ <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M2JH3QJ"
+ height="0" width="0" style="display: none; visibility: hidden">
+ </iframe>
+ </noscript>
+
+<!-- End Google Tag Manager GTMM2JH3QJ -->
+<a class="skip-link" href="#content">Skip To Content</a>
+
+<div class="page-container">
+ <div id="overview" data-subnav-page-link="Overview"></div>
+
+
+<header class="main-header">
+ <div class="main-header-inner">
+<a href="/" class="main-header-logo" > <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png">
+<svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg></a> <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png" />
+ <button class="main-header-open-nav" data-open-nav="" title="Toggle Hamburger Navigation">
+ <svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg>
+ <svg class="icon icon-menu" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#menu"></use>
+</svg>
+ </button>
+ <div class="main-header-nav-items" data-a11y-focus data-nav-tray>
+ <nav class="main-nav">
+ <ul>
+ <li>
+
+ <a href="/" class="main-nav-link mobile-only" >Home</a>
+ </li>
+ <li>
+
+ <a href="/new-homes/ohio/central-ohio" class="main-nav-link find-a-home-link" >Find a Home</a>
+ </li>
+ <li>
+
+ <a href="/about-us/overview" class="main-nav-link " >About</a>
+ </li>
+ <li>
+
+ <a href="/why-mi/overview" class="main-nav-link " >Why M/I</a>
+ </li>
+ <li>
+
+ <a href="/incentives" class="main-nav-link " >Incentives</a>
+ </li>
+ <li>
+
+ <a href="/financing" class="main-nav-link " >Financing</a>
+ </li>
+ <li>
+
+ <a href="/support/warranty" class="main-nav-link " >Warranty</a>
+ </li>
+ <li>
+
+ <a href="/support" class="main-nav-link " >Contact</a>
+ </li>
+ <li>
+
+ <a href="/resources" class="main-nav-link " >Resources</a>
+ </li>
+ </ul>
+ </nav>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ <div class="aux-nav">
+ <ul>
+ <li data-a11y-focus>
+ <a href="/account/register" class="main-nav-link" >Sign Up</a>
+ </li>
+ <li data-a11y-focus>
+ <a href="/account/login" class="main-nav-link" >Log In</a>
+ </li>
+ </ul>
+ </div>
+ </div>
+ <button class="main-header-close-nav" data-close-nav>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ </div>
+</header>
+ <div class="breadcrumbs-bar">
+ <div class="breadcrumbs-wrapper">
+ <nav class="breadcrumbs">
+ <a class="button-plain" href="/">Home</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/ohio/communities">Ohio</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/ohio/central-ohio/communities">Central Ohio</a>
+ <span class="seperator"> • </span>
+ <span>Hebron</span>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/ohio/central-ohio/hebron/hebron-landing">Hebron Landing</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/ohio/central-ohio/hebron/hebron-landing/attucks-plan">Attucks</a>
+ <span class="seperator"> • </span>
+ <span>1006 Dawsons Drive</span>
+ </nav>
+ </div>
+ </div>
+ <script>var bar = document.querySelector('.breadcrumbs-bar'); bar.setAttribute('style', 'height:' + bar.getBoundingClientRect().height + 'px');</script>
+<script type="application/ld+json">
+{
+"@context": "https://schema.org",
+"@type": "BreadcrumbList",
+"itemListElement":[
+{
+"@type":"ListItem",
+"position":1,
+"name":"Ohio",
+"item":"https://www.mihomes.com/new-homes/ohio/communities"
+},
+{
+"@type":"ListItem",
+"position":2,
+"name":"Central Ohio",
+"item":"https://www.mihomes.com/new-homes/ohio/central-ohio/communities"
+},
+{
+"@type":"ListItem",
+"position":3,
+"name":"Hebron",
+
+},
+{
+"@type":"ListItem",
+"position":4,
+"name":"Hebron Landing",
+"item":"https://www.mihomes.com/new-homes/ohio/central-ohio/hebron/hebron-landing"
+},
+{
+"@type":"ListItem",
+"position":5,
+"name":"Attucks",
+"item":"https://www.mihomes.com/new-homes/ohio/central-ohio/hebron/hebron-landing/attucks-plan"
+},
+{
+"@type":"ListItem",
+"position":6,
+"name":"1006 Dawsons Drive",
+
+}
+]
+}
+</script>
+
+
+ <div class="page-notice-wrapper" id="page-notification"></div>
+ <main class="main-content" id="content" tabindex="0">
+
+<ul class="product-flags">
+</ul>
+<div class="image-banner">
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <img data-dam-generated alt="Attucks Elevation C" height="1600" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/4744763/50422.jpeg?timestamp=2026-05-13T22%3A01%3A28.6738651" srcset="https://dam.mihomes.com/media/4744763/50398.jpeg?timestamp=2026-05-13T22%3A01%3A26.8525465 300w, https://dam.mihomes.com/media/4744763/50397.jpeg?timestamp=2026-05-13T22%3A01%3A25.4193597 600w, https://dam.mihomes.com/media/4744763/50423.jpeg?timestamp=2026-05-13T22%3A01%3A29.9095816 900w, https://dam.mihomes.com/media/4744763/50396.jpeg?timestamp=2026-05-13T22%3A01%3A24.1828987 1200w, https://dam.mihomes.com/media/4744763/50421.jpeg?timestamp=2026-05-13T22%3A01%3A27.2127016 1800w, https://dam.mihomes.com/media/4744763/50422.jpeg?timestamp=2026-05-13T22%3A01%3A28.6738651 2400w" title="COLS-Attucks-ElevationC-Gen3-elev_DAY" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </a>
+ <div class="image-banner-more">
+ <a href="#product-gallery"
+ data-goto-slide="1"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="1"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="COLS Keystone Elite I Interior Design Package" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4941389/50422.jpeg?timestamp=2026-06-30T15%3A47%3A49.6186874" srcset="https://dam.mihomes.com/media/4941389/50398.jpeg?timestamp=2026-06-30T15%3A47%3A43.8462501 300w, https://dam.mihomes.com/media/4941389/50397.jpeg?timestamp=2026-06-30T15%3A47%3A41.8875812 600w, https://dam.mihomes.com/media/4941389/50423.jpeg?timestamp=2026-06-30T15%3A47%3A50.5842655 900w, https://dam.mihomes.com/media/4941389/50396.jpeg?timestamp=2026-06-30T15%3A47%3A40.7445031 1200w, https://dam.mihomes.com/media/4941389/50421.jpeg?timestamp=2026-06-30T15%3A47%3A48.7822540 1800w, https://dam.mihomes.com/media/4941389/50422.jpeg?timestamp=2026-06-30T15%3A47%3A49.6186874 2400w" title="COLS Keystone Elite I Interior Design Package" width="1800" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="2"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="2"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Homesite" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5053884/50422.jpeg?timestamp=2026-07-24T00%3A27%3A42.1541657" srcset="https://dam.mihomes.com/media/5053884/50398.jpeg?timestamp=2026-07-24T00%3A27%3A41.3528123 300w, https://dam.mihomes.com/media/5053884/50397.jpeg?timestamp=2026-07-24T00%3A27%3A40.9661750 600w, https://dam.mihomes.com/media/5053884/50423.jpeg?timestamp=2026-07-24T00%3A27%3A41.8023512 900w, https://dam.mihomes.com/media/5053884/50396.jpeg?timestamp=2026-07-24T00%3A27%3A41.3000872 1200w, https://dam.mihomes.com/media/5053884/50421.jpeg?timestamp=2026-07-24T00%3A27%3A41.8143741 1800w, https://dam.mihomes.com/media/5053884/50422.jpeg?timestamp=2026-07-24T00%3A27%3A42.1541657 2400w" title="[L53-z001]Homesite" width="1800" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="3"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="3"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5032611/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.1317651" srcset="https://dam.mihomes.com/media/5032611/50398.jpeg?timestamp=2026-07-20T16%3A52%3A36.3725291 300w, https://dam.mihomes.com/media/5032611/50397.jpeg?timestamp=2026-07-20T16%3A52%3A35.3046006 600w, https://dam.mihomes.com/media/5032611/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.1182956 900w, https://dam.mihomes.com/media/5032611/50396.jpeg?timestamp=2026-07-20T16%3A52%3A30.5292103 1200w, https://dam.mihomes.com/media/5032611/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.8608486 1800w, https://dam.mihomes.com/media/5032611/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.1317651 2400w" title="DefaultImage2" width="1800" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="4"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="4"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5032613/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.8027102" srcset="https://dam.mihomes.com/media/5032613/50398.jpeg?timestamp=2026-07-20T16%3A52%3A38.0061965 300w, https://dam.mihomes.com/media/5032613/50397.jpeg?timestamp=2026-07-20T16%3A52%3A37.1317158 600w, https://dam.mihomes.com/media/5032613/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.7259533 900w, https://dam.mihomes.com/media/5032613/50396.jpeg?timestamp=2026-07-20T16%3A52%3A36.3377543 1200w, https://dam.mihomes.com/media/5032613/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.0046340 1800w, https://dam.mihomes.com/media/5032613/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.8027102 2400w" title="DefaultImage5" width="1800" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="third event-click image-banner-total gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <span class="button button-transparent">
+ View 8 Photos
+ </span>
+ </a>
+ </div>
+</div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Attucks Elevation C" height="1600" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/4744763/50422.jpeg?timestamp=2026-05-13T22%3A01%3A28.6738651" srcset="https://dam.mihomes.com/media/4744763/50398.jpeg?timestamp=2026-05-13T22%3A01%3A26.8525465 300w, https://dam.mihomes.com/media/4744763/50397.jpeg?timestamp=2026-05-13T22%3A01%3A25.4193597 600w, https://dam.mihomes.com/media/4744763/50423.jpeg?timestamp=2026-05-13T22%3A01%3A29.9095816 900w, https://dam.mihomes.com/media/4744763/50396.jpeg?timestamp=2026-05-13T22%3A01%3A24.1828987 1200w, https://dam.mihomes.com/media/4744763/50421.jpeg?timestamp=2026-05-13T22%3A01%3A27.2127016 1800w, https://dam.mihomes.com/media/4744763/50422.jpeg?timestamp=2026-05-13T22%3A01%3A28.6738651 2400w" title="COLS-Attucks-ElevationC-Gen3-elev_DAY" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="COLS Keystone Elite I Interior Design Package" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/4941389/50422.jpeg?timestamp=2026-06-30T15%3A47%3A49.6186874" srcset="https://dam.mihomes.com/media/4941389/50398.jpeg?timestamp=2026-06-30T15%3A47%3A43.8462501 300w, https://dam.mihomes.com/media/4941389/50397.jpeg?timestamp=2026-06-30T15%3A47%3A41.8875812 600w, https://dam.mihomes.com/media/4941389/50423.jpeg?timestamp=2026-06-30T15%3A47%3A50.5842655 900w, https://dam.mihomes.com/media/4941389/50396.jpeg?timestamp=2026-06-30T15%3A47%3A40.7445031 1200w, https://dam.mihomes.com/media/4941389/50421.jpeg?timestamp=2026-06-30T15%3A47%3A48.7822540 1800w, https://dam.mihomes.com/media/4941389/50422.jpeg?timestamp=2026-06-30T15%3A47%3A49.6186874 2400w" title="COLS Keystone Elite I Interior Design Package" width="1800" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Homesite" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5053884/50422.jpeg?timestamp=2026-07-24T00%3A27%3A42.1541657" srcset="https://dam.mihomes.com/media/5053884/50398.jpeg?timestamp=2026-07-24T00%3A27%3A41.3528123 300w, https://dam.mihomes.com/media/5053884/50397.jpeg?timestamp=2026-07-24T00%3A27%3A40.9661750 600w, https://dam.mihomes.com/media/5053884/50423.jpeg?timestamp=2026-07-24T00%3A27%3A41.8023512 900w, https://dam.mihomes.com/media/5053884/50396.jpeg?timestamp=2026-07-24T00%3A27%3A41.3000872 1200w, https://dam.mihomes.com/media/5053884/50421.jpeg?timestamp=2026-07-24T00%3A27%3A41.8143741 1800w, https://dam.mihomes.com/media/5053884/50422.jpeg?timestamp=2026-07-24T00%3A27%3A42.1541657 2400w" title="[L53-z001]Homesite" width="1800" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5032611/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.1317651" srcset="https://dam.mihomes.com/media/5032611/50398.jpeg?timestamp=2026-07-20T16%3A52%3A36.3725291 300w, https://dam.mihomes.com/media/5032611/50397.jpeg?timestamp=2026-07-20T16%3A52%3A35.3046006 600w, https://dam.mihomes.com/media/5032611/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.1182956 900w, https://dam.mihomes.com/media/5032611/50396.jpeg?timestamp=2026-07-20T16%3A52%3A30.5292103 1200w, https://dam.mihomes.com/media/5032611/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.8608486 1800w, https://dam.mihomes.com/media/5032611/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.1317651 2400w" title="DefaultImage2" width="1800" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5032613/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.8027102" srcset="https://dam.mihomes.com/media/5032613/50398.jpeg?timestamp=2026-07-20T16%3A52%3A38.0061965 300w, https://dam.mihomes.com/media/5032613/50397.jpeg?timestamp=2026-07-20T16%3A52%3A37.1317158 600w, https://dam.mihomes.com/media/5032613/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.7259533 900w, https://dam.mihomes.com/media/5032613/50396.jpeg?timestamp=2026-07-20T16%3A52%3A36.3377543 1200w, https://dam.mihomes.com/media/5032613/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.0046340 1800w, https://dam.mihomes.com/media/5032613/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.8027102 2400w" title="DefaultImage5" width="1800" class="image-banner-item-more" />
+ </span>
+ </div>
+
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <div class="modal fullscreen-modal gallery-modal gallery-modal--simple" data-modal="" id="simple-gallery-modal" data-track-views="">
+ <div class="gallery-modal__list-container">
+ <div class="gallery-modal__controls">
+ <button class="close-icon" data-modal-close>
+ <svg class="icon icon-close-gallery" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close-gallery"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__list-container-arrows">
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="prev" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="7" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="next" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="0" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__controls gallery-modal__controls__zoom">
+ <button class="close-icon" data-gallery="simple-gallery-modal" data-zoom>
+ <svg class="icon icon-zoom" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#zoom"></use>
+</svg>
+ </button>
+ </div>
+ <ul class="gallery-modal__list no-transition" style="transform: translateX(-200%);">
+
+ <li class="gallery-slide-container" data-slide-id="0" data-image="https://dam.mihomes.com/media/4744763/50398.jpeg?timestamp=2026-05-13T22%3A01%3A26.8525465 300w, https://dam.mihomes.com/media/4744763/50397.jpeg?timestamp=2026-05-13T22%3A01%3A25.4193597 600w, https://dam.mihomes.com/media/4744763/50423.jpeg?timestamp=2026-05-13T22%3A01%3A29.9095816 900w, https://dam.mihomes.com/media/4744763/50396.jpeg?timestamp=2026-05-13T22%3A01%3A24.1828987 1200w, https://dam.mihomes.com/media/4744763/50421.jpeg?timestamp=2026-05-13T22%3A01%3A27.2127016 1800w, https://dam.mihomes.com/media/4744763/50422.jpeg?timestamp=2026-05-13T22%3A01%3A28.6738651 2400w" data-caption="Attucks Elevation C" data-count="<strong>1</strong> of <strong>8</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Attucks Elevation C" height="1600" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4744763/50422.jpeg?timestamp=2026-05-13T22%3A01%3A28.6738651" srcset="https://dam.mihomes.com/media/4744763/50398.jpeg?timestamp=2026-05-13T22%3A01%3A26.8525465 300w, https://dam.mihomes.com/media/4744763/50397.jpeg?timestamp=2026-05-13T22%3A01%3A25.4193597 600w, https://dam.mihomes.com/media/4744763/50423.jpeg?timestamp=2026-05-13T22%3A01%3A29.9095816 900w, https://dam.mihomes.com/media/4744763/50396.jpeg?timestamp=2026-05-13T22%3A01%3A24.1828987 1200w, https://dam.mihomes.com/media/4744763/50421.jpeg?timestamp=2026-05-13T22%3A01%3A27.2127016 1800w, https://dam.mihomes.com/media/4744763/50422.jpeg?timestamp=2026-05-13T22%3A01%3A28.6738651 2400w" title="COLS-Attucks-ElevationC-Gen3-elev_DAY" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="1" data-image="https://dam.mihomes.com/media/4941389/50398.jpeg?timestamp=2026-06-30T15%3A47%3A43.8462501 300w, https://dam.mihomes.com/media/4941389/50397.jpeg?timestamp=2026-06-30T15%3A47%3A41.8875812 600w, https://dam.mihomes.com/media/4941389/50423.jpeg?timestamp=2026-06-30T15%3A47%3A50.5842655 900w, https://dam.mihomes.com/media/4941389/50396.jpeg?timestamp=2026-06-30T15%3A47%3A40.7445031 1200w, https://dam.mihomes.com/media/4941389/50421.jpeg?timestamp=2026-06-30T15%3A47%3A48.7822540 1800w, https://dam.mihomes.com/media/4941389/50422.jpeg?timestamp=2026-06-30T15%3A47%3A49.6186874 2400w" data-caption="COLS Keystone Elite I Interior Design Package" data-count="<strong>2</strong> of <strong>8</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="COLS Keystone Elite I Interior Design Package" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4941389/50422.jpeg?timestamp=2026-06-30T15%3A47%3A49.6186874" srcset="https://dam.mihomes.com/media/4941389/50398.jpeg?timestamp=2026-06-30T15%3A47%3A43.8462501 300w, https://dam.mihomes.com/media/4941389/50397.jpeg?timestamp=2026-06-30T15%3A47%3A41.8875812 600w, https://dam.mihomes.com/media/4941389/50423.jpeg?timestamp=2026-06-30T15%3A47%3A50.5842655 900w, https://dam.mihomes.com/media/4941389/50396.jpeg?timestamp=2026-06-30T15%3A47%3A40.7445031 1200w, https://dam.mihomes.com/media/4941389/50421.jpeg?timestamp=2026-06-30T15%3A47%3A48.7822540 1800w, https://dam.mihomes.com/media/4941389/50422.jpeg?timestamp=2026-06-30T15%3A47%3A49.6186874 2400w" title="COLS Keystone Elite I Interior Design Package" width="1800" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="2" data-image="https://dam.mihomes.com/media/5053884/50398.jpeg?timestamp=2026-07-24T00%3A27%3A41.3528123 300w, https://dam.mihomes.com/media/5053884/50397.jpeg?timestamp=2026-07-24T00%3A27%3A40.9661750 600w, https://dam.mihomes.com/media/5053884/50423.jpeg?timestamp=2026-07-24T00%3A27%3A41.8023512 900w, https://dam.mihomes.com/media/5053884/50396.jpeg?timestamp=2026-07-24T00%3A27%3A41.3000872 1200w, https://dam.mihomes.com/media/5053884/50421.jpeg?timestamp=2026-07-24T00%3A27%3A41.8143741 1800w, https://dam.mihomes.com/media/5053884/50422.jpeg?timestamp=2026-07-24T00%3A27%3A42.1541657 2400w" data-caption="Homesite" data-count="<strong>3</strong> of <strong>8</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Homesite" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5053884/50422.jpeg?timestamp=2026-07-24T00%3A27%3A42.1541657" srcset="https://dam.mihomes.com/media/5053884/50398.jpeg?timestamp=2026-07-24T00%3A27%3A41.3528123 300w, https://dam.mihomes.com/media/5053884/50397.jpeg?timestamp=2026-07-24T00%3A27%3A40.9661750 600w, https://dam.mihomes.com/media/5053884/50423.jpeg?timestamp=2026-07-24T00%3A27%3A41.8023512 900w, https://dam.mihomes.com/media/5053884/50396.jpeg?timestamp=2026-07-24T00%3A27%3A41.3000872 1200w, https://dam.mihomes.com/media/5053884/50421.jpeg?timestamp=2026-07-24T00%3A27%3A41.8143741 1800w, https://dam.mihomes.com/media/5053884/50422.jpeg?timestamp=2026-07-24T00%3A27%3A42.1541657 2400w" title="[L53-z001]Homesite" width="1800" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="3" data-image="https://dam.mihomes.com/media/5032611/50398.jpeg?timestamp=2026-07-20T16%3A52%3A36.3725291 300w, https://dam.mihomes.com/media/5032611/50397.jpeg?timestamp=2026-07-20T16%3A52%3A35.3046006 600w, https://dam.mihomes.com/media/5032611/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.1182956 900w, https://dam.mihomes.com/media/5032611/50396.jpeg?timestamp=2026-07-20T16%3A52%3A30.5292103 1200w, https://dam.mihomes.com/media/5032611/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.8608486 1800w, https://dam.mihomes.com/media/5032611/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.1317651 2400w" data-caption="Lifestyle - Representational Photo" data-count="<strong>4</strong> of <strong>8</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5032611/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.1317651" srcset="https://dam.mihomes.com/media/5032611/50398.jpeg?timestamp=2026-07-20T16%3A52%3A36.3725291 300w, https://dam.mihomes.com/media/5032611/50397.jpeg?timestamp=2026-07-20T16%3A52%3A35.3046006 600w, https://dam.mihomes.com/media/5032611/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.1182956 900w, https://dam.mihomes.com/media/5032611/50396.jpeg?timestamp=2026-07-20T16%3A52%3A30.5292103 1200w, https://dam.mihomes.com/media/5032611/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.8608486 1800w, https://dam.mihomes.com/media/5032611/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.1317651 2400w" title="DefaultImage2" width="1800" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="4" data-image="https://dam.mihomes.com/media/5032613/50398.jpeg?timestamp=2026-07-20T16%3A52%3A38.0061965 300w, https://dam.mihomes.com/media/5032613/50397.jpeg?timestamp=2026-07-20T16%3A52%3A37.1317158 600w, https://dam.mihomes.com/media/5032613/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.7259533 900w, https://dam.mihomes.com/media/5032613/50396.jpeg?timestamp=2026-07-20T16%3A52%3A36.3377543 1200w, https://dam.mihomes.com/media/5032613/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.0046340 1800w, https://dam.mihomes.com/media/5032613/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.8027102 2400w" data-caption="Lifestyle - Representational Photo" data-count="<strong>5</strong> of <strong>8</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5032613/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.8027102" srcset="https://dam.mihomes.com/media/5032613/50398.jpeg?timestamp=2026-07-20T16%3A52%3A38.0061965 300w, https://dam.mihomes.com/media/5032613/50397.jpeg?timestamp=2026-07-20T16%3A52%3A37.1317158 600w, https://dam.mihomes.com/media/5032613/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.7259533 900w, https://dam.mihomes.com/media/5032613/50396.jpeg?timestamp=2026-07-20T16%3A52%3A36.3377543 1200w, https://dam.mihomes.com/media/5032613/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.0046340 1800w, https://dam.mihomes.com/media/5032613/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.8027102 2400w" title="DefaultImage5" width="1800" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="5" data-image="https://dam.mihomes.com/media/5032615/50398.jpeg 300w, https://dam.mihomes.com/media/5032615/50397.jpeg 600w, https://dam.mihomes.com/media/5032615/50423.jpeg 900w, https://dam.mihomes.com/media/5032615/50396.jpeg 1200w, https://dam.mihomes.com/media/5032615/50421.jpeg 1800w, https://dam.mihomes.com/media/5032615/50422.jpeg 2400w" data-caption="Lifestyle - Representational Photo" data-count="<strong>6</strong> of <strong>8</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5032615/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.1681442" srcset="https://dam.mihomes.com/media/5032615/50398.jpeg 300w, https://dam.mihomes.com/media/5032615/50397.jpeg 600w, https://dam.mihomes.com/media/5032615/50423.jpeg 900w, https://dam.mihomes.com/media/5032615/50396.jpeg 1200w, https://dam.mihomes.com/media/5032615/50421.jpeg 1800w, https://dam.mihomes.com/media/5032615/50422.jpeg 2400w" title="DefaultImage4" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="6" data-image="https://dam.mihomes.com/media/5032614/50398.jpeg 300w, https://dam.mihomes.com/media/5032614/50397.jpeg 600w, https://dam.mihomes.com/media/5032614/50423.jpeg 900w, https://dam.mihomes.com/media/5032614/50396.jpeg 1200w, https://dam.mihomes.com/media/5032614/50421.jpeg 1800w, https://dam.mihomes.com/media/5032614/50422.jpeg 2400w" data-caption="Lifestyle - Representational Photo" data-count="<strong>7</strong> of <strong>8</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5032614/50422.jpeg?timestamp=2026-07-20T16%3A52%3A32.7348581" srcset="https://dam.mihomes.com/media/5032614/50398.jpeg 300w, https://dam.mihomes.com/media/5032614/50397.jpeg 600w, https://dam.mihomes.com/media/5032614/50423.jpeg 900w, https://dam.mihomes.com/media/5032614/50396.jpeg 1200w, https://dam.mihomes.com/media/5032614/50421.jpeg 1800w, https://dam.mihomes.com/media/5032614/50422.jpeg 2400w" title="DefaultImage3" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="7" data-image="https://dam.mihomes.com/media/5032612/50398.jpeg 300w, https://dam.mihomes.com/media/5032612/50397.jpeg 600w, https://dam.mihomes.com/media/5032612/50423.jpeg 900w, https://dam.mihomes.com/media/5032612/50396.jpeg 1200w, https://dam.mihomes.com/media/5032612/50421.jpeg 1800w, https://dam.mihomes.com/media/5032612/50422.jpeg 2400w" data-caption="Lifestyle - Representational Photo" data-count="<strong>8</strong> of <strong>8</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5032612/50422.jpeg?timestamp=2026-07-20T16%3A52%3A32.3397193" srcset="https://dam.mihomes.com/media/5032612/50398.jpeg 300w, https://dam.mihomes.com/media/5032612/50397.jpeg 600w, https://dam.mihomes.com/media/5032612/50423.jpeg 900w, https://dam.mihomes.com/media/5032612/50396.jpeg 1200w, https://dam.mihomes.com/media/5032612/50421.jpeg 1800w, https://dam.mihomes.com/media/5032612/50422.jpeg 2400w" title="DefaultImage1" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ </ul>
+ <div class="gallery-slide__footer">
+ <span class="gallery-slide__title title-caption"></span>
+ <div class="gallery-slide__share-buttons">
+ <span class="count"></span>
+ </div>
+ </div>
+ </div>
+ </div>
+</div><script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Product",
+ "additionalType": "https://schema.org/SingleFamilyResidence",
+ "name": "1006 Dawsons Drive",
+ "sku": "nNpJvP4kP0OpBP23K_4F2Q",
+ "description": "<div data-slate-type=\"paragraph\">Welcome to 1006 Dawsons Drive, Hebron, Ohio — a stunning new construction home built by M/I Homes. This 2-story home offers 2,577 square feet of thoughtfully designed living space, featuring 3 bedrooms, 2 full bathrooms, and 1 half bathroom.</div>\n<div data-slate-type=\"paragraph\"> </div>\n<div data-slate-type=\"paragraph\">Step inside to discover an open-concept living space that creates a seamless flow between gathering areas, perfect for everyday living and entertaining. The quality of design is evident throughout, with carefully selected finishes and attention to detail in every room. The owner's bedroom includes a private en-suite bathroom, providing a comfortable retreat at the end of each day.</div>\n<div data-slate-type=\"paragraph\"> </div>\n<div data-slate-type=\"paragraph\">Home Highlights:</div>\n<ul data-slate-type=\"bulleted-list\">\n <li data-slate-type=\"list-item\">2,577 square feet of living space</li>\n <li data-slate-type=\"list-item\">3 bedrooms and 2 full bathrooms</li>\n <li data-slate-type=\"list-item\">1 half bathroom for added convenience</li>\n <li data-slate-type=\"list-item\">2-story layout with open-concept design</li>\n <li data-slate-type=\"list-item\">Owner's bedroom with private en-suite bathroom</li>\n <li data-slate-type=\"list-item\">2-car garage</li>\n</ul>\n<div data-slate-type=\"paragraph\">This home is situated in a welcoming neighborhood that offers a friendly atmosphere and well-maintained surroundings. Residents enjoy convenient proximity to parks and green spaces, providing ample opportunities for outdoor recreation, walking trails, and family-friendly activities just minutes from the front door.</div>\n<div data-slate-type=\"paragraph\"> </div>\n<div data-slate-type=\"paragraph\">With its quality construction, generous square footage, and well-planned layout, this home at 1006 Dawsons Drive delivers comfort and style for today's homeowner.</div>",
+ "image": [
+ "https://dam.mihomes.com/media/4744763/50422.jpeg",
+ "https://dam.mihomes.com/media/4941389/50422.jpeg",
+ "https://dam.mihomes.com/media/5053884/50422.jpeg",
+ "https://dam.mihomes.com/media/5032611/50422.jpeg",
+ "https://dam.mihomes.com/media/5032613/50422.jpeg",
+ "https://dam.mihomes.com/media/5032615/50422.jpeg",
+ "https://dam.mihomes.com/media/5032614/50422.jpeg",
+ "https://dam.mihomes.com/media/5032612/50422.jpeg"
+ ],
+ "url": "https://www.mihomes.com/new-homes/ohio/central-ohio/hebron/hebron-landing/attucks-plan/1006-dawsons-drive",
+ "brand": {
+ "@type": "Organization",
+ "parentOrganization": {
+ "@type": "Organization",
+ "name": "M/I Homes"
+ },
+ "name": "Hebron Landing"
+ },
+ "address": {
+ "@type": "PostalAddress",
+ "streetAddress": "1006 Dawsons Drive",
+ "addressLocality": "Hebron",
+ "addressRegion": "OH",
+ "postalCode": "43025",
+ "addressCountry": "US"
+ },
+ "geo": {
+ "@type": "GeoCoordinates",
+ "latitude": 39.959122,
+ "longitude": -82.505979
+ },
+ "telephone": "+16143794046",
+ "offers": {
+ "@type": "Offer",
+ "url": "/new-homes/ohio/central-ohio/hebron/hebron-landing/attucks-plan/1006-dawsons-drive",
+ "price": "441970.00",
+ "priceCurrency": "USD",
+ "priceValidUntil": "08-12-2026",
+ "itemCondition": "https://schema.org/NewCondition",
+ "availability": "https://schema.org/InStock"
+ },
+ "model": "https://www.mihomes.com/new-homes/ohio/central-ohio/hebron/hebron-landing/attucks-plan",
+ "numberOfBedrooms": {
+ "@type": "Integer",
+ "value": 3
+ },
+ "numberOfFullBathrooms": {
+ "@type": "Integer",
+ "value": 2
+ },
+ "numberOfPartialBathrooms": {
+ "@type": "Integer",
+ "value": 1
+ },
+ "petsAllowed": true,
+ "yearBuilt": "2026",
+ "floorSize": {
+ "@type": "QuantitativeValue",
+ "value": 2577,
+ "unitCode": "FTK"
+ }
+}</script>
+<div class="modals" data-modal-container aria-hidden="true">
+ <div class="modal box" data-modal id="signup-modal">
+ <button class="modal-close" data-modal-close>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+
+ <h2 class="h1 alt">Sign up for an M/I Homes account</h2>
+ <p>Save your favorite home plans and communities, compare home plans and share your dream home with sales associates and real estate agents.</p>
+ <p>
+ Already a member?
+ <a class="button-plain" href="/account/login">Log In to your account »</a>
+ </p>
+ <a class="button button-wide" href="/account/register">
+ <span class="button-text">
+ Sign up with email
+ </span>
+ </a>
+ </div>
+</div>
+
+<div class="product-header" data-yes="true">
+
+ <div class="product-header-row product-header__top">
+
+ <div class="product-header-centered ">
+ <div>
+ <a href="/new-homes/ohio/central-ohio/hebron/hebron-landing" class="button-plain">
+ Hebron Landing
+ </a>
+
+ <h1 class="header-seo-h2">
+ 1006 Dawsons Drive, Hebron, OH 43025
+ <button class="aux-nav-link button-favorite-product gami-favorite-save" data-favorite-type="Home" data-favorite-id="bc49da9c-24fe-433f-a904-fdb72bfe05d9" data-favorite-fav-id="bc49da9c-24fe-433f-a904-fdb72bfe05d9" data-add-favorite>
+ <svg class="icon icon-favorite" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#favorite"></use>
+</svg>
+ <span class="aux-nav-link-action-text">
+ Favorite
+ </span>
+ </button>
+ </h1>
+ </div>
+
+ <div class="product-header__actions">
+ </div>
+ </div>
+ </div>
+
+ <div class="product-header-row">
+ <div class="product-header-centered tooptip-container">
+ <div>
+ <dl>
+ <dt>Ready date:</dt>
+ <dd>
+ <strong class="current-size">
+ December 15, 2026
+ </strong>
+ </dd>
+ </dl>
+ </div>
+ <div class="product-header-price">
+
+ Price:
+ <span content="441970">$441,970</span>
+
+ (
+ <span data-open-modal="mortgage-payment-calculator-modal" data-tooltip="Click estimate to see how we calculate this monthly payment" data-annualinsurance="0" data-taxrate="1.3" data-interestrate="4.875" data-downpayment="5" data-price="441970" data-mortgage-monthly-payment tabindex="0" class="product-header-price-monthly"></span>
+ )
+
+
+ <span class="product-header-calculator">
+ <a class="button-plain button-plain-icon small button-icon-right gami-mortcalc-view" data-open-modal="mortgage-payment-calculator-modal">
+ <svg class="icon icon-calculator" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#calculator"></use>
+</svg>
+ Estimate Your Monthly Payment
+ </a>
+ </span>
+ </div>
+ </div>
+ </div>
+</div> <a rel="noopener" href="/new-homes/ohio/central-ohio/hebron/hebron-landing/plat map?lot=210946000053" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=1001 Dawsons Drive, Hebron, OH 43025&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=zHbmbcYxtrThZPXPjH6ju88-LNM=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+<div class="product-header-centered product-header-centered--contact-card-only">
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Hebron Landing</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://www.google.com/maps/dir/?api=1&destination=39.958781,-82.505227">
+ 1000 Dawsons Drive<br>Hebron, OH 43025
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+</div><div class="product-header">
+ <div class="product-header product-header-navigation">
+ <nav class="product-header-subnav" data-subnav="">
+ <div class="product-header-subnav-wrapper">
+ <div class="product-header-subnav-mobile-bottom">
+ <a class="button button-contact-us" href="/support/sales">
+ <span class="button-text">
+ Contact Us
+ </span>
+ </a>
+ </div>
+
+
+ <a class="product-header-subnav-toggle subnav-link" data-subnav-toggle="">
+ <span class="text" data-subnav-text="">Overview</span>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </a>
+
+ <ul class="product-header-subnav-links" data-subnav-links=""></ul>
+ </div>
+ </nav>
+
+ <div class="product-header-subnav-spacer"></div>
+
+ <a href="#overview" class="product-header__back-to-top is-hidden" data-back-to-top>
+ <div class="arrow arrow--up"></div>
+ </a>
+ </div>
+</div><section class="content-inner-with-sidebar content-inner-with-sidebar-right">
+
+
+ <div class="content-inner-content">
+
+
+
+
+
+<section class="plan-specification">
+ <h2 class="plan-specification__header">
+ About 1006 Dawsons Drive
+ </h2>
+ <a class="plan-specification__get-directions button-plain button-plain-alt negative-top gami-directions-exit" target="_blank" href="https://www.google.com/maps/search/?api=1&query=39.959122,-82.505979">Get Directions</a>
+ <ul class="plan-specification__list">
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sq-ft" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sq-ft"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">square feet</span>
+ <strong class="plan-specification-item__value">
+ 2,577
+ </strong>
+ </div>
+ </li>
+ <li class="stories-specification">
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-homes" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#homes"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">stories</span>
+ <strong class="plan-specification-item__value">
+ 2
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-bed" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#bed"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">bedrooms</span>
+ <strong class="plan-specification-item__value">
+ 3
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-shower" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#shower"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">full bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 2
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sink" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sink"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">half bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 1
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-car" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#car"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">garages</span>
+ <strong class="plan-specification-item__value">
+ 2
+ <span data-tooltip="The most common approach to a home's garage, the front load garage incorporates the garage entry into a home's front elevation.">(Front Load)</span>
+
+ </strong>
+ </div>
+ </li>
+ </ul>
+</section>
+
+<div class="overview-table">
+ <div class="overview-table-table">
+ <dl>
+ <dt>City</dt>
+ <dd>Hebron, OH</dd>
+
+ <dt>Owner's Suite</dt>
+ <dd>Second Floor</dd>
+
+ <dt>County</dt>
+ <dd>Licking</dd>
+
+ <dt>Home Type</dt>
+ <dd>Single Family Home</dd>
+
+ <dt>School District</dt>
+ <dd>Lakewood Local</dd>
+
+ <dt>Foundation Type</dt>
+ <dd>Slab</dd>
+
+ <dt>Home Plan</dt>
+ <dd>Attucks</dd>
+
+
+ <dt>Homesite</dt>
+ <dd>53</dd>
+
+ <dt> Base Plan Width & Depth</dt>
+ <dd>30.00 x 57.00 </dd>
+ </dl>
+ </div>
+</div> <h2>
+ 3-Bedroom Home in Hebron, OH
+ </h2>
+ <div class="content-inner-content__capped-mobile-content">
+ <div data-slate-type="paragraph">Welcome to 1006 Dawsons Drive, Hebron, Ohio — a stunning new construction home built by M/I Homes. This 2-story home offers 2,577 square feet of thoughtfully designed living space, featuring 3 bedrooms, 2 full bathrooms, and 1 half bathroom.</div>
+<div data-slate-type="paragraph"> </div>
+<div data-slate-type="paragraph">Step inside to discover an open-concept living space that creates a seamless flow between gathering areas, perfect for everyday living and entertaining. The quality of design is evident throughout, with carefully selected finishes and attention to detail in every room. The owner's bedroom includes a private en-suite bathroom, providing a comfortable retreat at the end of each day.</div>
+<div data-slate-type="paragraph"> </div>
+<div data-slate-type="paragraph">Home Highlights:</div>
+<ul data-slate-type="bulleted-list">
+ <li data-slate-type="list-item">2,577 square feet of living space</li>
+ <li data-slate-type="list-item">3 bedrooms and 2 full bathrooms</li>
+ <li data-slate-type="list-item">1 half bathroom for added convenience</li>
+ <li data-slate-type="list-item">2-story layout with open-concept design</li>
+ <li data-slate-type="list-item">Owner's bedroom with private en-suite bathroom</li>
+ <li data-slate-type="list-item">2-car garage</li>
+</ul>
+<div data-slate-type="paragraph">This home is situated in a welcoming neighborhood that offers a friendly atmosphere and well-maintained surroundings. Residents enjoy convenient proximity to parks and green spaces, providing ample opportunities for outdoor recreation, walking trails, and family-friendly activities just minutes from the front door.</div>
+<div data-slate-type="paragraph"> </div>
+<div data-slate-type="paragraph">With its quality construction, generous square footage, and well-planned layout, this home at 1006 Dawsons Drive delivers comfort and style for today's homeowner.</div>
+
+ <!-- and done -->
+ <h3>
+ About the Community
+ </h3>
+ <p>
+ Hebron Landing is a new single family home community in Hebron, Ohio, offering a relaxed setting with easy access to both nature and nearby cities. Located just off SR 40 near I‑70, the community provides a convenient connection to Buckeye Lake, Heath, Newark, and the greater Columbus area while maintaining a small‑town feel.
+
+Homes at Hebron Landing feature modern, open layouts designed for everyday living. Thoughtfully planned floorplans include flexible living spaces that support entertaining, working from home, or right‑sizing, with simplified design choices that make new home living feel approachable and comfortable.
+
+The community is planned around outdoor enjoyment and connection, with walking trails, ponds, open green space, and a playground creating inviting spaces to spend time outside. Nearby lake recreation, local dining, and everyday shopping add to the convenience.
+
+Served by the Lakewood Local School District, Hebron Landing offers an attainable lifestyle that blends comfort, connection, and easy access to both recreation and regional employment in growing Licking County.
+ <br />
+ <a class="button-plain button-plain-alt" href="/new-homes/ohio/central-ohio/hebron/hebron-landing">Learn more about this community »</a>
+ </p>
+ </div>
+ <button class="faq__question color-aqua" aria-expanded="false" data-read-more="">
+ <span class="faq__icon-wrapper">
+ <span class="faq__icon">
+ <svg class="icon icon-arrow" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#arrow"></use>
+</svg>
+ </span>
+ </span>
+ <span data-read-more-collapsed="">Read More</span>
+ <span data-read-more-expanded="">Show Less</span>
+ <span class="show-hide-text hidden-text">Show</span>
+ </button>
+
+
+
+ </div>
+
+ <div class="content-sidebar-right">
+ <a rel="noopener" href="/new-homes/ohio/central-ohio/hebron/hebron-landing/plat map?lot=210946000053" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=1001 Dawsons Drive, Hebron, OH 43025&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=zHbmbcYxtrThZPXPjH6ju88-LNM=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Hebron Landing</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://www.google.com/maps/dir/?api=1&destination=39.958781,-82.505227">
+ 1000 Dawsons Drive<br>Hebron, OH 43025
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+
+
+ <figure class="lead-form lead-form-sidebar lead-form-sidebar--compact lead-form-sidebar-signup">
+ <div class="lead-form-container">
+ <div id="lead-sidebar-header" class="lead-form-sidebar-header lead-form-sidebar-header-image">
+ <div id="isa-information" data-sidebar-section="1">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="ISM Headshot" height="600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4587811/50399.png?timestamp=2026-04-03T15%3A52%3A35.2983578" srcset="https://dam.mihomes.com/media/4587811/50399.png?timestamp=2026-04-03T15%3A52%3A35.2983578 300w, https://dam.mihomes.com/media/4587811/50420.png 600w" title="COLS-ISM-LaurenKuhn" width="600" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="rcaldi@MIHOMES.com-0415202606.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4634961/50399.png?timestamp=2026-04-15T10%3A56%3A46.5328537" srcset="https://dam.mihomes.com/media/4634961/50399.png?timestamp=2026-04-15T10%3A56%3A46.5328537 300w, https://dam.mihomes.com/media/4634961/50420.png 600w" title="rcaldi@MIHOMES.com-0415202606" width="96" class="cover-image" />
+ </div>
+ </div>
+ <h3 class="">Have questions for us?</h3>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=6143794046'>(614) 379-4046</a>
+ </p>
+ </div>
+ <div id="form-agent-header" class="lead-form-sidebar-section right" style="display: none;">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+
+ </div>
+ <div class="lead-form-sidebar-form" data-lead-form-sidebar="">
+ <div class="lead-form-sidebar-errors"></div>
+<form action="/api/LeadGenFormSidebar/LeadGenFormSidebar" data-gami-event="gami-form-question" data-parsley-validate="" data-sidebar-hidden-required="" data-sidebar-nav-check="visit_sidebar" method="post" name="basic_sidebar" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="8e25a19d-86b1-46b6-b4fd-b60ae82bf633" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Inventory" /><input id="PostType" name="PostType" type="hidden" value="sidebar" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:13 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="ItemId" name="ItemId" type="hidden" value="bc49da9c-24fe-433f-a904-fdb72bfe05d9" /><input id="HomeType" name="HomeType" type="hidden" value="Single Family Home" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 443px;">
+ <div class="align-left center lead-form-sidebar-section" data-cta="Request Information" data-sidebar-section="0">
+ <div>
+
+ <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="">
+ </div>
+
+ <div class="form-field no-label-errors" style="margin-top: 1px">
+ <label for="fullname_sidebar"></label>
+ <input type="text"
+ name="FormFullName"
+ id="fullname_sidebar"
+ placeholder="Full Name"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required." data-parsley-trigger="blur"
+ maxlength="60"
+ data-parsley-filter-emoji=""
+ >
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormEmailAddress"
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="phone_sidebar">Phone Number</label>
+ <input class="gami-tel" type="tel"
+ autocomplete="tel-national"
+ name="FormPhoneNumber"
+ id="phone_sidebar"
+ placeholder="Phone Number" +
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ value=""
+
+ data-parsley-phone-number="" data-parsley-trigger="blur"
+ maxlength="25">
+ </div>
+
+ <div class="form-field no-label-errors">
+ <label for="comments_sidebar">Questions or Comments</label>
+ <textarea rows="5"
+ name="FormComments"
+ id="comments_sidebar"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000">Please send me information about 1006 Dawsons Drive</textarea>
+ </div>
+ </div>
+ <div>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox hide" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input data-parsley-multiple="visit_sidebar" name="visit_sidebar" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to plan a visit</span>
+ </label>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormEmailOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSAssociateCommunicationsOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" data-sidebar-section="1" tabindex="-1">
+ <div>
+ <h4>Plan a visit</h4>
+ <p>Select your preferred day and time and we’ll help set up the perfect visit.</p>
+ </div>
+ <div>
+ <div class="select no-label-errors">
+ <label for="tripday_sidebar"> </label>
+ <div class="select-wrap">
+<select data-nested-select="#select-triptime-block-sidebar" data-parsley-group="visit_sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+
+ <div class="select no-label-errors">
+ <label for="triptime_sidebar"> </label>
+ <div class="select-wrap">
+<select data-parsley-group="visit_sidebar" id="triptime_sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" dta-cta="Continue" data-sidebar-section="2" data-agent-section tabindex="-1">
+
+ <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0">
+ <div class="align-left center lead-form-sidebar-section" data-sidebar-section="0">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button form-submit">
+ <span class="button-text">Request Information</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-left lead-form-sidebar-section right" data-sidebar-section="1">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit" disabled tabindex="-1">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="2">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button" disabled tabindex="-1">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit" disabled tabindex="-1">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+ </div>
+ </div>
+</form> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 25px;">
+ <div class="align-center center lead-form-sidebar-section" data-sidebar-section="0">
+ <button class="button-plain small" data-open-modal="privacy-policy-modal" href="javascript:void()">Privacy Policy</button>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="1">
+ <button class="button-plain small" data-sidebar-nav="0" tabindex="-1">« Go Back</button>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <!-- THANK YOU MESSAGE -->
+ <div class="lead-form-container-success">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-success lead-form-sidebar-header-image">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" data-parsley-validate="" method="POST" name="thanksyou_sidebar" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+ <div>
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+ <div class="form-field form-field-password">
+ <label for="password"> </label>
+ <input data-parsley-required-message="Password is required." data-parsley-valid-password="" id="password" minlength="8" name="password" placeholder="Password" required="" type="password" data-parsley-filter-emoji="" data-parsley-trigger="blur">
+ <button class="password-input-change" data-input-change="" type="button">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)" tabindex="0">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">
+ Create Account
+ </span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ <h3 class="h3 preview-box__header">
+ Incentives
+ </h3>
+ <a class="incentive incentive__sidebar--simple" href="/new-homes/ohio/central-ohio/incentives/back-to-school-savings">
+ <div class="incentive-background">
+ <img data-dam-generated alt="Back to School Email Zone A" height="1667" loading="eager" sizes="(min-width: 64rem) 328px, 100vw" src="https://dam.mihomes.com/media/3476000/50421.jpeg" srcset="https://dam.mihomes.com/media/3476000/50398.jpeg?timestamp=2025-07-31T13%3A51%3A06.3067575 300w, https://dam.mihomes.com/media/3476000/50397.jpeg?timestamp=2025-07-31T13%3A51%3A05.0574716 600w, https://dam.mihomes.com/media/3476000/50423.jpeg?timestamp=2025-07-31T13%3A51%3A11.8801117 900w, https://dam.mihomes.com/media/3476000/50396.jpeg?timestamp=2025-07-31T13%3A50%3A58.2475110 1200w, https://dam.mihomes.com/media/3476000/50421.jpeg?timestamp=2025-07-31T13%3A51%3A09.6595521 1800w, https://dam.mihomes.com/media/3476000/50422.jpeg?timestamp=2025-07-31T13%3A51%3A11.8925121 2400w" title="RALE Back to School - Email Zone A" width="2500" class="cover-image cover-image--abs" />
+ <div class="incentive__badge">
+<img data-dam-generated alt="Back to School Badge" height="1042" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3475997/50399.png?timestamp=2025-07-31T14%3A01%3A08.2379813" srcset="https://dam.mihomes.com/media/3475997/50399.png?timestamp=2025-07-31T14%3A01%3A08.2379813 300w, https://dam.mihomes.com/media/3475997/50420.png 600w" title="RALE Back to School - Badge" width="1042" class="incentive__badge-background" maxwidth="2400" /> </div>
+ </div>
+ <div class="incentive-inner">
+ <span class="incentive-title--wrapper">
+ <p class="incentive-title">Back to School Savings: First-Year Rates As Low As 2.875%* / 5.64% APR* With 2/1 Buydown</p>
+ </span>
+ <p class="incentive-sub-headline">It’s time for a new school year, new routines, and new homes. And with our limited-time offers that can secure you lower payments to have more to spend on all those school supplies, sports equipment, and new clothes, buying now has never been smarter. Receive first year rates as low as 2.875%* / 5.64% APR* with a 2/1 buydown on 30-year fixed FHA loans through M/I Financial, LLC*, paid closing costs***, and more for a limited time only.</p>
+ <p class="incentive-button--wrapper">
+ <span class="button button-small" href="/new-homes/ohio/central-ohio/incentives/back-to-school-savings">
+ <span class="button-text uppercase">View Details</span>
+ </span>
+ </p>
+ </div>
+ </a>
+
+</div>
+</section>
+
+ <div id="design" class="box box-full box-no-padding-bottom" data-subnav-page-link="Design Options">
+ <div class="content-inner-centered">
+ <h2>Add the perfect finishing touch</h2>
+ <p class="subtitle content-inner-centered-narrow negative-top">
+ Put your personal touch on these Quick Move-In Homes with some selections from our Design Studio.
+ </p>
+ <div class="button-tooltip-wrapper">
+ <a class="button button-tooltip event-click" href="https://edc.envisionoptions.com/browser.aspx?NHTNumber=MIHOMES&Loc1=100&Lev1=CORP&Loc2=210&Lev2=DIV&HomeNumber=13EE78&Page=Confirmselection&utm_source=mihomes.com&utm_campaign=&utm_content=hebron-landing-Attucks-1006-Dawsons-Drive&utm_term=" target="_blank" data-event-category=OptionsGallery
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ See This Home's Options
+ </a>
+
+
+ </div>
+ <a class="button" href="/design/design-studio">
+ <span class="button-text">
+ Visit a Design Studio
+ </span>
+ </a>
+ </div>
+ </div>
+ <div class="box box-full box-no-padding-top">
+ <div class="contained-width">
+ <hr class="hr-even">
+
+ <h4>Incentives</h4>
+ <article class="preview-box ">
+ <a class="preview-box-link" href="/new-homes/ohio/central-ohio/incentives/long-term-rate-lock">
+ <div class="preview-box__image preview-box__preview one-third">
+ <img data-dam-generated alt="RTG | A+ Opportunities" height="5000" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/5018835/50421.jpeg" srcset="https://dam.mihomes.com/media/5018835/50398.jpeg?timestamp=2026-07-17T17%3A41%3A53.5631550 300w, https://dam.mihomes.com/media/5018835/50397.jpeg?timestamp=2026-07-17T17%3A41%3A46.6762870 600w, https://dam.mihomes.com/media/5018835/50423.jpeg?timestamp=2026-07-17T17%3A41%3A59.8473079 900w" title="A+Opportunities-Card" width="7500" class="cover-image" maxwidth="900" />
+ </div>
+ <div class="preview-box__content">
+ <h3 class="h3 preview-box__header">
+ Back to School Savings: Long-Term Rate Lock
+ <span class="preview-box__separator">|</span>
+ <time datetime="">Aug 4-16, 2026</time>
+
+
+ </h3>
+ <p class="preview-box__text">Thinking about buying a new home, but worried about high interest rates? Take advantage of our featured offer through M/I Financial, LLC to lock in an extended below-market rate* so that you can focus more on settling into your new routine now that the school year is starting.</p>
+ <p>
+ <span class="button-plain button-plain-alt" href="/new-homes/ohio/central-ohio/incentives/long-term-rate-lock">View Details »</span>
+ </p>
+ </div>
+ </a>
+ </article>
+ <article class="preview-box ">
+ <a class="preview-box-link" href="/new-homes/ohio/central-ohio/incentives/back-to-school-savings">
+ <div class="preview-box__image preview-box__preview one-third">
+ <img data-dam-generated alt="Back to School Email Zone A" height="1667" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3476000/50421.jpeg" srcset="https://dam.mihomes.com/media/3476000/50398.jpeg?timestamp=2025-07-31T13%3A51%3A06.3067575 300w, https://dam.mihomes.com/media/3476000/50397.jpeg?timestamp=2025-07-31T13%3A51%3A05.0574716 600w, https://dam.mihomes.com/media/3476000/50423.jpeg?timestamp=2025-07-31T13%3A51%3A11.8801117 900w" title="RALE Back to School - Email Zone A" width="2500" class="cover-image" maxwidth="900" />
+ </div>
+ <div class="preview-box__content">
+ <h3 class="h3 preview-box__header">
+ Back to School Savings: First-Year Rates As Low As 2.875%* / 5.64% APR* With 2/1 Buydown
+ <span class="preview-box__separator">|</span>
+ <time datetime="">Aug 3-16, 2026</time>
+
+
+ </h3>
+ <p class="preview-box__text">It’s time for a new school year, new routines, and new homes. And with our limited-time offers that can secure you lower payments to have more to spend on all those school supplies, sports equipment, and new clothes, buying now has never been smarter. Receive first year rates as low as 2.875%* / 5.64% APR* with a 2/1 buydown on 30-year fixed FHA loans through M/I Financial, LLC*, paid closing costs***, and more for a limited time only.</p>
+ <p>
+ <span class="button-plain button-plain-alt" href="/new-homes/ohio/central-ohio/incentives/back-to-school-savings">View Details »</span>
+ </p>
+ </div>
+ </a>
+ </article>
+ </div>
+ </div>
+
+ <div id="floor" class="box box-full box-last event-inview" data-subnav-page-link="FloorPlan" data-event-category=Floorplan
+ data-event-action=scroll
+ data-event-label=view
+>
+ <div class="content-inner-centered content-inner-centered--mobile">
+ <h2>Floorplan Options for Your New Home</h2>
+ <p class="content-inner-centered-narrow negative-top subtitle">The Attucks accommodates a variety of household living arrangements with its highly desired flexibility and modern design. Explore the many possibilities in the popular Attucks plan.</p>
+ <a target="_blank" class="button floor-plan-options__button event-click" href="https://rifp.ml3ds-icon.com/#/floorplan/563482?pcoLink=65950&pco=1541748%2c1541750%2c1541753%2c1541754&reverseFloorPlan=true" data-event-category=Floorplan
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <svg class="icon icon-fullscreen" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#fullscreen"></use>
+</svg>
+ <span class="button-text">
+ Show Floorplan
+ </span>
+ </a>
+ </div>
+ <section class="floor-plan-options">
+ <iframe loading="lazy" id="floor-plan" data-fullsize class="floor-plan-options__iframe" data-src="https://rifp.ml3ds-icon.com/#/floorplan/563482?pcoLink=65950&pco=1541748%2c1541750%2c1541753%2c1541754&reverseFloorPlan=true" scrolling="no" style="overflow: hidden">
+ <p>Your browser does not support iframes.</p>
+ </iframe>
+ </section>
+ </div>
+
+ <div class="box box-full box-no-padding-top-bottom " id="">
+ <div class="content-inner-centered">
+ <div class="leadgenTitleBlock">
+ <h2 class="h2">Ready to plan a visit? We can help</h2>
+ <p class="subtitle marginless">Send us your preferred time to stop by and a sales representative will take care of the rest</p>
+ </div>
+ <section class="lead-form">
+ <div id="lead-form-block-user-info" class="lead-form-container lead-form-block" data-lead-form-sidebar="">
+ <aside class="lead-form-block__details" style="">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="ISM Headshot" height="600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4587811/50399.png?timestamp=2026-04-03T15%3A52%3A35.2983578" srcset="https://dam.mihomes.com/media/4587811/50399.png?timestamp=2026-04-03T15%3A52%3A35.2983578 300w, https://dam.mihomes.com/media/4587811/50420.png 600w" title="COLS-ISM-LaurenKuhn" width="600" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="rcaldi@MIHOMES.com-0415202606.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4634961/50399.png?timestamp=2026-04-15T10%3A56%3A46.5328537" srcset="https://dam.mihomes.com/media/4634961/50399.png?timestamp=2026-04-15T10%3A56%3A46.5328537 300w, https://dam.mihomes.com/media/4634961/50420.png 600w" title="rcaldi@MIHOMES.com-0415202606" width="96" class="cover-image" />
+ </div>
+ </div>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=6143794046'>(614) 379-4046</a>
+ </p>
+ </aside>
+<form action="/api/LeadGenFormBlock/LeadGenFormBlock" class="lead-form-block__form" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="8e25a19d-86b1-46b6-b4fd-b60ae82bf633" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Model" /><input id="PostType" name="PostType" type="hidden" value="block" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:13 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="FormAgentEmailAddress" name="FormAgentEmailAddress" type="hidden" value="" /><input id="ItemId" name="ItemId" type="hidden" value="bc49da9c-24fe-433f-a904-fdb72bfe05d9" /><input id="HomeType" name="HomeType" type="hidden" value="Single Family Home" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="" hidden>
+ </div>
+ <div class="form-field">
+ <label for="fullname">Full Name </label>
+ <input type="text"
+ name="FormFullName"
+ placeholder="John Doe"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required."
+ maxlength="60"
+
+ data-parsley-filter-emoji=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="emailaddress">Email Address </label>
+ <input type="email"
+ name="FormEmailAddress" ,
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field">
+ <label for="phone">Phone Number </label>
+ <input class="gami-tel" type="tel"
+ name="FormPhoneNumber"
+ id="phone"
+ placeholder="5555555555"
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ maxlength="25"
+ value=""
+
+ data-parsley-phone-number=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="input">Questions or Comments </label>
+ <textarea rows="5"
+ name="FormComments"
+ id="input"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000"></textarea>
+ </div>
+ <div class="lead-form-block__contacts">
+ <div class="form-field select" {="">
+ <label for="tripday_block">Preferred Day <em> (Optional)</em></label>
+ <div class="select-wrap">
+ <div class="select-wrap">
+<select date-nested-select="#select-triptime-block-sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+
+ <div class="form-field select" {="">
+ <label for="triptime_block">Preferred Time <em> (Optional)</em></label>
+ <div class="select-wrap">
+
+<select id="select-triptime-block-sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-block__checkboxes-container">
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormEmailOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSAssociateCommunicationsOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ <div class="lead-form-block__submit">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+
+ <span class="align-center">
+ <a class="button-plain small" data-open-modal="privacy-policy-modal">Privacy Policy</a>
+ </span>
+ </div>
+</form> </div>
+ <div id="lead-form-block-agent-form" class="lead-form-container lead-form-block" data-lead-form-sidebar="" data-agent-section style="display: none;">
+ <figure class="lead-form lead-form-sidebar">
+ <div id="form-agent-header" class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+<form action="/new-homes/ohio/central-ohio/hebron/hebron-landing/attucks-plan/1006-dawsons-drive" class="lead-form-sidebar-section" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""> <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ id="block-agent-email"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+</form> </div>
+ </figure>
+ </div>
+
+
+
+ <div class="lead-form-container-success">
+ <figure class="lead-form lead-form-sidebar">
+ <div class="lead-form-container-success" style="display: block">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" method="POST" name="thanksyou_sidebar" data-parsley-validate="" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+
+ <div>
+ <div class="form-field form-field-password">
+ <label for="password"></label>
+ <input type="password"
+ name="password"
+ id="password"
+ placeholder="Password"
+ data-parsley-valid-password=""
+ minlength="8"
+ required=""
+ data-parsley-required-message="Password is required."
+ data-parsley-trigger="blur">
+
+ <button type="button" class="password-input-change" data-input-change="">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span tabindex="0"
+ data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">Create Account</span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ </div>
+ </section>
+ </div>
+ </div>
+
+ <div class="box box-centered box-full box-transparent" id="neraby">
+ <div class="box-full-inner">
+ <h3 class="h2">
+ Other Quick Move-In Homes
+ </h3>
+
+ <div class="featured-grid">
+ <div class="row">
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/ohio/central-ohio/hebron/hebron-landing/new-castle-plan/1034-dawsons-drive">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="New Castle Elevation B" height="1600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4114072/50422.jpeg?timestamp=2025-12-02T23%3A02%3A28.6053036" srcset="https://dam.mihomes.com/media/4114072/50398.jpeg?timestamp=2025-12-02T23%3A02%3A26.5726717 300w, https://dam.mihomes.com/media/4114072/50397.jpeg?timestamp=2025-12-02T23%3A02%3A26.8138838 600w, https://dam.mihomes.com/media/4114072/50423.jpeg?timestamp=2025-12-02T23%3A02%3A28.9308953 900w, https://dam.mihomes.com/media/4114072/50396.jpeg?timestamp=2025-12-02T23%3A02%3A26.4350389 1200w, https://dam.mihomes.com/media/4114072/50421.jpeg?timestamp=2025-12-02T23%3A02%3A28.9695579 1800w, https://dam.mihomes.com/media/4114072/50422.jpeg?timestamp=2025-12-02T23%3A02%3A28.6053036 2400w" title="COLS-NewCastle-ElevationB-Gen3-elev_DAY" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">New Castle</p>
+ <p class="featured-grid-middle">1034 Dawsons Drive, Hebron, Ohio</p>
+ <p class="featured-grid-subtitle">Listed at $388,020</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/ohio/central-ohio/hebron/hebron-landing/attucks-plan/1020-dawsons-drive">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Front Exterior" height="3357" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/5014715/50422.jpeg?timestamp=2026-07-16T15%3A51%3A51.4581729" srcset="https://dam.mihomes.com/media/5014715/50398.jpeg?timestamp=2026-07-16T15%3A51%3A29.2752295 300w, https://dam.mihomes.com/media/5014715/50397.jpeg?timestamp=2026-07-16T15%3A51%3A28.7943813 600w, https://dam.mihomes.com/media/5014715/50423.jpeg?timestamp=2026-07-16T15%3A51%3A51.9495670 900w, https://dam.mihomes.com/media/5014715/50396.jpeg?timestamp=2026-07-16T15%3A51%3A29.8961205 1200w, https://dam.mihomes.com/media/5014715/50421.jpeg?timestamp=2026-07-16T15%3A51%3A51.1037152 1800w, https://dam.mihomes.com/media/5014715/50422.jpeg?timestamp=2026-07-16T15%3A51%3A51.4581729 2400w" title="[L49-z001]FrontExterior" width="5035" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Attucks</p>
+ <p class="featured-grid-middle">1020 Dawsons Drive, Hebron, Ohio</p>
+ <p class="featured-grid-subtitle">Listed at $422,760</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/ohio/central-ohio/hebron/hebron-landing/spring-valley-plan/1007-dawsons-drive">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Front Exterior" height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/5053828/50422.jpeg?timestamp=2026-07-24T00%3A25%3A02.9812636" srcset="https://dam.mihomes.com/media/5053828/50398.jpeg?timestamp=2026-07-24T00%3A24%3A57.0394351 300w, https://dam.mihomes.com/media/5053828/50397.jpeg?timestamp=2026-07-24T00%3A24%3A57.4689656 600w, https://dam.mihomes.com/media/5053828/50423.jpeg?timestamp=2026-07-24T00%3A25%3A03.9004985 900w, https://dam.mihomes.com/media/5053828/50396.jpeg?timestamp=2026-07-24T00%3A24%3A56.4951158 1200w, https://dam.mihomes.com/media/5053828/50421.jpeg?timestamp=2026-07-24T00%3A25%3A02.1073193 1800w, https://dam.mihomes.com/media/5053828/50422.jpeg?timestamp=2026-07-24T00%3A25%3A02.9812636 2400w" title="[L4-z001]FrontExterior" width="1800" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Spring Valley</p>
+ <p class="featured-grid-middle">1007 Dawsons Drive, Hebron, Ohio</p>
+ <p class="featured-grid-subtitle">Listed at $425,750</p>
+ </a>
+</div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ </main>
+
+
+<footer class="main-footer">
+ <div class="main-footer-inner">
+ <ul class="horizontal-list">
+ <li><a href="https://apply.workable.com/mi-homes/" target="_blank" rel="noopener noreferrer" >Careers</a></li>
+ <li><a href="/support/warranty" >Warranty</a></li>
+ <li><a href="https://investors.mihomes.com/" rel="noopener noreferrer" title="Investor Relations" target="_blank" >Investors</a></li>
+ <li><a href="/events" >Events</a></li>
+ <li><a href="/incentives" >Incentives</a></li>
+ <li><a href="/agent/agent-info" >Agents & Brokers</a></li>
+ <li><a href="/resources" >Home Buying Resources</a></li>
+ <li><a href="/why-mi/journey" >Journey</a></li>
+ <li><a href="/blog/" >Blog</a></li>
+ </ul>
+ <ul class="horizontal-list">
+ <li><a href="/policies/privacy-policy" >Privacy Policy</a></li>
+ <li><a href="/policies/terms-of-use" >Terms of Use</a></li>
+ <li><a href="/subscriptions" >Manage Subscriptions</a></li>
+ <li><a href="/support/ccpa" >CCPA</a></li>
+ </ul>
+ <ul class="icon-list">
+ <li>
+<a href="https://www.instagram.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Instagram" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704717/50399.png" srcset="https://dam.mihomes.com/media/4704717/50399.png?timestamp=2026-05-04T18%3A56%3A58.4036491 300w, https://dam.mihomes.com/media/4704717/50420.png 600w" title="instagram" width="24" /></a> </li>
+ <li>
+<a href="https://www.facebook.com/MIHomesInc/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Facebook" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57191/50399.png" srcset="https://dam.mihomes.com/media/57191/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57191/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="facebook" width="24" /></a> </li>
+ <li>
+<a href="https://www.youtube.com/MIHomesInc" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Youtube" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704715/50399.png" srcset="https://dam.mihomes.com/media/4704715/50399.png?timestamp=2026-05-04T18%3A34%3A30.5730196 300w, https://dam.mihomes.com/media/4704715/50420.png 600w" title="youtube" width="24" /></a> </li>
+ <li>
+<a href="https://www.pinterest.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Pinterest" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57192/50399.png" srcset="https://dam.mihomes.com/media/57192/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57192/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="pintrest" width="24" /></a> </li>
+ <li>
+<a href="http://www.houzz.com/pro/mi-homes/m-i-homes" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Houzz" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57193/50399.png" srcset="https://dam.mihomes.com/media/57193/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57193/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="houzz" width="24" /></a> </li>
+ <li>
+<a href="http://portal.hud.gov" class="" rel="me" target="_blank" ><img data-dam-generated alt="Equal Housing" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704718/50399.png" srcset="https://dam.mihomes.com/media/4704718/50399.png?timestamp=2026-05-04T19%3A02%3A51.2896193 300w, https://dam.mihomes.com/media/4704718/50420.png 600w" title="equal-housing" width="28" /></a> </li>
+ </ul>
+ <p class="main-footer-copyright">
+ Copyright 2026, M/I Homes, Inc. All rights reserved.
+ </p>
+ <p id="division-disclaimer" class="main-footer-copyright">
+
+
+ </p>
+ </div>
+</footer>
+</div>
+<div aria-label="Cookie Consent" role="dialog" id="ccpa-modal" class="ccpa-modal">
+ <p>By browsing, you accept our <a href="/policies/terms-of-use">terms of use</a> and <a href="/policies/privacy-policy">privacy policy</a>.</p>
+ <button class="button" type="button">OK</button>
+</div>
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/modals.css?ver=202608092245" rel="stylesheet" fetchpriority="low">
+ <div class="modal modal-wide box" data-modal="" id="privacy-policy-modal">
+ <button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div id="privacy-policy-text"></div>
+</div><div class="modal box box-wide box-paddingless" data-modal="" id="mortgage-payment-calculator-modal">
+<button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+</button>
+ <div id="mortgage-payment-calculator" data-price="441970" data-values="e846cd1f-758d-45c6-87f8-a1274e3a9dd0"></div>
+</div>
+ <div class="modal" data-modal id="search-modal">
+ <form action="/search" class="search-form ">
+ <input class="search-form-input" id="search-form-input" name="search" placeholder="Search M/I Homes"
+ type="search" />
+ <button class="button search-form-clear-button" type="button">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+
+ </button>
+ <button class="button search-form-submit" type="submit">
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ <div class="search-form-results">
+ <div class="search-form-results-list"></div>
+ </div>
+ </form>
+ </div>
+</div>
+
+<!-- toolkit scripts -->
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit_common.js?ver=202608092245"></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit.js?ver=202608092245"></script>
+ <script src="https://cdn.mihomes.com/assets/toolkit/js/product.js?ver=202608092245"></script>
+ <script defer src="https://cdn.mihomes.com/assets/toolkit/js/mortgage-calculator.js?ver=202608092245"></script>
+<script>window.jQuery = window.$ = window.JQUERY;</script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/common.js?ver=202608092245" defer></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/favorites.js?ver=202608092245" defer></script>
+
+
+<script>
+ var w = Math.max(
+ document.body.scrollWidth,
+ document.documentElement.scrollWidth,
+ document.body.offsetWidth,
+ document.documentElement.offsetWidth,
+ document.documentElement.clientWidth
+ );
+ window.setCookie('screen-width', encodeURIComponent(w), { expires: 14, path: "/" })
+ </script>
+
+<script>
+
+
+</script>
+<script type="text/javascript">
+ const millisecondsPerDay = 86400000;
+ const millisecondsPerHour = millisecondsPerDay / 24;
+ const millisecondsPerMinute = millisecondsPerHour / 60;
+ const millisecondsPerSecond = 1000;
+ function addLeadingZero(val) {
+ if(val.toString().length < 2) {
+ return '0'+val;
+ }
+ return val;
+ }
+ function change() {
+ const list = Array.from(document.querySelectorAll('[data-countdown]'));
+ const now = new Date().getTime();
+ list.forEach((el) => {
+ const d = new Date(el.getAttribute('data-countdown')).getTime();
+ let diff = d - now;
+ let days = 0;
+ let hours = 0;
+ let minutes = 0;
+ let seconds = 0;
+ if(diff > 0) {
+ days = Math.floor(diff / millisecondsPerDay);
+ diff = diff - (days * millisecondsPerDay)
+ hours = Math.floor(diff/millisecondsPerHour);
+ diff = diff - (hours * millisecondsPerHour)
+ minutes = Math.floor(diff/millisecondsPerMinute);
+ diff = diff - (minutes * millisecondsPerMinute);
+ seconds = Math.floor(diff/millisecondsPerSecond);
+ }
+ try {
+ el.querySelector('.days').innerText = addLeadingZero(Math.max(days, 0));
+
+ } catch (e) {}
+ try {
+ el.querySelector('.hours').innerText = addLeadingZero(Math.max(hours, 0));
+ } catch(e) {}
+ try {
+ el.querySelector('.minutes').innerText = addLeadingZero(Math.max(minutes, 0));
+ } catch (e) {}
+ try {
+ el.querySelector('.seconds').innerText = addLeadingZero(Math.max(seconds, 0));
+ } catch (e) {}
+
+ });
+ setTimeout(()=>requestAnimationFrame(change), millisecondsPerSecond);
+ }
+ requestAnimationFrame(change);
+</script>
+<script>(function(){function c(){var b=a.contentDocument||(a.contentWindow&&a.contentWindow.document);if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'a29495707fc49d5a',t:'MTc4NjQyMzQ1Mg=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
+
+</html>
\ No newline at end of file
diff --git a/collectors/mi-homes/fixtures/homes/h4.html b/collectors/mi-homes/fixtures/homes/h4.html
new file mode 100644
index 00000000..92ff5db3
--- /dev/null
+++ b/collectors/mi-homes/fixtures/homes/h4.html
@@ -0,0 +1,2044 @@
+
+
+<!doctype html>
+<html lang="en">
+
+<head>
+
+ <script>
+ var G = G || {};
+ G.pingForEmployee = true;
+ </script>
+
+
+<meta name="VIcurrentDateTime" content="639220202558939961" />
+<meta name="VirtualFolder" content="/" />
+<script type="text/javascript" src="/layouts/system/VisitorIdentification.js"></script>
+
+
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" name="viewport">
+ <title>4145 Sedgeview Circle Howell, MI 48843 - M/I Homes</title>
+ <!-- font -->
+ <link rel="preconnect" href="https://cdn.mihomes.com" crossorigin>
+ <link rel="preconnect" href="https://use.typekit.net" crossorigin>
+
+
+
+<!-- Google Tag Script -->
+
+ <script id="js-GTM-script">
+ window.dataLayer = window.dataLayer || [];
+ window.dataLayer.push({
+ "PageType": "Spec",
+ "MIAccount": "No",
+ "Division": "Michigan"
+});
+
+(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=
+'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
+})(window,document,'script','dataLayer','GTM-M2JH3QJ');
+ </script>
+
+
+<!-- End Google Tag Script -->
+ <meta name="referrer" content="always" />
+
+ <link href="https://use.typekit.net/sgt3sit.css" rel="stylesheet" type="text/css" media="print" onload="this.media='all'" id="fonts-loaded" />
+
+<script>
+ try {
+ document.fonts.ready.then(() => {
+ document.body.classList.add('body--fonts-loaded');
+ if(window.setCookiie) {
+ window.setCookie('fonts-cached', 'true', { expires: 7, path: '/' });
+ }
+ });
+ } catch (e) { }
+</script>
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/toolkit.css?ver=202608092245" type="text/css" rel="stylesheet">
+ <!-- conditionally load css for blog -->
+
+ <script>
+ window.environment = "Prod";
+ window.googleApiKey = "REDACTED-THIRD-PARTY-PUBLIC-KEY";
+ </script>
+ <script>
+
+ window.maps =[];
+ window.AssetRootUrl = 'https://cdn.mihomes.com';
+
+ </script>
+
+ <meta name="twitter:card" content="summary" />
+<meta name="twitter:site" content="@mihomes" />
+<meta name="twitter:creator" content="@mihomes">
+
+<meta property="og:site_name" content="https://www.mihomes.com" />
+<meta property="og:type" content="article" />
+<meta property="og:url" content="https://www.mihomes.com/new-homes/michigan/metro-detroit/howell/heritage-square/juliet-plan/4145-sedgeview-circle" />
+
+
+ <meta property="og:title" content="4145 Sedgeview Circle" />
+ <meta name="twitter:title" content="4145 Sedgeview Circle" />
+
+
+
+ <meta property="og:description" content="Welcome to 4145 Sedgeview Circle, Howell, Michigan — a beautiful new construction home built by M/I Homes. This 2-story home offers 2,605 square feet of thoughtfully designed living space, featuring 4 bedrooms, 2 full bathrooms, and 1 half bathroom." />
+ <meta name="twitter:description" content="Welcome to 4145 Sedgeview Circle, Howell, Michigan — a beautiful new construction home built by M/I Homes. This 2-story home offers 2,605 square feet of thoughtfully designed living space, featuring 4 bedrooms, 2 full bathrooms, and 1 half bathroom." />
+ <meta name="description" content="Welcome to 4145 Sedgeview Circle, Howell, Michigan — a beautiful new construction home built by M/I Homes. This 2-story home offers 2,605 square feet of thoughtfully designed living space, featuring 4 bedrooms, 2 full bathrooms, and 1 half bathroom." />
+
+
+
+ <link rel="canonical" href="https://www.mihomes.com/new-homes/michigan/metro-detroit/howell/heritage-square/juliet-plan/4145-sedgeview-circle">
+ <link defer href="https://dam.mihomes.com/media/4179716/50399.png" rel="icon" type="image/vnd.microsoft.icon" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="57x57"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-57x57.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="114x114"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-114x114.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="72x72"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-72x72.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="144x144"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-144x144.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="60x60"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-60x60.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="120x120"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-120x120.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="76x76"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-76x76.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="152x152"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-152x152.png" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-196x196.png"
+ sizes="196x196" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-96x96.png"
+ sizes="96x96" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-32x32.png"
+ sizes="32x32" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-16x16.png"
+ sizes="16x16" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-128.png"
+ sizes="128x128" />
+ <meta name="application-name" content=" " />
+ <meta name="msapplication-TileColor" content="#FFFFFF" />
+ <meta name="msapplication-TileImage" content="https://cdn.mihomes.com/assets/favicons/images/mstile-144x144.png" />
+ <meta name="msapplication-square70x70logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-70x70.png" />
+ <meta name="msapplication-square150x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-150x150.png" />
+ <meta name="msapplication-wide310x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x150.png" />
+ <meta name="msapplication-square310x310logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x310.png" />
+
+ <script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Organization",
+ "foundingDate": "1976",
+ "duns": "071649743",
+ "founders": [
+ {
+ "@type": "Person",
+ "name": "Melvin Schottenstein"
+ },
+ {
+ "@type": "Person",
+ "name": "Irving Schottenstein"
+ }
+ ],
+ "employees": [
+ {
+ "@type": "Person",
+ "name": "Robert H. Schottenstein",
+ "jobTitle": "Chairman, President, and CEO"
+ }
+ ],
+ "sameAs": [
+ "https://www.facebook.com/MIHomesInc",
+ "https://twitter.com/mihomes",
+ "https://www.instagram.com/mihomes/",
+ "https://www.youtube.com/MIHomesInc",
+ "https://www.houzz.com/pro/mi-homes/m-i-homes",
+ "https://www.pinterest.com/mihomes/"
+ ],
+ "logo": {
+ "@type": "ImageObject",
+ "name": "M/I Homes logo",
+ "contentUrl": "https://dam.mihomes.com/media/39664/50399.png"
+ },
+ "name": "M/I Homes",
+ "description": "M/I Homes, Inc. founded in 1976, M/I Homes is one of nation's leading builders of single family homes. M/I has established an exemplary reputation based on a strong commitment to superior customer service, innovative design, quality construction and premium locations. Listed on the New York Stock Exchange, M/I Homes serves a broad segment of the housing market including first-time, move-up, luxury and empty nester buyers.",
+ "url": "https://www.mihomes.com",
+ "isicv4": "4100"
+}</script>
+ <script defer src="https://www.youtube.com/iframe_api"></script>
+ <script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
+ <script>
+ window.addEventListener('load', () => {
+ const swUrl = "https://cdn.mihomes.com/assets/workers/product-page-service-worker.js"
+ navigator.serviceWorker
+ .register(swUrl, {
+ scope: '/'
+ })
+ .then(registration => {
+ console.log('Service Worker registered with scope:', registration.scope);
+ })
+ .catch(error => {
+ console.error('Error during service worker registration:', error);
+ });
+ });
+ </script>
+</head>
+
+<body class="no-js body--home-template">
+
+
+
+<!-- Google Tag Manager --><!-- Global site tag (gtag.js) - Google Analytics -->
+
+ <noscript>
+ <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M2JH3QJ"
+ height="0" width="0" style="display: none; visibility: hidden">
+ </iframe>
+ </noscript>
+
+<!-- End Google Tag Manager GTMM2JH3QJ -->
+<a class="skip-link" href="#content">Skip To Content</a>
+
+<div class="page-container">
+ <div id="overview" data-subnav-page-link="Overview"></div>
+
+
+<header class="main-header">
+ <div class="main-header-inner">
+<a href="/" class="main-header-logo" > <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png">
+<svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg></a> <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png" />
+ <button class="main-header-open-nav" data-open-nav="" title="Toggle Hamburger Navigation">
+ <svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg>
+ <svg class="icon icon-menu" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#menu"></use>
+</svg>
+ </button>
+ <div class="main-header-nav-items" data-a11y-focus data-nav-tray>
+ <nav class="main-nav">
+ <ul>
+ <li>
+
+ <a href="/" class="main-nav-link mobile-only" >Home</a>
+ </li>
+ <li>
+
+ <a href="/new-homes/michigan/metro-detroit" class="main-nav-link find-a-home-link" >Find a Home</a>
+ </li>
+ <li>
+
+ <a href="/about-us/overview" class="main-nav-link " >About</a>
+ </li>
+ <li>
+
+ <a href="/why-mi/overview" class="main-nav-link " >Why M/I</a>
+ </li>
+ <li>
+
+ <a href="/incentives" class="main-nav-link " >Incentives</a>
+ </li>
+ <li>
+
+ <a href="/financing" class="main-nav-link " >Financing</a>
+ </li>
+ <li>
+
+ <a href="/support/warranty" class="main-nav-link " >Warranty</a>
+ </li>
+ <li>
+
+ <a href="/support" class="main-nav-link " >Contact</a>
+ </li>
+ <li>
+
+ <a href="/resources" class="main-nav-link " >Resources</a>
+ </li>
+ </ul>
+ </nav>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ <div class="aux-nav">
+ <ul>
+ <li data-a11y-focus>
+ <a href="/account/register" class="main-nav-link" >Sign Up</a>
+ </li>
+ <li data-a11y-focus>
+ <a href="/account/login" class="main-nav-link" >Log In</a>
+ </li>
+ </ul>
+ </div>
+ </div>
+ <button class="main-header-close-nav" data-close-nav>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ </div>
+</header>
+ <div class="breadcrumbs-bar">
+ <div class="breadcrumbs-wrapper">
+ <nav class="breadcrumbs">
+ <a class="button-plain" href="/">Home</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/michigan/communities">Michigan</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/michigan/metro-detroit/communities">Metro Detroit</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/michigan/metro-detroit/howell">Howell</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/michigan/metro-detroit/howell/heritage-square">The Preserve at Heritage Square</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/michigan/metro-detroit/howell/heritage-square/juliet-plan">Juliet</a>
+ <span class="seperator"> • </span>
+ <span>4145 Sedgeview Circle</span>
+ </nav>
+ </div>
+ </div>
+ <script>var bar = document.querySelector('.breadcrumbs-bar'); bar.setAttribute('style', 'height:' + bar.getBoundingClientRect().height + 'px');</script>
+<script type="application/ld+json">
+{
+"@context": "https://schema.org",
+"@type": "BreadcrumbList",
+"itemListElement":[
+{
+"@type":"ListItem",
+"position":1,
+"name":"Michigan",
+"item":"https://www.mihomes.com/new-homes/michigan/communities"
+},
+{
+"@type":"ListItem",
+"position":2,
+"name":"Metro Detroit",
+"item":"https://www.mihomes.com/new-homes/michigan/metro-detroit/communities"
+},
+{
+"@type":"ListItem",
+"position":3,
+"name":"Howell",
+"item":"https://www.mihomes.com/new-homes/michigan/metro-detroit/howell"
+},
+{
+"@type":"ListItem",
+"position":4,
+"name":"The Preserve at Heritage Square",
+"item":"https://www.mihomes.com/new-homes/michigan/metro-detroit/howell/heritage-square"
+},
+{
+"@type":"ListItem",
+"position":5,
+"name":"Juliet",
+"item":"https://www.mihomes.com/new-homes/michigan/metro-detroit/howell/heritage-square/juliet-plan"
+},
+{
+"@type":"ListItem",
+"position":6,
+"name":"4145 Sedgeview Circle",
+
+}
+]
+}
+</script>
+
+
+ <div class="page-notice-wrapper" id="page-notification"></div>
+ <main class="main-content" id="content" tabindex="0">
+
+<ul class="product-flags">
+</ul>
+<div class="image-banner">
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <img data-dam-generated alt="Juliet Elevation B" height="1600" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/3368927/50421.jpeg?timestamp=2025-07-09T16%3A18%3A18.0799501" srcset="https://dam.mihomes.com/media/3368927/50398.jpeg?timestamp=2025-07-09T16%3A18%3A11.4506902 300w, https://dam.mihomes.com/media/3368927/50397.jpeg?timestamp=2025-07-09T16%3A18%3A09.8266844 600w, https://dam.mihomes.com/media/3368927/50423.jpeg?timestamp=2025-07-09T16%3A18%3A20.5738149 900w, https://dam.mihomes.com/media/3368927/50396.jpeg?timestamp=2025-07-09T16%3A18%3A07.1995018 1200w, https://dam.mihomes.com/media/3368927/50421.jpeg?timestamp=2025-07-09T16%3A18%3A18.0799501 1800w, https://dam.mihomes.com/media/3368927/50422.jpeg?timestamp=2025-07-09T16%3A18%3A18.7710506 2400w" title="DET-Juliet-Various Plans-ElevationB-Gen3-elev_IND" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </a>
+ <div class="image-banner-more">
+ <a href="#product-gallery"
+ data-goto-slide="1"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="1"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5032613/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.0046340" srcset="https://dam.mihomes.com/media/5032613/50398.jpeg?timestamp=2026-07-20T16%3A52%3A38.0061965 300w, https://dam.mihomes.com/media/5032613/50397.jpeg?timestamp=2026-07-20T16%3A52%3A37.1317158 600w, https://dam.mihomes.com/media/5032613/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.7259533 900w, https://dam.mihomes.com/media/5032613/50396.jpeg?timestamp=2026-07-20T16%3A52%3A36.3377543 1200w, https://dam.mihomes.com/media/5032613/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.0046340 1800w, https://dam.mihomes.com/media/5032613/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.8027102 2400w" title="DefaultImage5" width="1800" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="2"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="2"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5032615/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.2481826" srcset="https://dam.mihomes.com/media/5032615/50398.jpeg?timestamp=2026-07-20T16%3A52%3A36.1892855 300w, https://dam.mihomes.com/media/5032615/50397.jpeg?timestamp=2026-07-20T16%3A52%3A34.5471979 600w, https://dam.mihomes.com/media/5032615/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.1638269 900w, https://dam.mihomes.com/media/5032615/50396.jpeg?timestamp=2026-07-20T16%3A52%3A34.3817444 1200w, https://dam.mihomes.com/media/5032615/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.2481826 1800w, https://dam.mihomes.com/media/5032615/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.1681442 2400w" title="DefaultImage4" width="1800" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="3"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="3"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5032614/50421.jpeg?timestamp=2026-07-20T16%3A52%3A33.6343244" srcset="https://dam.mihomes.com/media/5032614/50398.jpeg?timestamp=2026-07-20T16%3A52%3A30.2415539 300w, https://dam.mihomes.com/media/5032614/50397.jpeg?timestamp=2026-07-20T16%3A52%3A28.6642668 600w, https://dam.mihomes.com/media/5032614/50423.jpeg?timestamp=2026-07-20T16%3A52%3A33.6743057 900w, https://dam.mihomes.com/media/5032614/50396.jpeg?timestamp=2026-07-20T16%3A52%3A26.8127284 1200w, https://dam.mihomes.com/media/5032614/50421.jpeg?timestamp=2026-07-20T16%3A52%3A33.6343244 1800w, https://dam.mihomes.com/media/5032614/50422.jpeg?timestamp=2026-07-20T16%3A52%3A32.7348581 2400w" title="DefaultImage3" width="1800" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="4"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="4"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5032612/50421.jpeg?timestamp=2026-07-20T16%3A52%3A31.4712806" srcset="https://dam.mihomes.com/media/5032612/50398.jpeg?timestamp=2026-07-20T16%3A52%3A25.8003343 300w, https://dam.mihomes.com/media/5032612/50397.jpeg?timestamp=2026-07-20T16%3A52%3A23.5354344 600w, https://dam.mihomes.com/media/5032612/50423.jpeg?timestamp=2026-07-20T16%3A52%3A33.3319070 900w, https://dam.mihomes.com/media/5032612/50396.jpeg?timestamp=2026-07-20T16%3A52%3A22.0775131 1200w, https://dam.mihomes.com/media/5032612/50421.jpeg?timestamp=2026-07-20T16%3A52%3A31.4712806 1800w, https://dam.mihomes.com/media/5032612/50422.jpeg?timestamp=2026-07-20T16%3A52%3A32.3397193 2400w" title="DefaultImage1" width="1800" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="third event-click image-banner-total gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <span class="button button-transparent">
+ View 5 Photos
+ </span>
+ </a>
+ </div>
+</div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Juliet Elevation B" height="1600" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/3368927/50421.jpeg?timestamp=2025-07-09T16%3A18%3A18.0799501" srcset="https://dam.mihomes.com/media/3368927/50398.jpeg?timestamp=2025-07-09T16%3A18%3A11.4506902 300w, https://dam.mihomes.com/media/3368927/50397.jpeg?timestamp=2025-07-09T16%3A18%3A09.8266844 600w, https://dam.mihomes.com/media/3368927/50423.jpeg?timestamp=2025-07-09T16%3A18%3A20.5738149 900w, https://dam.mihomes.com/media/3368927/50396.jpeg?timestamp=2025-07-09T16%3A18%3A07.1995018 1200w, https://dam.mihomes.com/media/3368927/50421.jpeg?timestamp=2025-07-09T16%3A18%3A18.0799501 1800w, https://dam.mihomes.com/media/3368927/50422.jpeg?timestamp=2025-07-09T16%3A18%3A18.7710506 2400w" title="DET-Juliet-Various Plans-ElevationB-Gen3-elev_IND" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5032613/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.0046340" srcset="https://dam.mihomes.com/media/5032613/50398.jpeg?timestamp=2026-07-20T16%3A52%3A38.0061965 300w, https://dam.mihomes.com/media/5032613/50397.jpeg?timestamp=2026-07-20T16%3A52%3A37.1317158 600w, https://dam.mihomes.com/media/5032613/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.7259533 900w, https://dam.mihomes.com/media/5032613/50396.jpeg?timestamp=2026-07-20T16%3A52%3A36.3377543 1200w, https://dam.mihomes.com/media/5032613/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.0046340 1800w, https://dam.mihomes.com/media/5032613/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.8027102 2400w" title="DefaultImage5" width="1800" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5032615/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.2481826" srcset="https://dam.mihomes.com/media/5032615/50398.jpeg?timestamp=2026-07-20T16%3A52%3A36.1892855 300w, https://dam.mihomes.com/media/5032615/50397.jpeg?timestamp=2026-07-20T16%3A52%3A34.5471979 600w, https://dam.mihomes.com/media/5032615/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.1638269 900w, https://dam.mihomes.com/media/5032615/50396.jpeg?timestamp=2026-07-20T16%3A52%3A34.3817444 1200w, https://dam.mihomes.com/media/5032615/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.2481826 1800w, https://dam.mihomes.com/media/5032615/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.1681442 2400w" title="DefaultImage4" width="1800" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5032614/50421.jpeg?timestamp=2026-07-20T16%3A52%3A33.6343244" srcset="https://dam.mihomes.com/media/5032614/50398.jpeg?timestamp=2026-07-20T16%3A52%3A30.2415539 300w, https://dam.mihomes.com/media/5032614/50397.jpeg?timestamp=2026-07-20T16%3A52%3A28.6642668 600w, https://dam.mihomes.com/media/5032614/50423.jpeg?timestamp=2026-07-20T16%3A52%3A33.6743057 900w, https://dam.mihomes.com/media/5032614/50396.jpeg?timestamp=2026-07-20T16%3A52%3A26.8127284 1200w, https://dam.mihomes.com/media/5032614/50421.jpeg?timestamp=2026-07-20T16%3A52%3A33.6343244 1800w, https://dam.mihomes.com/media/5032614/50422.jpeg?timestamp=2026-07-20T16%3A52%3A32.7348581 2400w" title="DefaultImage3" width="1800" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5032612/50421.jpeg?timestamp=2026-07-20T16%3A52%3A31.4712806" srcset="https://dam.mihomes.com/media/5032612/50398.jpeg?timestamp=2026-07-20T16%3A52%3A25.8003343 300w, https://dam.mihomes.com/media/5032612/50397.jpeg?timestamp=2026-07-20T16%3A52%3A23.5354344 600w, https://dam.mihomes.com/media/5032612/50423.jpeg?timestamp=2026-07-20T16%3A52%3A33.3319070 900w, https://dam.mihomes.com/media/5032612/50396.jpeg?timestamp=2026-07-20T16%3A52%3A22.0775131 1200w, https://dam.mihomes.com/media/5032612/50421.jpeg?timestamp=2026-07-20T16%3A52%3A31.4712806 1800w, https://dam.mihomes.com/media/5032612/50422.jpeg?timestamp=2026-07-20T16%3A52%3A32.3397193 2400w" title="DefaultImage1" width="1800" class="image-banner-item-more" />
+ </span>
+ </div>
+
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <div class="modal fullscreen-modal gallery-modal gallery-modal--simple" data-modal="" id="simple-gallery-modal" data-track-views="">
+ <div class="gallery-modal__list-container">
+ <div class="gallery-modal__controls">
+ <button class="close-icon" data-modal-close>
+ <svg class="icon icon-close-gallery" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close-gallery"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__list-container-arrows">
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="prev" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="4" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="next" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="0" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__controls gallery-modal__controls__zoom">
+ <button class="close-icon" data-gallery="simple-gallery-modal" data-zoom>
+ <svg class="icon icon-zoom" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#zoom"></use>
+</svg>
+ </button>
+ </div>
+ <ul class="gallery-modal__list no-transition" style="transform: translateX(-200%);">
+
+ <li class="gallery-slide-container" data-slide-id="0" data-image="https://dam.mihomes.com/media/3368927/50398.jpeg?timestamp=2025-07-09T16%3A18%3A11.4506902 300w, https://dam.mihomes.com/media/3368927/50397.jpeg?timestamp=2025-07-09T16%3A18%3A09.8266844 600w, https://dam.mihomes.com/media/3368927/50423.jpeg?timestamp=2025-07-09T16%3A18%3A20.5738149 900w, https://dam.mihomes.com/media/3368927/50396.jpeg?timestamp=2025-07-09T16%3A18%3A07.1995018 1200w, https://dam.mihomes.com/media/3368927/50421.jpeg?timestamp=2025-07-09T16%3A18%3A18.0799501 1800w, https://dam.mihomes.com/media/3368927/50422.jpeg?timestamp=2025-07-09T16%3A18%3A18.7710506 2400w" data-caption="Juliet Elevation B" data-count="<strong>1</strong> of <strong>5</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Juliet Elevation B" height="1600" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/3368927/50421.jpeg?timestamp=2025-07-09T16%3A18%3A18.0799501" srcset="https://dam.mihomes.com/media/3368927/50398.jpeg?timestamp=2025-07-09T16%3A18%3A11.4506902 300w, https://dam.mihomes.com/media/3368927/50397.jpeg?timestamp=2025-07-09T16%3A18%3A09.8266844 600w, https://dam.mihomes.com/media/3368927/50423.jpeg?timestamp=2025-07-09T16%3A18%3A20.5738149 900w, https://dam.mihomes.com/media/3368927/50396.jpeg?timestamp=2025-07-09T16%3A18%3A07.1995018 1200w, https://dam.mihomes.com/media/3368927/50421.jpeg?timestamp=2025-07-09T16%3A18%3A18.0799501 1800w, https://dam.mihomes.com/media/3368927/50422.jpeg?timestamp=2025-07-09T16%3A18%3A18.7710506 2400w" title="DET-Juliet-Various Plans-ElevationB-Gen3-elev_IND" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="1" data-image="https://dam.mihomes.com/media/5032613/50398.jpeg?timestamp=2026-07-20T16%3A52%3A38.0061965 300w, https://dam.mihomes.com/media/5032613/50397.jpeg?timestamp=2026-07-20T16%3A52%3A37.1317158 600w, https://dam.mihomes.com/media/5032613/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.7259533 900w, https://dam.mihomes.com/media/5032613/50396.jpeg?timestamp=2026-07-20T16%3A52%3A36.3377543 1200w, https://dam.mihomes.com/media/5032613/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.0046340 1800w, https://dam.mihomes.com/media/5032613/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.8027102 2400w" data-caption="Lifestyle" data-count="<strong>2</strong> of <strong>5</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5032613/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.0046340" srcset="https://dam.mihomes.com/media/5032613/50398.jpeg?timestamp=2026-07-20T16%3A52%3A38.0061965 300w, https://dam.mihomes.com/media/5032613/50397.jpeg?timestamp=2026-07-20T16%3A52%3A37.1317158 600w, https://dam.mihomes.com/media/5032613/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.7259533 900w, https://dam.mihomes.com/media/5032613/50396.jpeg?timestamp=2026-07-20T16%3A52%3A36.3377543 1200w, https://dam.mihomes.com/media/5032613/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.0046340 1800w, https://dam.mihomes.com/media/5032613/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.8027102 2400w" title="DefaultImage5" width="1800" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="2" data-image="https://dam.mihomes.com/media/5032615/50398.jpeg?timestamp=2026-07-20T16%3A52%3A36.1892855 300w, https://dam.mihomes.com/media/5032615/50397.jpeg?timestamp=2026-07-20T16%3A52%3A34.5471979 600w, https://dam.mihomes.com/media/5032615/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.1638269 900w, https://dam.mihomes.com/media/5032615/50396.jpeg?timestamp=2026-07-20T16%3A52%3A34.3817444 1200w, https://dam.mihomes.com/media/5032615/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.2481826 1800w, https://dam.mihomes.com/media/5032615/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.1681442 2400w" data-caption="Lifestyle" data-count="<strong>3</strong> of <strong>5</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5032615/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.2481826" srcset="https://dam.mihomes.com/media/5032615/50398.jpeg?timestamp=2026-07-20T16%3A52%3A36.1892855 300w, https://dam.mihomes.com/media/5032615/50397.jpeg?timestamp=2026-07-20T16%3A52%3A34.5471979 600w, https://dam.mihomes.com/media/5032615/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.1638269 900w, https://dam.mihomes.com/media/5032615/50396.jpeg?timestamp=2026-07-20T16%3A52%3A34.3817444 1200w, https://dam.mihomes.com/media/5032615/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.2481826 1800w, https://dam.mihomes.com/media/5032615/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.1681442 2400w" title="DefaultImage4" width="1800" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="3" data-image="https://dam.mihomes.com/media/5032614/50398.jpeg?timestamp=2026-07-20T16%3A52%3A30.2415539 300w, https://dam.mihomes.com/media/5032614/50397.jpeg?timestamp=2026-07-20T16%3A52%3A28.6642668 600w, https://dam.mihomes.com/media/5032614/50423.jpeg?timestamp=2026-07-20T16%3A52%3A33.6743057 900w, https://dam.mihomes.com/media/5032614/50396.jpeg?timestamp=2026-07-20T16%3A52%3A26.8127284 1200w, https://dam.mihomes.com/media/5032614/50421.jpeg?timestamp=2026-07-20T16%3A52%3A33.6343244 1800w, https://dam.mihomes.com/media/5032614/50422.jpeg?timestamp=2026-07-20T16%3A52%3A32.7348581 2400w" data-caption="Lifestyle" data-count="<strong>4</strong> of <strong>5</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5032614/50421.jpeg?timestamp=2026-07-20T16%3A52%3A33.6343244" srcset="https://dam.mihomes.com/media/5032614/50398.jpeg?timestamp=2026-07-20T16%3A52%3A30.2415539 300w, https://dam.mihomes.com/media/5032614/50397.jpeg?timestamp=2026-07-20T16%3A52%3A28.6642668 600w, https://dam.mihomes.com/media/5032614/50423.jpeg?timestamp=2026-07-20T16%3A52%3A33.6743057 900w, https://dam.mihomes.com/media/5032614/50396.jpeg?timestamp=2026-07-20T16%3A52%3A26.8127284 1200w, https://dam.mihomes.com/media/5032614/50421.jpeg?timestamp=2026-07-20T16%3A52%3A33.6343244 1800w, https://dam.mihomes.com/media/5032614/50422.jpeg?timestamp=2026-07-20T16%3A52%3A32.7348581 2400w" title="DefaultImage3" width="1800" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="4" data-image="https://dam.mihomes.com/media/5032612/50398.jpeg?timestamp=2026-07-20T16%3A52%3A25.8003343 300w, https://dam.mihomes.com/media/5032612/50397.jpeg?timestamp=2026-07-20T16%3A52%3A23.5354344 600w, https://dam.mihomes.com/media/5032612/50423.jpeg?timestamp=2026-07-20T16%3A52%3A33.3319070 900w, https://dam.mihomes.com/media/5032612/50396.jpeg?timestamp=2026-07-20T16%3A52%3A22.0775131 1200w, https://dam.mihomes.com/media/5032612/50421.jpeg?timestamp=2026-07-20T16%3A52%3A31.4712806 1800w, https://dam.mihomes.com/media/5032612/50422.jpeg?timestamp=2026-07-20T16%3A52%3A32.3397193 2400w" data-caption="Lifestyle" data-count="<strong>5</strong> of <strong>5</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5032612/50421.jpeg?timestamp=2026-07-20T16%3A52%3A31.4712806" srcset="https://dam.mihomes.com/media/5032612/50398.jpeg?timestamp=2026-07-20T16%3A52%3A25.8003343 300w, https://dam.mihomes.com/media/5032612/50397.jpeg?timestamp=2026-07-20T16%3A52%3A23.5354344 600w, https://dam.mihomes.com/media/5032612/50423.jpeg?timestamp=2026-07-20T16%3A52%3A33.3319070 900w, https://dam.mihomes.com/media/5032612/50396.jpeg?timestamp=2026-07-20T16%3A52%3A22.0775131 1200w, https://dam.mihomes.com/media/5032612/50421.jpeg?timestamp=2026-07-20T16%3A52%3A31.4712806 1800w, https://dam.mihomes.com/media/5032612/50422.jpeg?timestamp=2026-07-20T16%3A52%3A32.3397193 2400w" title="DefaultImage1" width="1800" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ </ul>
+ <div class="gallery-slide__footer">
+ <span class="gallery-slide__title title-caption"></span>
+ <div class="gallery-slide__share-buttons">
+ <span class="count"></span>
+ </div>
+ </div>
+ </div>
+ </div>
+</div><script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Product",
+ "additionalType": "https://schema.org/SingleFamilyResidence",
+ "name": "4145 Sedgeview Circle",
+ "sku": "YM4sY0l--kmKeeaFHGPgxQ",
+ "description": "Welcome to 4145 Sedgeview Circle, Howell, Michigan — a beautiful new construction home built by M/I Homes. This 2-story home offers 2,605 square feet of thoughtfully designed living space, featuring 4 bedrooms, 2 full bathrooms, and 1 half bathroom.",
+ "image": [
+ "https://dam.mihomes.com/media/3368927/50421.jpeg",
+ "https://dam.mihomes.com/media/5032614/50421.jpeg",
+ "https://dam.mihomes.com/media/5032613/50421.jpeg",
+ "https://dam.mihomes.com/media/5032612/50421.jpeg",
+ "https://dam.mihomes.com/media/5032611/50421.jpeg",
+ "https://dam.mihomes.com/media/5032615/50421.jpeg"
+ ],
+ "url": "https://www.mihomes.com/new-homes/michigan/metro-detroit/howell/heritage-square/juliet-plan/4145-sedgeview-circle",
+ "brand": {
+ "@type": "Organization",
+ "parentOrganization": {
+ "@type": "Organization",
+ "name": "M/I Homes"
+ },
+ "name": "The Preserve at Heritage Square"
+ },
+ "address": {
+ "@type": "PostalAddress",
+ "streetAddress": "4145 Sedgeview Circle",
+ "addressLocality": "Howell",
+ "addressRegion": "MI",
+ "postalCode": "48843",
+ "addressCountry": "US"
+ },
+ "geo": {
+ "@type": "GeoCoordinates",
+ "latitude": 42.603321,
+ "longitude": -83.99535
+ },
+ "telephone": "+12488364526",
+ "offers": {
+ "@type": "Offer",
+ "url": "/new-homes/michigan/metro-detroit/howell/heritage-square/juliet-plan/4145-sedgeview-circle",
+ "price": "476150.00",
+ "priceCurrency": "USD",
+ "priceValidUntil": "08-12-2026",
+ "itemCondition": "https://schema.org/NewCondition",
+ "availability": "https://schema.org/InStock"
+ },
+ "model": "https://www.mihomes.com/new-homes/michigan/metro-detroit/howell/heritage-square/juliet-plan",
+ "numberOfBedrooms": {
+ "@type": "Integer",
+ "value": 4
+ },
+ "numberOfFullBathrooms": {
+ "@type": "Integer",
+ "value": 2
+ },
+ "numberOfPartialBathrooms": {
+ "@type": "Integer",
+ "value": 1
+ },
+ "petsAllowed": true,
+ "yearBuilt": "2026",
+ "floorSize": {
+ "@type": "QuantitativeValue",
+ "value": 2605,
+ "unitCode": "FTK"
+ }
+}</script>
+<div class="modals" data-modal-container aria-hidden="true">
+ <div class="modal box" data-modal id="signup-modal">
+ <button class="modal-close" data-modal-close>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+
+ <h2 class="h1 alt">Sign up for an M/I Homes account</h2>
+ <p>Save your favorite home plans and communities, compare home plans and share your dream home with sales associates and real estate agents.</p>
+ <p>
+ Already a member?
+ <a class="button-plain" href="/account/login">Log In to your account »</a>
+ </p>
+ <a class="button button-wide" href="/account/register">
+ <span class="button-text">
+ Sign up with email
+ </span>
+ </a>
+ </div>
+</div>
+
+<div class="product-header" data-yes="true">
+
+ <div class="product-header-row product-header__top">
+
+ <div class="product-header-centered ">
+ <div>
+ <a href="/new-homes/michigan/metro-detroit/howell/heritage-square" class="button-plain">
+ The Preserve at Heritage Square
+ </a>
+
+ <h1 class="header-seo-h2">
+ 4145 Sedgeview Circle, Howell, MI 48843
+ <button class="aux-nav-link button-favorite-product gami-favorite-save" data-favorite-type="Home" data-favorite-id="632cce60-7e49-49fa-8a79-e6851c63e0c5" data-favorite-fav-id="632cce60-7e49-49fa-8a79-e6851c63e0c5" data-add-favorite>
+ <svg class="icon icon-favorite" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#favorite"></use>
+</svg>
+ <span class="aux-nav-link-action-text">
+ Favorite
+ </span>
+ </button>
+ </h1>
+ </div>
+
+ <div class="product-header__actions">
+ <a class="button button-mobile-link button-virtual-tour event-click" href="https://my.matterport.com/show/?m=1wNkAXq1Vk3" target="_blank" data-event-category=VirtualTour
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <span class="button-text">Virtual Tour</span>
+ </a>
+ </div>
+ </div>
+ </div>
+
+ <div class="product-header-row">
+ <div class="product-header-centered tooptip-container">
+ <div>
+ <dl>
+ <dt>Ready date:</dt>
+ <dd>
+ <strong class="current-size">
+ October 23, 2026
+ </strong>
+ </dd>
+ </dl>
+ </div>
+ <div class="product-header-price">
+
+ Price:
+ <span content="476150">$476,150</span>
+
+ (
+ <span data-open-modal="mortgage-payment-calculator-modal" data-tooltip="Click estimate to see how we calculate this monthly payment" data-annualinsurance="0" data-taxrate="0" data-interestrate="3.875" data-downpayment="20" data-price="476150" data-mortgage-monthly-payment tabindex="0" class="product-header-price-monthly"></span>
+ )
+
+
+ <span class="product-header-calculator">
+ <a class="button-plain button-plain-icon small button-icon-right gami-mortcalc-view" data-open-modal="mortgage-payment-calculator-modal">
+ <svg class="icon icon-calculator" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#calculator"></use>
+</svg>
+ Estimate Your Monthly Payment
+ </a>
+ </span>
+ </div>
+ </div>
+ </div>
+</div> <a rel="noopener" href="/new-homes/michigan/metro-detroit/howell/heritage-square/plat map?lot=238145000018" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=4033 Heritage Square Drive, Howell Township, MI 48843&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=R1we3LiJUjP3v6UK_L3JkDk0j54=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+<div class="product-header-centered product-header-centered--contact-card-only">
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Heritage Square</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://www.google.com/maps/dir/?api=1&destination=42.603554,-83.994248">
+ 4033 Heritage Square Drive<br>Howell, MI 48843
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+</div><div class="product-header">
+ <div class="product-header product-header-navigation">
+ <nav class="product-header-subnav" data-subnav="">
+ <div class="product-header-subnav-wrapper">
+ <div class="product-header-subnav-mobile-bottom">
+ <a class="button button-contact-us" href="/support/sales">
+ <span class="button-text">
+ Contact Us
+ </span>
+ </a>
+ </div>
+
+
+ <a class="product-header-subnav-toggle subnav-link" data-subnav-toggle="">
+ <span class="text" data-subnav-text="">Overview</span>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </a>
+
+ <ul class="product-header-subnav-links" data-subnav-links=""></ul>
+ </div>
+ </nav>
+
+ <div class="product-header-subnav-spacer"></div>
+
+ <a href="#overview" class="product-header__back-to-top is-hidden" data-back-to-top>
+ <div class="arrow arrow--up"></div>
+ </a>
+ </div>
+</div><section class="content-inner-with-sidebar content-inner-with-sidebar-right">
+
+
+ <div class="content-inner-content">
+
+
+
+
+
+<section class="plan-specification">
+ <h2 class="plan-specification__header">
+ About 4145 Sedgeview Circle
+ </h2>
+ <a class="plan-specification__get-directions button-plain button-plain-alt negative-top gami-directions-exit" target="_blank" href="https://www.google.com/maps/search/?api=1&query=42.603321,-83.99535">Get Directions</a>
+ <ul class="plan-specification__list">
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sq-ft" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sq-ft"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">square feet</span>
+ <strong class="plan-specification-item__value">
+ 2,605
+ </strong>
+ </div>
+ </li>
+ <li class="stories-specification">
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-homes" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#homes"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">stories</span>
+ <strong class="plan-specification-item__value">
+ 2
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-bed" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#bed"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">bedrooms</span>
+ <strong class="plan-specification-item__value">
+ 4
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-shower" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#shower"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">full bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 2
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sink" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sink"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">half bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 1
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-car" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#car"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">garages</span>
+ <strong class="plan-specification-item__value">
+ 2<span> ½</span>
+ <span data-tooltip="The most common approach to a home's garage, the front load garage incorporates the garage entry into a home's front elevation.">(Front Load)</span>
+
+ </strong>
+ </div>
+ </li>
+ </ul>
+</section>
+
+<div class="overview-table">
+ <div class="overview-table-table">
+ <dl>
+ <dt>City</dt>
+ <dd>Howell, MI</dd>
+
+ <dt>Owner's Suite</dt>
+ <dd>Second Floor</dd>
+
+ <dt>County</dt>
+ <dd>Livingston</dd>
+
+ <dt>Home Type</dt>
+ <dd>Single Family Home</dd>
+
+ <dt>School District</dt>
+ <dd>Howell Public Schools</dd>
+
+ <dt>Foundation Type</dt>
+ <dd>Full Basement</dd>
+
+ <dt>Home Plan</dt>
+ <dd>Juliet</dd>
+
+
+ <dt>Homesite</dt>
+ <dd>18</dd>
+
+ <dt> Base Plan Width & Depth</dt>
+ <dd>38'0" x 46'0" </dd>
+ </dl>
+ </div>
+</div> <h2>
+ New 4-Bedroom Home for Sale in Howell, Michigan
+ </h2>
+ <div class="content-inner-content__capped-mobile-content">
+ <html>
+ <head>
+ </head>
+ <body>
+ <p>Welcome to 4145 Sedgeview Circle, Howell, Michigan — a beautiful new construction home built by M/I Homes. This 2-story home offers 2,605 square feet of thoughtfully designed living space, featuring 4 bedrooms, 2 full bathrooms, and 1 half bathroom.</p>
+ <p>Step inside to discover an open-concept living space that creates a seamless flow between the main gathering areas, perfect for both everyday living and entertaining. The quality of design is evident throughout, with carefully selected finishes and well-proportioned rooms that maximize comfort and functionality.</p>
+ <p><strong>Key Features:</strong></p>
+ <ul>
+ <li>4 spacious bedrooms</li>
+ <li>2,605 square feet of living space</li>
+ <li>2.5-car garage</li>
+ <li>First-floor study</li>
+ <li>Loft space</li>
+ <li>Full basement</li>
+ </ul>
+ <p>The owner's bedroom provides a comfortable retreat with an en-suite bathroom designed for relaxation. Additional bedrooms offer generous space for family, guests, or home office needs.</p>
+ <p>This home is situated in The Preserve at Heritage Square, a well-planned neighborhood with convenient proximity to local parks and outdoor recreation. The surrounding area provides a welcoming setting with easy access to green spaces where residents can enjoy walking trails, playgrounds, and natural scenery.</p>
+ <p>With its quality construction, intelligent design, and desirable setting, this home at 4145 Sedgeview Circle delivers an outstanding living experience.</p>
+ <script>(function(){function c(){var b=a.contentDocument||(a.contentWindow&&a.contentWindow.document);if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'a29495863bbab26d',t:'MTc4NjQyMzQ1NQ=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
+</html>
+
+ <!-- and done -->
+ <h3>
+ About the Community
+ </h3>
+ <p>
+ The Preserve at Heritage Square in Howell offers a welcoming community just south of I‑96 and minutes from Downtown Howell. This convenient Livingston County location provides easy access to M‑59 and nearby cities, making it ideal for busy households.
+
+The community features 2‑story single family homes with open layouts, flexible lofts, and thoughtful storage, creating comfortable spaces that adapt to everyday life.
+
+Surrounded by natural beauty, residents can enjoy nearby parks, lakes, golf courses, and local favorites like the Howell Nature Center and seasonal community events. Families benefit from the Howell Public School District, known for strong academics, diverse programs, and wide-ranging athletics.
+
+With its blend of small‑town charm, outdoor recreation, and modern home designs, The Preserve at Heritage Square offers a balanced lifestyle in a highly desirable Howell setting.
+ <br />
+ <a class="button-plain button-plain-alt" href="/new-homes/michigan/metro-detroit/howell/heritage-square">Learn more about this community »</a>
+ </p>
+ </div>
+ <button class="faq__question color-aqua" aria-expanded="false" data-read-more="">
+ <span class="faq__icon-wrapper">
+ <span class="faq__icon">
+ <svg class="icon icon-arrow" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#arrow"></use>
+</svg>
+ </span>
+ </span>
+ <span data-read-more-collapsed="">Read More</span>
+ <span data-read-more-expanded="">Show Less</span>
+ <span class="show-hide-text hidden-text">Show</span>
+ </button>
+ <div class="matterport-wrapper">
+ <iframe loading="lazy" class="box-full" width="803" height="480" src="https://my.matterport.com/show/?m=1wNkAXq1Vk3" frameborder="0" allowfullscreen allow="vr" style="align-self: center" data-subnav-page-link="3D Tour" id="3dTour"></iframe>
+ </div>
+
+
+ <h4>Upcoming Events</h4>
+ <article class="preview-box">
+ <div class="preview-box-link">
+ <div class="preview-box__image preview-box__preview one-fifth">
+ <a href="/new-homes/michigan/metro-detroit/events/new-floorplan-home-tour-the-everly">
+ <img data-dam-generated alt="Build a Birdhouse" height="5000" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4772355/50421.jpeg?timestamp=2026-05-20T20%3A39%3A40.9829364" srcset="https://dam.mihomes.com/media/4772355/50398.jpeg?timestamp=2026-05-20T20%3A39%3A25.7546920 300w, https://dam.mihomes.com/media/4772355/50397.jpeg?timestamp=2026-05-20T20%3A39%3A15.8774977 600w, https://dam.mihomes.com/media/4772355/50423.jpeg?timestamp=2026-05-20T20%3A39%3A52.8364918 900w" title="NASH-BuildaBirdhouse-CardImage" width="7500" class="cover-image" maxwidth="900" />
+ </a>
+ </div>
+ <div class="preview-box__content -multiple-times">
+ <h3 class="h3 preview-box__header">
+ New Home Plan Tour - The Everly
+ </h3>
+ <time class="preview-box__time" datetime="2026-08-15T12:00:00">Aug 15, 2026, 12:00 PM - 2:00 PM</time>
+ <p class="preview-box__text"><p>We're opening the doors to our brand-new Everly home plan located in Heritage Farms. Join us for an exclusive First Look of this thoughtfully designed home with stylish finishes and spacious living areas, including a first-floor guest suite.</p></p>
+ <p>
+ <a class="button-plain button-plain-alt" href="/new-homes/michigan/metro-detroit/events/new-floorplan-home-tour-the-everly">RSVP for this event »</a>
+ </p>
+ </div>
+ </div>
+ </article>
+ <a class="button-plain button-plain-alt negative-top" href="/new-homes/michigan/metro-detroit/events">RSVP for this event »</a>
+
+ </div>
+
+ <div class="content-sidebar-right">
+ <a rel="noopener" href="/new-homes/michigan/metro-detroit/howell/heritage-square/plat map?lot=238145000018" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=4033 Heritage Square Drive, Howell Township, MI 48843&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=R1we3LiJUjP3v6UK_L3JkDk0j54=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Heritage Square</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://www.google.com/maps/dir/?api=1&destination=42.603554,-83.994248">
+ 4033 Heritage Square Drive<br>Howell, MI 48843
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+
+
+ <figure class="lead-form lead-form-sidebar lead-form-sidebar--compact lead-form-sidebar-signup">
+ <div class="lead-form-container">
+ <div id="lead-sidebar-header" class="lead-form-sidebar-header lead-form-sidebar-header-image">
+ <div id="isa-information" data-sidebar-section="1">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-1">
+ <img data-dam-generated alt="gpurpura@mihomes.com-0811202406.jpg" height="128" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/2180984/50421.jpeg?timestamp=2024-08-11T10%3A57%3A41.9901446" srcset="https://dam.mihomes.com/media/2180984/50398.jpeg?timestamp=2024-08-11T10%3A57%3A42.7617682 300w, https://dam.mihomes.com/media/2180984/50397.jpeg?timestamp=2024-08-11T10%3A57%3A40.9371427 600w, https://dam.mihomes.com/media/2180984/50423.jpeg?timestamp=2024-08-11T10%3A57%3A34.9015758 900w, https://dam.mihomes.com/media/2180984/50396.jpeg?timestamp=2024-08-11T10%3A57%3A40.3976706 1200w, https://dam.mihomes.com/media/2180984/50421.jpeg?timestamp=2024-08-11T10%3A57%3A41.9901446 1800w, https://dam.mihomes.com/media/2180984/50422.jpeg?timestamp=2024-08-11T10%3A57%3A45.8132370 2400w" title="gpurpura@mihomes.com-0811202406" width="128" class="cover-image" />
+ </div>
+ </div>
+ <h3 class="">Have questions for us?</h3>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=2488364526'>(248) 836-4526</a>
+ </p>
+ </div>
+ <div id="form-agent-header" class="lead-form-sidebar-section right" style="display: none;">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+
+ </div>
+ <div class="lead-form-sidebar-form" data-lead-form-sidebar="">
+ <div class="lead-form-sidebar-errors"></div>
+<form action="/api/LeadGenFormSidebar/LeadGenFormSidebar" data-gami-event="gami-form-question" data-parsley-validate="" data-sidebar-hidden-required="" data-sidebar-nav-check="visit_sidebar" method="post" name="basic_sidebar" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="410c3048-b666-4e88-b983-52502ab0a337" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Inventory" /><input id="PostType" name="PostType" type="hidden" value="sidebar" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:16 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="ItemId" name="ItemId" type="hidden" value="632cce60-7e49-49fa-8a79-e6851c63e0c5" /><input id="HomeType" name="HomeType" type="hidden" value="Single Family Home" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 443px;">
+ <div class="align-left center lead-form-sidebar-section" data-cta="Request Information" data-sidebar-section="0">
+ <div>
+
+ <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="">
+ </div>
+
+ <div class="form-field no-label-errors" style="margin-top: 1px">
+ <label for="fullname_sidebar"></label>
+ <input type="text"
+ name="FormFullName"
+ id="fullname_sidebar"
+ placeholder="Full Name"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required." data-parsley-trigger="blur"
+ maxlength="60"
+ data-parsley-filter-emoji=""
+ >
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormEmailAddress"
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="phone_sidebar">Phone Number</label>
+ <input class="gami-tel" type="tel"
+ autocomplete="tel-national"
+ name="FormPhoneNumber"
+ id="phone_sidebar"
+ placeholder="Phone Number" +
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ value=""
+
+ data-parsley-phone-number="" data-parsley-trigger="blur"
+ maxlength="25">
+ </div>
+
+ <div class="form-field no-label-errors">
+ <label for="comments_sidebar">Questions or Comments</label>
+ <textarea rows="5"
+ name="FormComments"
+ id="comments_sidebar"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000">Please send me information about 4145 Sedgeview Circle</textarea>
+ </div>
+ </div>
+ <div>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox hide" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input data-parsley-multiple="visit_sidebar" name="visit_sidebar" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to plan a visit</span>
+ </label>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormEmailOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSAssociateCommunicationsOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" data-sidebar-section="1" tabindex="-1">
+ <div>
+ <h4>Plan a visit</h4>
+ <p>Select your preferred day and time and we’ll help set up the perfect visit.</p>
+ </div>
+ <div>
+ <div class="select no-label-errors">
+ <label for="tripday_sidebar"> </label>
+ <div class="select-wrap">
+<select data-nested-select="#select-triptime-block-sidebar" data-parsley-group="visit_sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+
+ <div class="select no-label-errors">
+ <label for="triptime_sidebar"> </label>
+ <div class="select-wrap">
+<select data-parsley-group="visit_sidebar" id="triptime_sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" dta-cta="Continue" data-sidebar-section="2" data-agent-section tabindex="-1">
+
+ <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0">
+ <div class="align-left center lead-form-sidebar-section" data-sidebar-section="0">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button form-submit">
+ <span class="button-text">Request Information</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-left lead-form-sidebar-section right" data-sidebar-section="1">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit" disabled tabindex="-1">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="2">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button" disabled tabindex="-1">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit" disabled tabindex="-1">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+ </div>
+ </div>
+</form> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 25px;">
+ <div class="align-center center lead-form-sidebar-section" data-sidebar-section="0">
+ <button class="button-plain small" data-open-modal="privacy-policy-modal" href="javascript:void()">Privacy Policy</button>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="1">
+ <button class="button-plain small" data-sidebar-nav="0" tabindex="-1">« Go Back</button>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <!-- THANK YOU MESSAGE -->
+ <div class="lead-form-container-success">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-success lead-form-sidebar-header-image">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" data-parsley-validate="" method="POST" name="thanksyou_sidebar" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+ <div>
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+ <div class="form-field form-field-password">
+ <label for="password"> </label>
+ <input data-parsley-required-message="Password is required." data-parsley-valid-password="" id="password" minlength="8" name="password" placeholder="Password" required="" type="password" data-parsley-filter-emoji="" data-parsley-trigger="blur">
+ <button class="password-input-change" data-input-change="" type="button">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)" tabindex="0">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">
+ Create Account
+ </span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ <h3 class="h3 preview-box__header">
+ Incentives
+ </h3>
+ <a class="incentive incentive__sidebar--photo" href="/new-homes/michigan/metro-detroit/incentives/back-to-school">
+ <div class="incentive-background">
+ <img data-dam-generated alt="B2S Card Image" height="10000" loading="eager" sizes="(min-width: 64rem) 328px, 100vw" src="https://dam.mihomes.com/media/5006163/50421.jpeg" srcset="https://dam.mihomes.com/media/5006163/50398.jpeg?timestamp=2026-07-14T16%3A20%3A54.9063606 300w, https://dam.mihomes.com/media/5006163/50397.jpeg?timestamp=2026-07-14T16%3A22%3A02.1047379 600w, https://dam.mihomes.com/media/5006163/50423.jpeg?timestamp=2026-07-14T16%3A21%3A39.2423287 900w, https://dam.mihomes.com/media/5006163/50396.jpeg?timestamp=2026-07-14T16%3A20%3A53.3841171 1200w, https://dam.mihomes.com/media/5006163/50421.jpeg?timestamp=2026-07-14T16%3A21%3A21.8599883 1800w, https://dam.mihomes.com/media/5006163/50422.jpeg?timestamp=2026-07-14T16%3A21%3A57.5233139 2400w" title="202001 DET BTS Card" width="15000" class="cover-image cover-image--abs" />
+ <div class="incentive__badge">
+<img data-dam-generated alt="B2S Badge Icon" height="2083" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/5006162/50421.jpeg?timestamp=2026-07-14T16%3A20%3A19.3122864" srcset="https://dam.mihomes.com/media/5006162/50398.jpeg?timestamp=2026-07-14T16%3A20%3A14.1855935 300w, https://dam.mihomes.com/media/5006162/50397.jpeg?timestamp=2026-07-14T16%3A20%3A12.9509444 600w, https://dam.mihomes.com/media/5006162/50423.jpeg?timestamp=2026-07-14T16%3A20%3A18.4335783 900w, https://dam.mihomes.com/media/5006162/50396.jpeg?timestamp=2026-07-14T16%3A20%3A11.5147671 1200w, https://dam.mihomes.com/media/5006162/50421.jpeg?timestamp=2026-07-14T16%3A20%3A19.3122864 1800w, https://dam.mihomes.com/media/5006162/50422.jpeg?timestamp=2026-07-14T16%3A20%3A20.6764206 2400w" title="202001 DET Back to School Badge" width="2083" class="incentive__badge-background" maxwidth="2400" /> </div>
+ </div>
+ <div class="incentive-inner">
+ <span class="incentive-title--wrapper">
+ <p class="incentive-title">Back to School Sale - 2.875% Rate* / 5.632% APR* First Year Rates</p>
+ </span>
+ <p class="incentive-sub-headline">Beat the back to school rush and move-in before the school year! With homes located in the state's best school districts, plus our 2.875% Rate* / 5.632% APR* first year rates with a 2/1 Buydown on a 30-year fixed FHA loan through M/I Financial, LLC, makes moving a simple choice. Contact us today for complete details. </p>
+ <p class="incentive-button--wrapper">
+ <span class="button button-small" href="/new-homes/michigan/metro-detroit/incentives/back-to-school">
+ <span class="button-text uppercase">View Details</span>
+ </span>
+ </p>
+ </div>
+ </a>
+
+</div>
+</section>
+
+ <div id="design" class="box box-full box-no-padding-bottom" data-subnav-page-link="Design Options">
+ <div class="content-inner-centered">
+ <h2>Add the perfect finishing touch</h2>
+ <p class="subtitle content-inner-centered-narrow negative-top">
+ Put your personal touch on these Quick Move-In Homes with some selections from our Design Studio.
+ </p>
+ <div class="button-tooltip-wrapper">
+ <a class="button button-tooltip event-click" href="https://edc.envisionoptions.com/browser.aspx?NHTNumber=MIHOMES&Loc1=100&Lev1=CORP&Loc2=238&Lev2=DIV&HomeNumber=13ED1A&Page=Confirmselection&utm_source=mihomes.com&utm_campaign=&utm_content=heritage-square-Juliet-4145-Sedgeview-Circle&utm_term=" target="_blank" data-event-category=OptionsGallery
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ See This Home's Options
+ </a>
+
+
+ </div>
+ <a class="button" href="/design/design-studio">
+ <span class="button-text">
+ Visit a Design Studio
+ </span>
+ </a>
+ </div>
+ </div>
+ <div class="box box-full box-no-padding-top">
+ <div class="contained-width">
+ <hr class="hr-even">
+
+ <h4>Incentives</h4>
+ <article class="preview-box ">
+ <a class="preview-box-link" href="/new-homes/michigan/metro-detroit/incentives/back-to-school">
+ <div class="preview-box__image preview-box__preview one-third">
+ <img data-dam-generated alt="B2S Card Image" height="10000" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/5006163/50421.jpeg" srcset="https://dam.mihomes.com/media/5006163/50398.jpeg?timestamp=2026-07-14T16%3A20%3A54.9063606 300w, https://dam.mihomes.com/media/5006163/50397.jpeg?timestamp=2026-07-14T16%3A22%3A02.1047379 600w, https://dam.mihomes.com/media/5006163/50423.jpeg?timestamp=2026-07-14T16%3A21%3A39.2423287 900w" title="202001 DET BTS Card" width="15000" class="cover-image" maxwidth="900" />
+ </div>
+ <div class="preview-box__content">
+ <h3 class="h3 preview-box__header">
+ Back to School Sale - 2.875% Rate* / 5.632% APR* First Year Rates
+
+
+ </h3>
+ <p class="preview-box__text">Beat the back to school rush and move-in before the school year! With homes located in the state's best school districts, plus our 2.875% Rate* / 5.632% APR* first year rates with a 2/1 Buydown on a 30-year fixed FHA loan through M/I Financial, LLC, makes moving a simple choice. Contact us today for complete details. </p>
+ <p>
+ <span class="button-plain button-plain-alt" href="/new-homes/michigan/metro-detroit/incentives/back-to-school">View Details »</span>
+ </p>
+ </div>
+ </a>
+ </article>
+ <article class="preview-box ">
+ <a class="preview-box-link" href="/new-homes/michigan/metro-detroit/incentives/home-to-sell-program">
+ <div class="preview-box__image preview-box__preview one-third">
+ <img data-dam-generated alt="Kitchen" height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/39874/50396.jpeg" srcset="https://dam.mihomes.com/media/39874/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/39874/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/39874/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w" title="KitchenCard" width="1800" class="cover-image" maxwidth="900" />
+ </div>
+ <div class="preview-box__content">
+ <h3 class="h3 preview-box__header">
+ Take Advantage of Our Home-to-Sell Program
+
+
+ </h3>
+ <p class="preview-box__text">Many people need to sell their current home before they can move into the new home of their dreams! We can help you sell your existing home, making the process of purchasing your new M/I home smoother and quicker. With our Home-To-Sell program, you can offer your buyers 2% of your home's selling price.*</p>
+ <p>
+ <span class="button-plain button-plain-alt" href="/new-homes/michigan/metro-detroit/incentives/home-to-sell-program">View Details »</span>
+ </p>
+ </div>
+ </a>
+ </article>
+ </div>
+ </div>
+
+ <div id="floor" class="box box-full box-last event-inview" data-subnav-page-link="FloorPlan" data-event-category=Floorplan
+ data-event-action=scroll
+ data-event-label=view
+>
+ <div class="content-inner-centered content-inner-centered--mobile">
+<img data-dam-generated alt="Juliet Floorplan" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3436539/50421.jpeg?timestamp=2025-07-22T22%3A01%3A44.8520356" srcset="https://dam.mihomes.com/media/3436539/50398.jpeg?timestamp=2025-07-22T22%3A01%3A43.9780644 300w, https://dam.mihomes.com/media/3436539/50397.jpeg?timestamp=2025-07-22T22%3A01%3A43.9820663 600w, https://dam.mihomes.com/media/3436539/50423.jpeg?timestamp=2025-07-22T22%3A01%3A45.5123493 900w, https://dam.mihomes.com/media/3436539/50396.jpeg?timestamp=2025-07-22T22%3A01%3A43.2323726 1200w, https://dam.mihomes.com/media/3436539/50421.jpeg?timestamp=2025-07-22T22%3A01%3A44.8520356 1800w, https://dam.mihomes.com/media/3436539/50422.jpeg?timestamp=2025-07-22T22%3A01%3A45.5174278 2400w" title="DET-juliet-FL-heritagefarms-print" class="cover-image cover-image--abs" /> <h2>Floorplan Options for Your New Home</h2>
+ <p class="content-inner-centered-narrow negative-top subtitle">The Juliet accommodates a variety of household living arrangements with its highly desired flexibility and modern design. Explore the many possibilities in the popular Juliet plan.</p>
+ <a target="_blank" class="button floor-plan-options__button event-click" href="https://rifp.ml3ds-icon.com/#/floorplan/454628?pcoLink=67014&pco=1249974%2c1249975%2c1249977%2c1411022&reverseFloorPlan=false" data-event-category=Floorplan
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <svg class="icon icon-fullscreen" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#fullscreen"></use>
+</svg>
+ <span class="button-text">
+ Show Floorplan
+ </span>
+ </a>
+ </div>
+ <section class="floor-plan-options">
+ <iframe loading="lazy" id="floor-plan" data-fullsize class="floor-plan-options__iframe" data-src="https://rifp.ml3ds-icon.com/#/floorplan/454628?pcoLink=67014&pco=1249974%2c1249975%2c1249977%2c1411022&reverseFloorPlan=false" scrolling="no" style="overflow: hidden">
+ <p>Your browser does not support iframes.</p>
+ </iframe>
+ </section>
+ </div>
+
+ <div class="box box-full box-no-padding-top-bottom " id="">
+ <div class="content-inner-centered">
+ <div class="leadgenTitleBlock">
+ <h2 class="h2">Ready to plan a visit? We can help</h2>
+ <p class="subtitle marginless">Send us your preferred time to stop by and a sales representative will take care of the rest</p>
+ </div>
+ <section class="lead-form">
+ <div id="lead-form-block-user-info" class="lead-form-container lead-form-block" data-lead-form-sidebar="">
+ <aside class="lead-form-block__details" style="">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-1">
+ <img data-dam-generated alt="gpurpura@mihomes.com-0811202406.jpg" height="128" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/2180984/50421.jpeg?timestamp=2024-08-11T10%3A57%3A41.9901446" srcset="https://dam.mihomes.com/media/2180984/50398.jpeg?timestamp=2024-08-11T10%3A57%3A42.7617682 300w, https://dam.mihomes.com/media/2180984/50397.jpeg?timestamp=2024-08-11T10%3A57%3A40.9371427 600w, https://dam.mihomes.com/media/2180984/50423.jpeg?timestamp=2024-08-11T10%3A57%3A34.9015758 900w, https://dam.mihomes.com/media/2180984/50396.jpeg?timestamp=2024-08-11T10%3A57%3A40.3976706 1200w, https://dam.mihomes.com/media/2180984/50421.jpeg?timestamp=2024-08-11T10%3A57%3A41.9901446 1800w, https://dam.mihomes.com/media/2180984/50422.jpeg?timestamp=2024-08-11T10%3A57%3A45.8132370 2400w" title="gpurpura@mihomes.com-0811202406" width="128" class="cover-image" />
+ </div>
+ </div>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=2488364526'>(248) 836-4526</a>
+ </p>
+ </aside>
+<form action="/api/LeadGenFormBlock/LeadGenFormBlock" class="lead-form-block__form" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="410c3048-b666-4e88-b983-52502ab0a337" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Model" /><input id="PostType" name="PostType" type="hidden" value="block" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:16 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="FormAgentEmailAddress" name="FormAgentEmailAddress" type="hidden" value="" /><input id="ItemId" name="ItemId" type="hidden" value="632cce60-7e49-49fa-8a79-e6851c63e0c5" /><input id="HomeType" name="HomeType" type="hidden" value="Single Family Home" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="" hidden>
+ </div>
+ <div class="form-field">
+ <label for="fullname">Full Name </label>
+ <input type="text"
+ name="FormFullName"
+ placeholder="John Doe"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required."
+ maxlength="60"
+
+ data-parsley-filter-emoji=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="emailaddress">Email Address </label>
+ <input type="email"
+ name="FormEmailAddress" ,
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field">
+ <label for="phone">Phone Number </label>
+ <input class="gami-tel" type="tel"
+ name="FormPhoneNumber"
+ id="phone"
+ placeholder="5555555555"
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ maxlength="25"
+ value=""
+
+ data-parsley-phone-number=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="input">Questions or Comments </label>
+ <textarea rows="5"
+ name="FormComments"
+ id="input"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000"></textarea>
+ </div>
+ <div class="lead-form-block__contacts">
+ <div class="form-field select" {="">
+ <label for="tripday_block">Preferred Day <em> (Optional)</em></label>
+ <div class="select-wrap">
+ <div class="select-wrap">
+<select date-nested-select="#select-triptime-block-sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+
+ <div class="form-field select" {="">
+ <label for="triptime_block">Preferred Time <em> (Optional)</em></label>
+ <div class="select-wrap">
+
+<select id="select-triptime-block-sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-block__checkboxes-container">
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormEmailOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSAssociateCommunicationsOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ <div class="lead-form-block__submit">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+
+ <span class="align-center">
+ <a class="button-plain small" data-open-modal="privacy-policy-modal">Privacy Policy</a>
+ </span>
+ </div>
+</form> </div>
+ <div id="lead-form-block-agent-form" class="lead-form-container lead-form-block" data-lead-form-sidebar="" data-agent-section style="display: none;">
+ <figure class="lead-form lead-form-sidebar">
+ <div id="form-agent-header" class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+<form action="/new-homes/michigan/metro-detroit/howell/heritage-square/juliet-plan/4145-sedgeview-circle" class="lead-form-sidebar-section" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""> <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ id="block-agent-email"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+</form> </div>
+ </figure>
+ </div>
+
+
+
+ <div class="lead-form-container-success">
+ <figure class="lead-form lead-form-sidebar">
+ <div class="lead-form-container-success" style="display: block">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" method="POST" name="thanksyou_sidebar" data-parsley-validate="" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+
+ <div>
+ <div class="form-field form-field-password">
+ <label for="password"></label>
+ <input type="password"
+ name="password"
+ id="password"
+ placeholder="Password"
+ data-parsley-valid-password=""
+ minlength="8"
+ required=""
+ data-parsley-required-message="Password is required."
+ data-parsley-trigger="blur">
+
+ <button type="button" class="password-input-change" data-input-change="">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span tabindex="0"
+ data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">Create Account</span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ </div>
+ </section>
+ </div>
+ </div>
+
+ <div class="box box-centered box-full box-transparent" id="neraby">
+ <div class="box-full-inner">
+ <h3 class="h2">
+ Other Quick Move-In Homes
+ </h3>
+
+ <div class="featured-grid">
+ <div class="row">
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/michigan/metro-detroit/howell/heritage-square/brooklyn-plan/4125-sedgeview-circle">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Brooklyn Elevation C " height="1600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/2654033/50421.jpeg?timestamp=2025-01-03T15%3A40%3A58.3995342" srcset="https://dam.mihomes.com/media/2654033/50398.jpeg?timestamp=2025-01-03T15%3A41%3A07.1133398 300w, https://dam.mihomes.com/media/2654033/50397.jpeg?timestamp=2025-01-03T15%3A41%3A06.0968132 600w, https://dam.mihomes.com/media/2654033/50423.jpeg?timestamp=2025-01-03T15%3A41%3A08.4374068 900w, https://dam.mihomes.com/media/2654033/50396.jpeg?timestamp=2025-01-03T15%3A40%3A54.6435421 1200w, https://dam.mihomes.com/media/2654033/50421.jpeg?timestamp=2025-01-03T15%3A40%3A58.3995342 1800w, https://dam.mihomes.com/media/2654033/50422.jpeg?timestamp=2025-01-03T15%3A40%3A59.7227261 2400w" title="DET-Brooklyn-Various Plans-ElevationC-Gen3-elev_IND" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Brooklyn</p>
+ <p class="featured-grid-middle">4125 Sedgeview Circle, Howell, Michigan</p>
+ <p class="featured-grid-subtitle">Listed at $415,220</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/michigan/metro-detroit/howell/heritage-square/everly-plan/4113-heritage-square-drive">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Everly Elevation B" height="1600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4533286/50421.jpeg?timestamp=2026-03-20T16%3A00%3A35.0078879" srcset="https://dam.mihomes.com/media/4533286/50398.jpeg?timestamp=2026-03-20T16%3A00%3A33.4605046 300w, https://dam.mihomes.com/media/4533286/50397.jpeg?timestamp=2026-03-20T16%3A00%3A33.1814497 600w, https://dam.mihomes.com/media/4533286/50423.jpeg?timestamp=2026-03-20T16%3A00%3A35.5215468 900w, https://dam.mihomes.com/media/4533286/50396.jpeg?timestamp=2026-03-20T16%3A00%3A31.5113047 1200w, https://dam.mihomes.com/media/4533286/50421.jpeg?timestamp=2026-03-20T16%3A00%3A35.0078879 1800w, https://dam.mihomes.com/media/4533286/50422.jpeg?timestamp=2026-03-20T16%3A00%3A35.4108795 2400w" title="DET-Everly-ElevationB-Gen3-elev_DAY" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Everly</p>
+ <p class="featured-grid-middle">4113 Heritage Square Drive, Howell, Michigan</p>
+ <p class="featured-grid-subtitle">Listed at $488,055</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/michigan/metro-detroit/chelsea/heritage-farms/juliet-plan/610-harvest-way">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Juliet Elevation C" height="1600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/830238/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/830238/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/830238/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/830238/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/830238/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/830238/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/830238/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="DET-Juliet-ElevationC" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Juliet</p>
+ <p class="featured-grid-middle">610 Harvest Way, Chelsea, Michigan</p>
+ <p class="featured-grid-subtitle">Listed at $503,485</p>
+ </a>
+</div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ </main>
+
+
+<footer class="main-footer">
+ <div class="main-footer-inner">
+ <ul class="horizontal-list">
+ <li><a href="https://apply.workable.com/mi-homes/" target="_blank" rel="noopener noreferrer" >Careers</a></li>
+ <li><a href="/support/warranty" >Warranty</a></li>
+ <li><a href="https://investors.mihomes.com/" rel="noopener noreferrer" title="Investor Relations" target="_blank" >Investors</a></li>
+ <li><a href="/events" >Events</a></li>
+ <li><a href="/incentives" >Incentives</a></li>
+ <li><a href="/agent/agent-info" >Agents & Brokers</a></li>
+ <li><a href="/resources" >Home Buying Resources</a></li>
+ <li><a href="/why-mi/journey" >Journey</a></li>
+ <li><a href="/blog/" >Blog</a></li>
+ </ul>
+ <ul class="horizontal-list">
+ <li><a href="/policies/privacy-policy" >Privacy Policy</a></li>
+ <li><a href="/policies/terms-of-use" >Terms of Use</a></li>
+ <li><a href="/subscriptions" >Manage Subscriptions</a></li>
+ <li><a href="/support/ccpa" >CCPA</a></li>
+ </ul>
+ <ul class="icon-list">
+ <li>
+<a href="https://www.instagram.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Instagram" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704717/50399.png" srcset="https://dam.mihomes.com/media/4704717/50399.png?timestamp=2026-05-04T18%3A56%3A58.4036491 300w, https://dam.mihomes.com/media/4704717/50420.png 600w" title="instagram" width="24" /></a> </li>
+ <li>
+<a href="https://www.facebook.com/MIHomesInc/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Facebook" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57191/50399.png" srcset="https://dam.mihomes.com/media/57191/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57191/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="facebook" width="24" /></a> </li>
+ <li>
+<a href="https://www.youtube.com/MIHomesInc" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Youtube" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704715/50399.png" srcset="https://dam.mihomes.com/media/4704715/50399.png?timestamp=2026-05-04T18%3A34%3A30.5730196 300w, https://dam.mihomes.com/media/4704715/50420.png 600w" title="youtube" width="24" /></a> </li>
+ <li>
+<a href="https://www.pinterest.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Pinterest" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57192/50399.png" srcset="https://dam.mihomes.com/media/57192/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57192/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="pintrest" width="24" /></a> </li>
+ <li>
+<a href="http://www.houzz.com/pro/mi-homes/m-i-homes" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Houzz" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57193/50399.png" srcset="https://dam.mihomes.com/media/57193/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57193/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="houzz" width="24" /></a> </li>
+ <li>
+<a href="http://portal.hud.gov" class="" rel="me" target="_blank" ><img data-dam-generated alt="Equal Housing" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704718/50399.png" srcset="https://dam.mihomes.com/media/4704718/50399.png?timestamp=2026-05-04T19%3A02%3A51.2896193 300w, https://dam.mihomes.com/media/4704718/50420.png 600w" title="equal-housing" width="28" /></a> </li>
+ </ul>
+ <p class="main-footer-copyright">
+ Copyright 2026, M/I Homes, Inc. All rights reserved.
+ </p>
+ <p id="division-disclaimer" class="main-footer-copyright">
+
+
+ </p>
+ </div>
+</footer>
+</div>
+<div aria-label="Cookie Consent" role="dialog" id="ccpa-modal" class="ccpa-modal">
+ <p>By browsing, you accept our <a href="/policies/terms-of-use">terms of use</a> and <a href="/policies/privacy-policy">privacy policy</a>.</p>
+ <button class="button" type="button">OK</button>
+</div>
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/modals.css?ver=202608092245" rel="stylesheet" fetchpriority="low">
+ <div class="modal modal-wide box" data-modal="" id="privacy-policy-modal">
+ <button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div id="privacy-policy-text"></div>
+</div><div class="modal box box-wide box-paddingless" data-modal="" id="mortgage-payment-calculator-modal">
+<button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+</button>
+ <div id="mortgage-payment-calculator" data-price="476150" data-values="8ac0262c-d009-432e-84b4-e7cf73fd6ccb"></div>
+</div>
+ <div class="modal" data-modal id="search-modal">
+ <form action="/search" class="search-form ">
+ <input class="search-form-input" id="search-form-input" name="search" placeholder="Search M/I Homes"
+ type="search" />
+ <button class="button search-form-clear-button" type="button">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+
+ </button>
+ <button class="button search-form-submit" type="submit">
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ <div class="search-form-results">
+ <div class="search-form-results-list"></div>
+ </div>
+ </form>
+ </div>
+</div>
+
+<!-- toolkit scripts -->
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit_common.js?ver=202608092245"></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit.js?ver=202608092245"></script>
+ <script src="https://cdn.mihomes.com/assets/toolkit/js/product.js?ver=202608092245"></script>
+ <script defer src="https://cdn.mihomes.com/assets/toolkit/js/mortgage-calculator.js?ver=202608092245"></script>
+<script>window.jQuery = window.$ = window.JQUERY;</script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/common.js?ver=202608092245" defer></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/favorites.js?ver=202608092245" defer></script>
+
+
+<script>
+ var w = Math.max(
+ document.body.scrollWidth,
+ document.documentElement.scrollWidth,
+ document.body.offsetWidth,
+ document.documentElement.offsetWidth,
+ document.documentElement.clientWidth
+ );
+ window.setCookie('screen-width', encodeURIComponent(w), { expires: 14, path: "/" })
+ </script>
+
+<script>
+
+
+</script>
+<script type="text/javascript">
+ const millisecondsPerDay = 86400000;
+ const millisecondsPerHour = millisecondsPerDay / 24;
+ const millisecondsPerMinute = millisecondsPerHour / 60;
+ const millisecondsPerSecond = 1000;
+ function addLeadingZero(val) {
+ if(val.toString().length < 2) {
+ return '0'+val;
+ }
+ return val;
+ }
+ function change() {
+ const list = Array.from(document.querySelectorAll('[data-countdown]'));
+ const now = new Date().getTime();
+ list.forEach((el) => {
+ const d = new Date(el.getAttribute('data-countdown')).getTime();
+ let diff = d - now;
+ let days = 0;
+ let hours = 0;
+ let minutes = 0;
+ let seconds = 0;
+ if(diff > 0) {
+ days = Math.floor(diff / millisecondsPerDay);
+ diff = diff - (days * millisecondsPerDay)
+ hours = Math.floor(diff/millisecondsPerHour);
+ diff = diff - (hours * millisecondsPerHour)
+ minutes = Math.floor(diff/millisecondsPerMinute);
+ diff = diff - (minutes * millisecondsPerMinute);
+ seconds = Math.floor(diff/millisecondsPerSecond);
+ }
+ try {
+ el.querySelector('.days').innerText = addLeadingZero(Math.max(days, 0));
+
+ } catch (e) {}
+ try {
+ el.querySelector('.hours').innerText = addLeadingZero(Math.max(hours, 0));
+ } catch(e) {}
+ try {
+ el.querySelector('.minutes').innerText = addLeadingZero(Math.max(minutes, 0));
+ } catch (e) {}
+ try {
+ el.querySelector('.seconds').innerText = addLeadingZero(Math.max(seconds, 0));
+ } catch (e) {}
+
+ });
+ setTimeout(()=>requestAnimationFrame(change), millisecondsPerSecond);
+ }
+ requestAnimationFrame(change);
+</script>
+</body>
+
+</html>
\ No newline at end of file
diff --git a/collectors/mi-homes/fixtures/homes/h5.html b/collectors/mi-homes/fixtures/homes/h5.html
new file mode 100644
index 00000000..cf23e0dc
--- /dev/null
+++ b/collectors/mi-homes/fixtures/homes/h5.html
@@ -0,0 +1,2436 @@
+
+
+<!doctype html>
+<html lang="en">
+
+<head>
+
+ <script>
+ var G = G || {};
+ G.pingForEmployee = true;
+ </script>
+
+
+<meta name="VIcurrentDateTime" content="639220202589877386" />
+<meta name="VirtualFolder" content="/" />
+<script type="text/javascript" src="/layouts/system/VisitorIdentification.js"></script>
+
+
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" name="viewport">
+ <title>MLS #19555640 - 1077 Garnet Star Drive La Marque, TX 77568 - M/I Homes</title>
+ <!-- font -->
+ <link rel="preconnect" href="https://cdn.mihomes.com" crossorigin>
+ <link rel="preconnect" href="https://use.typekit.net" crossorigin>
+
+
+
+<!-- Google Tag Script -->
+
+ <script id="js-GTM-script">
+ window.dataLayer = window.dataLayer || [];
+ window.dataLayer.push({
+ "PageType": "Spec",
+ "MIAccount": "No",
+ "Division": "Houston"
+});
+
+(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=
+'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
+})(window,document,'script','dataLayer','GTM-M2JH3QJ');
+ </script>
+
+
+<!-- End Google Tag Script -->
+ <meta name="referrer" content="always" />
+
+ <link href="https://use.typekit.net/sgt3sit.css" rel="stylesheet" type="text/css" media="print" onload="this.media='all'" id="fonts-loaded" />
+
+<script>
+ try {
+ document.fonts.ready.then(() => {
+ document.body.classList.add('body--fonts-loaded');
+ if(window.setCookiie) {
+ window.setCookie('fonts-cached', 'true', { expires: 7, path: '/' });
+ }
+ });
+ } catch (e) { }
+</script>
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/toolkit.css?ver=202608092245" type="text/css" rel="stylesheet">
+ <!-- conditionally load css for blog -->
+
+ <script>
+ window.environment = "Prod";
+ window.googleApiKey = "REDACTED-THIRD-PARTY-PUBLIC-KEY";
+ </script>
+ <script>
+
+ window.maps =[];
+ window.AssetRootUrl = 'https://cdn.mihomes.com';
+
+ </script>
+
+ <meta name="twitter:card" content="summary" />
+<meta name="twitter:site" content="@mihomes" />
+<meta name="twitter:creator" content="@mihomes">
+
+<meta property="og:site_name" content="https://www.mihomes.com" />
+<meta property="og:type" content="article" />
+<meta property="og:url" content="https://www.mihomes.com/new-homes/texas/greater-houston/la-marque/ambrose/dawson-plan/1077-garnet-star-drive" />
+
+
+ <meta property="og:title" content="1077 Garnet Star Drive" />
+ <meta name="twitter:title" content="1077 Garnet Star Drive" />
+
+
+
+ <meta property="og:description" content="Welcome to 1077 Garnet Star Drive, La Marque, TX — a new construction single-story home built by M/I Homes. This thoughtfully designed home offers 1,538 square feet of comfortable living space with 3 bedrooms and 2 bathrooms, ideal for a range of lifestyles." />
+ <meta name="twitter:description" content="Welcome to 1077 Garnet Star Drive, La Marque, TX — a new construction single-story home built by M/I Homes. This thoughtfully designed home offers 1,538 square feet of comfortable living space with 3 bedrooms and 2 bathrooms, ideal for a range of lifestyles." />
+ <meta name="description" content="Welcome to 1077 Garnet Star Drive, La Marque, TX — a new construction single-story home built by M/I Homes. This thoughtfully designed home offers 1,538 square feet of comfortable living space with 3 bedrooms and 2 bathrooms, ideal for a range of lifestyles." />
+
+
+
+ <link rel="canonical" href="https://www.mihomes.com/new-homes/texas/greater-houston/la-marque/ambrose/dawson-plan/1077-garnet-star-drive">
+ <link defer href="https://dam.mihomes.com/media/4179716/50399.png" rel="icon" type="image/vnd.microsoft.icon" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="57x57"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-57x57.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="114x114"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-114x114.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="72x72"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-72x72.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="144x144"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-144x144.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="60x60"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-60x60.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="120x120"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-120x120.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="76x76"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-76x76.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="152x152"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-152x152.png" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-196x196.png"
+ sizes="196x196" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-96x96.png"
+ sizes="96x96" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-32x32.png"
+ sizes="32x32" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-16x16.png"
+ sizes="16x16" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-128.png"
+ sizes="128x128" />
+ <meta name="application-name" content=" " />
+ <meta name="msapplication-TileColor" content="#FFFFFF" />
+ <meta name="msapplication-TileImage" content="https://cdn.mihomes.com/assets/favicons/images/mstile-144x144.png" />
+ <meta name="msapplication-square70x70logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-70x70.png" />
+ <meta name="msapplication-square150x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-150x150.png" />
+ <meta name="msapplication-wide310x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x150.png" />
+ <meta name="msapplication-square310x310logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x310.png" />
+
+ <script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Organization",
+ "foundingDate": "1976",
+ "duns": "071649743",
+ "founders": [
+ {
+ "@type": "Person",
+ "name": "Melvin Schottenstein"
+ },
+ {
+ "@type": "Person",
+ "name": "Irving Schottenstein"
+ }
+ ],
+ "employees": [
+ {
+ "@type": "Person",
+ "name": "Robert H. Schottenstein",
+ "jobTitle": "Chairman, President, and CEO"
+ }
+ ],
+ "sameAs": [
+ "https://www.facebook.com/MIHomesInc",
+ "https://twitter.com/mihomes",
+ "https://www.instagram.com/mihomes/",
+ "https://www.youtube.com/MIHomesInc",
+ "https://www.houzz.com/pro/mi-homes/m-i-homes",
+ "https://www.pinterest.com/mihomes/"
+ ],
+ "logo": {
+ "@type": "ImageObject",
+ "name": "M/I Homes logo",
+ "contentUrl": "https://dam.mihomes.com/media/39664/50399.png"
+ },
+ "name": "M/I Homes",
+ "description": "M/I Homes, Inc. founded in 1976, M/I Homes is one of nation's leading builders of single family homes. M/I has established an exemplary reputation based on a strong commitment to superior customer service, innovative design, quality construction and premium locations. Listed on the New York Stock Exchange, M/I Homes serves a broad segment of the housing market including first-time, move-up, luxury and empty nester buyers.",
+ "url": "https://www.mihomes.com",
+ "isicv4": "4100"
+}</script>
+ <script defer src="https://www.youtube.com/iframe_api"></script>
+ <script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
+ <script>
+ window.addEventListener('load', () => {
+ const swUrl = "https://cdn.mihomes.com/assets/workers/product-page-service-worker.js"
+ navigator.serviceWorker
+ .register(swUrl, {
+ scope: '/'
+ })
+ .then(registration => {
+ console.log('Service Worker registered with scope:', registration.scope);
+ })
+ .catch(error => {
+ console.error('Error during service worker registration:', error);
+ });
+ });
+ </script>
+</head>
+
+<body class="no-js body--home-template">
+
+
+
+<!-- Google Tag Manager --><!-- Global site tag (gtag.js) - Google Analytics -->
+
+ <noscript>
+ <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M2JH3QJ"
+ height="0" width="0" style="display: none; visibility: hidden">
+ </iframe>
+ </noscript>
+
+<!-- End Google Tag Manager GTMM2JH3QJ -->
+<a class="skip-link" href="#content">Skip To Content</a>
+
+<div class="page-container">
+ <div id="overview" data-subnav-page-link="Overview"></div>
+
+
+<header class="main-header">
+ <div class="main-header-inner">
+<a href="/" class="main-header-logo" > <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png">
+<svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg></a> <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png" />
+ <button class="main-header-open-nav" data-open-nav="" title="Toggle Hamburger Navigation">
+ <svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg>
+ <svg class="icon icon-menu" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#menu"></use>
+</svg>
+ </button>
+ <div class="main-header-nav-items" data-a11y-focus data-nav-tray>
+ <nav class="main-nav">
+ <ul>
+ <li>
+
+ <a href="/" class="main-nav-link mobile-only" >Home</a>
+ </li>
+ <li>
+
+ <a href="/new-homes/texas/greater-houston" class="main-nav-link find-a-home-link" >Find a Home</a>
+ </li>
+ <li>
+
+ <a href="/about-us/overview" class="main-nav-link " >About</a>
+ </li>
+ <li>
+
+ <a href="/why-mi/overview" class="main-nav-link " >Why M/I</a>
+ </li>
+ <li>
+
+ <a href="/incentives" class="main-nav-link " >Incentives</a>
+ </li>
+ <li>
+
+ <a href="/financing" class="main-nav-link " >Financing</a>
+ </li>
+ <li>
+
+ <a href="/support/warranty" class="main-nav-link " >Warranty</a>
+ </li>
+ <li>
+
+ <a href="/support" class="main-nav-link " >Contact</a>
+ </li>
+ <li>
+
+ <a href="/resources" class="main-nav-link " >Resources</a>
+ </li>
+ </ul>
+ </nav>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ <div class="aux-nav">
+ <ul>
+ <li data-a11y-focus>
+ <a href="/account/register" class="main-nav-link" >Sign Up</a>
+ </li>
+ <li data-a11y-focus>
+ <a href="/account/login" class="main-nav-link" >Log In</a>
+ </li>
+ </ul>
+ </div>
+ </div>
+ <button class="main-header-close-nav" data-close-nav>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ </div>
+</header>
+ <div class="breadcrumbs-bar">
+ <div class="breadcrumbs-wrapper">
+ <nav class="breadcrumbs">
+ <a class="button-plain" href="/">Home</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/communities">Texas</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/greater-houston/communities">Greater Houston</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/greater-houston/la-marque">La Marque</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/greater-houston/la-marque/ambrose">Ambrose</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/greater-houston/la-marque/ambrose/dawson-plan">Dawson</a>
+ <span class="seperator"> • </span>
+ <span>1077 Garnet Star Drive</span>
+ </nav>
+ </div>
+ </div>
+ <script>var bar = document.querySelector('.breadcrumbs-bar'); bar.setAttribute('style', 'height:' + bar.getBoundingClientRect().height + 'px');</script>
+<script type="application/ld+json">
+{
+"@context": "https://schema.org",
+"@type": "BreadcrumbList",
+"itemListElement":[
+{
+"@type":"ListItem",
+"position":1,
+"name":"Texas",
+"item":"https://www.mihomes.com/new-homes/texas/communities"
+},
+{
+"@type":"ListItem",
+"position":2,
+"name":"Greater Houston",
+"item":"https://www.mihomes.com/new-homes/texas/greater-houston/communities"
+},
+{
+"@type":"ListItem",
+"position":3,
+"name":"La Marque",
+"item":"https://www.mihomes.com/new-homes/texas/greater-houston/la-marque"
+},
+{
+"@type":"ListItem",
+"position":4,
+"name":"Ambrose",
+"item":"https://www.mihomes.com/new-homes/texas/greater-houston/la-marque/ambrose"
+},
+{
+"@type":"ListItem",
+"position":5,
+"name":"Dawson",
+"item":"https://www.mihomes.com/new-homes/texas/greater-houston/la-marque/ambrose/dawson-plan"
+},
+{
+"@type":"ListItem",
+"position":6,
+"name":"1077 Garnet Star Drive",
+
+}
+]
+}
+</script>
+
+
+ <div class="page-notice-wrapper" id="page-notification"></div>
+ <main class="main-content" id="content" tabindex="0">
+
+<ul class="product-flags">
+ <li>
+
+
+<div class="product-flag product-flag-green " style="">
+ <span class="product-flag-text">Ready Now</span>
+</div> </li>
+ <li>
+ <a href="https://www.mihomes.com/new-homes/texas/greater-houston/incentives/2026-rate" data-is="me">
+
+
+<div class="product-flag " style="color: #35603d">
+ <span class="product-flag-text">Great Rates Available</span>
+ <small class="product-flag-subtext">5.25% Rate*** / 5.66% APR*** on 30-year fixed Conventional mortgages</small>
+</div>
+ </a>
+ </li>
+ <li>
+ <a href="https://www.mihomes.com/new-homes/texas/greater-houston/incentives/beat-the-heat" data-is="me">
+
+
+<div class="product-flag " style="color: #ff76cd">
+ <span class="product-flag-text">Beat the Heat Savings</span>
+ <small class="product-flag-subtext">Limited-Time Offers on Quick Move-Ins and To-Be-Builts</small>
+</div>
+ </a>
+ </li>
+</ul>
+<div class="image-banner">
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <img data-dam-generated alt="Front Exterior" height="1703" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/5020258/50421.jpeg?timestamp=2026-07-18T01%3A47%3A50.4221263" srcset="https://dam.mihomes.com/media/5020258/50398.jpeg?timestamp=2026-07-18T01%3A47%3A48.4302986 300w, https://dam.mihomes.com/media/5020258/50397.jpeg?timestamp=2026-07-18T01%3A47%3A47.0687667 600w, https://dam.mihomes.com/media/5020258/50423.jpeg?timestamp=2026-07-18T01%3A47%3A52.8525016 900w, https://dam.mihomes.com/media/5020258/50396.jpeg?timestamp=2026-07-18T01%3A47%3A47.2406425 1200w, https://dam.mihomes.com/media/5020258/50421.jpeg?timestamp=2026-07-18T01%3A47%3A50.4221263 1800w, https://dam.mihomes.com/media/5020258/50422.jpeg?timestamp=2026-07-18T01%3A47%3A50.5782401 2400w" title="[L3203-z002]FrontExterior" width="2560" class="image-banner-item-gallery" fetchpriority="high" />
+ </a>
+ <div class="image-banner-more">
+ <a href="#product-gallery"
+ data-goto-slide="1"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="1"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Kitchen" height="1703" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5020281/50421.jpeg?timestamp=2026-07-18T01%3A51%3A01.4050843" srcset="https://dam.mihomes.com/media/5020281/50398.jpeg?timestamp=2026-07-18T01%3A50%3A49.7613091 300w, https://dam.mihomes.com/media/5020281/50397.jpeg?timestamp=2026-07-18T01%3A50%3A46.7317066 600w, https://dam.mihomes.com/media/5020281/50423.jpeg?timestamp=2026-07-18T01%3A51%3A06.8192899 900w, https://dam.mihomes.com/media/5020281/50396.jpeg?timestamp=2026-07-18T01%3A50%3A43.0122859 1200w, https://dam.mihomes.com/media/5020281/50421.jpeg?timestamp=2026-07-18T01%3A51%3A01.4050843 1800w, https://dam.mihomes.com/media/5020281/50422.jpeg?timestamp=2026-07-18T01%3A51%3A04.5226876 2400w" title="[L3203-z026]Kitchen" width="2560" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="2"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="2"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Interior" height="1703" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5020280/50421.jpeg?timestamp=2026-07-18T01%3A51%3A17.8788416" srcset="https://dam.mihomes.com/media/5020280/50398.jpeg?timestamp=2026-07-18T01%3A50%3A59.6262630 300w, https://dam.mihomes.com/media/5020280/50397.jpeg?timestamp=2026-07-18T01%3A50%3A54.8004114 600w, https://dam.mihomes.com/media/5020280/50423.jpeg?timestamp=2026-07-18T01%3A51%3A22.7464146 900w, https://dam.mihomes.com/media/5020280/50396.jpeg?timestamp=2026-07-18T01%3A50%3A51.2186856 1200w, https://dam.mihomes.com/media/5020280/50421.jpeg?timestamp=2026-07-18T01%3A51%3A17.8788416 1800w, https://dam.mihomes.com/media/5020280/50422.jpeg?timestamp=2026-07-18T01%3A51%3A21.3856554 2400w" title="[L3203-z022]Interior" width="2559" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="3"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="3"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Bathroom" height="1703" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5020297/50421.jpeg?timestamp=2026-07-18T01%3A52%3A20.7973211" srcset="https://dam.mihomes.com/media/5020297/50398.jpeg?timestamp=2026-07-18T01%3A52%3A17.9297342 300w, https://dam.mihomes.com/media/5020297/50397.jpeg?timestamp=2026-07-18T01%3A52%3A16.3921992 600w, https://dam.mihomes.com/media/5020297/50423.jpeg?timestamp=2026-07-18T01%3A52%3A22.7219573 900w, https://dam.mihomes.com/media/5020297/50396.jpeg?timestamp=2026-07-18T01%3A52%3A15.7753163 1200w, https://dam.mihomes.com/media/5020297/50421.jpeg?timestamp=2026-07-18T01%3A52%3A20.7973211 1800w, https://dam.mihomes.com/media/5020297/50422.jpeg?timestamp=2026-07-18T01%3A52%3A24.3655465 2400w" title="[L3203-z035]Bathroom" width="2560" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="4"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="4"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Porch" height="1703" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5020257/50421.jpeg?timestamp=2026-07-18T01%3A48%3A53.5642764" srcset="https://dam.mihomes.com/media/5020257/50398.jpeg?timestamp=2026-07-18T01%3A48%3A50.0971591 300w, https://dam.mihomes.com/media/5020257/50397.jpeg?timestamp=2026-07-18T01%3A48%3A49.2234421 600w, https://dam.mihomes.com/media/5020257/50423.jpeg?timestamp=2026-07-18T01%3A48%3A56.1386766 900w, https://dam.mihomes.com/media/5020257/50396.jpeg?timestamp=2026-07-18T01%3A48%3A49.8813294 1200w, https://dam.mihomes.com/media/5020257/50421.jpeg?timestamp=2026-07-18T01%3A48%3A53.5642764 1800w, https://dam.mihomes.com/media/5020257/50422.jpeg?timestamp=2026-07-18T01%3A48%3A54.3704341 2400w" title="[L3203-z004]Porch" width="2558" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="third event-click image-banner-total gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <span class="button button-transparent">
+ View 43 Photos
+ </span>
+ </a>
+ </div>
+</div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Front Exterior" height="1703" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/5020258/50421.jpeg?timestamp=2026-07-18T01%3A47%3A50.4221263" srcset="https://dam.mihomes.com/media/5020258/50398.jpeg?timestamp=2026-07-18T01%3A47%3A48.4302986 300w, https://dam.mihomes.com/media/5020258/50397.jpeg?timestamp=2026-07-18T01%3A47%3A47.0687667 600w, https://dam.mihomes.com/media/5020258/50423.jpeg?timestamp=2026-07-18T01%3A47%3A52.8525016 900w, https://dam.mihomes.com/media/5020258/50396.jpeg?timestamp=2026-07-18T01%3A47%3A47.2406425 1200w, https://dam.mihomes.com/media/5020258/50421.jpeg?timestamp=2026-07-18T01%3A47%3A50.4221263 1800w, https://dam.mihomes.com/media/5020258/50422.jpeg?timestamp=2026-07-18T01%3A47%3A50.5782401 2400w" title="[L3203-z002]FrontExterior" width="2560" class="image-banner-item-gallery" fetchpriority="high" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Kitchen" height="1703" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5020281/50421.jpeg?timestamp=2026-07-18T01%3A51%3A01.4050843" srcset="https://dam.mihomes.com/media/5020281/50398.jpeg?timestamp=2026-07-18T01%3A50%3A49.7613091 300w, https://dam.mihomes.com/media/5020281/50397.jpeg?timestamp=2026-07-18T01%3A50%3A46.7317066 600w, https://dam.mihomes.com/media/5020281/50423.jpeg?timestamp=2026-07-18T01%3A51%3A06.8192899 900w, https://dam.mihomes.com/media/5020281/50396.jpeg?timestamp=2026-07-18T01%3A50%3A43.0122859 1200w, https://dam.mihomes.com/media/5020281/50421.jpeg?timestamp=2026-07-18T01%3A51%3A01.4050843 1800w, https://dam.mihomes.com/media/5020281/50422.jpeg?timestamp=2026-07-18T01%3A51%3A04.5226876 2400w" title="[L3203-z026]Kitchen" width="2560" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Interior" height="1703" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5020280/50421.jpeg?timestamp=2026-07-18T01%3A51%3A17.8788416" srcset="https://dam.mihomes.com/media/5020280/50398.jpeg?timestamp=2026-07-18T01%3A50%3A59.6262630 300w, https://dam.mihomes.com/media/5020280/50397.jpeg?timestamp=2026-07-18T01%3A50%3A54.8004114 600w, https://dam.mihomes.com/media/5020280/50423.jpeg?timestamp=2026-07-18T01%3A51%3A22.7464146 900w, https://dam.mihomes.com/media/5020280/50396.jpeg?timestamp=2026-07-18T01%3A50%3A51.2186856 1200w, https://dam.mihomes.com/media/5020280/50421.jpeg?timestamp=2026-07-18T01%3A51%3A17.8788416 1800w, https://dam.mihomes.com/media/5020280/50422.jpeg?timestamp=2026-07-18T01%3A51%3A21.3856554 2400w" title="[L3203-z022]Interior" width="2559" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Bathroom" height="1703" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5020297/50421.jpeg?timestamp=2026-07-18T01%3A52%3A20.7973211" srcset="https://dam.mihomes.com/media/5020297/50398.jpeg?timestamp=2026-07-18T01%3A52%3A17.9297342 300w, https://dam.mihomes.com/media/5020297/50397.jpeg?timestamp=2026-07-18T01%3A52%3A16.3921992 600w, https://dam.mihomes.com/media/5020297/50423.jpeg?timestamp=2026-07-18T01%3A52%3A22.7219573 900w, https://dam.mihomes.com/media/5020297/50396.jpeg?timestamp=2026-07-18T01%3A52%3A15.7753163 1200w, https://dam.mihomes.com/media/5020297/50421.jpeg?timestamp=2026-07-18T01%3A52%3A20.7973211 1800w, https://dam.mihomes.com/media/5020297/50422.jpeg?timestamp=2026-07-18T01%3A52%3A24.3655465 2400w" title="[L3203-z035]Bathroom" width="2560" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Porch" height="1703" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5020257/50421.jpeg?timestamp=2026-07-18T01%3A48%3A53.5642764" srcset="https://dam.mihomes.com/media/5020257/50398.jpeg?timestamp=2026-07-18T01%3A48%3A50.0971591 300w, https://dam.mihomes.com/media/5020257/50397.jpeg?timestamp=2026-07-18T01%3A48%3A49.2234421 600w, https://dam.mihomes.com/media/5020257/50423.jpeg?timestamp=2026-07-18T01%3A48%3A56.1386766 900w, https://dam.mihomes.com/media/5020257/50396.jpeg?timestamp=2026-07-18T01%3A48%3A49.8813294 1200w, https://dam.mihomes.com/media/5020257/50421.jpeg?timestamp=2026-07-18T01%3A48%3A53.5642764 1800w, https://dam.mihomes.com/media/5020257/50422.jpeg?timestamp=2026-07-18T01%3A48%3A54.3704341 2400w" title="[L3203-z004]Porch" width="2558" class="image-banner-item-more" />
+ </span>
+ </div>
+
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <div class="modal fullscreen-modal gallery-modal gallery-modal--simple" data-modal="" id="simple-gallery-modal" data-track-views="">
+ <div class="gallery-modal__list-container">
+ <div class="gallery-modal__controls">
+ <button class="close-icon" data-modal-close>
+ <svg class="icon icon-close-gallery" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close-gallery"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__list-container-arrows">
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="prev" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="42" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="next" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="0" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__controls gallery-modal__controls__zoom">
+ <button class="close-icon" data-gallery="simple-gallery-modal" data-zoom>
+ <svg class="icon icon-zoom" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#zoom"></use>
+</svg>
+ </button>
+ </div>
+ <ul class="gallery-modal__list no-transition" style="transform: translateX(-200%);">
+
+ <li class="gallery-slide-container" data-slide-id="0" data-image="https://dam.mihomes.com/media/5020258/50398.jpeg?timestamp=2026-07-18T01%3A47%3A48.4302986 300w, https://dam.mihomes.com/media/5020258/50397.jpeg?timestamp=2026-07-18T01%3A47%3A47.0687667 600w, https://dam.mihomes.com/media/5020258/50423.jpeg?timestamp=2026-07-18T01%3A47%3A52.8525016 900w, https://dam.mihomes.com/media/5020258/50396.jpeg?timestamp=2026-07-18T01%3A47%3A47.2406425 1200w, https://dam.mihomes.com/media/5020258/50421.jpeg?timestamp=2026-07-18T01%3A47%3A50.4221263 1800w, https://dam.mihomes.com/media/5020258/50422.jpeg?timestamp=2026-07-18T01%3A47%3A50.5782401 2400w" data-caption="Front Exterior" data-count="<strong>1</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Front Exterior" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020258/50421.jpeg?timestamp=2026-07-18T01%3A47%3A50.4221263" srcset="https://dam.mihomes.com/media/5020258/50398.jpeg?timestamp=2026-07-18T01%3A47%3A48.4302986 300w, https://dam.mihomes.com/media/5020258/50397.jpeg?timestamp=2026-07-18T01%3A47%3A47.0687667 600w, https://dam.mihomes.com/media/5020258/50423.jpeg?timestamp=2026-07-18T01%3A47%3A52.8525016 900w, https://dam.mihomes.com/media/5020258/50396.jpeg?timestamp=2026-07-18T01%3A47%3A47.2406425 1200w, https://dam.mihomes.com/media/5020258/50421.jpeg?timestamp=2026-07-18T01%3A47%3A50.4221263 1800w, https://dam.mihomes.com/media/5020258/50422.jpeg?timestamp=2026-07-18T01%3A47%3A50.5782401 2400w" title="[L3203-z002]FrontExterior" width="2560" class="image-banner-item-gallery" fetchpriority="high" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="1" data-image="https://dam.mihomes.com/media/5020281/50398.jpeg?timestamp=2026-07-18T01%3A50%3A49.7613091 300w, https://dam.mihomes.com/media/5020281/50397.jpeg?timestamp=2026-07-18T01%3A50%3A46.7317066 600w, https://dam.mihomes.com/media/5020281/50423.jpeg?timestamp=2026-07-18T01%3A51%3A06.8192899 900w, https://dam.mihomes.com/media/5020281/50396.jpeg?timestamp=2026-07-18T01%3A50%3A43.0122859 1200w, https://dam.mihomes.com/media/5020281/50421.jpeg?timestamp=2026-07-18T01%3A51%3A01.4050843 1800w, https://dam.mihomes.com/media/5020281/50422.jpeg?timestamp=2026-07-18T01%3A51%3A04.5226876 2400w" data-caption="Kitchen" data-count="<strong>2</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020281/50421.jpeg?timestamp=2026-07-18T01%3A51%3A01.4050843" srcset="https://dam.mihomes.com/media/5020281/50398.jpeg?timestamp=2026-07-18T01%3A50%3A49.7613091 300w, https://dam.mihomes.com/media/5020281/50397.jpeg?timestamp=2026-07-18T01%3A50%3A46.7317066 600w, https://dam.mihomes.com/media/5020281/50423.jpeg?timestamp=2026-07-18T01%3A51%3A06.8192899 900w, https://dam.mihomes.com/media/5020281/50396.jpeg?timestamp=2026-07-18T01%3A50%3A43.0122859 1200w, https://dam.mihomes.com/media/5020281/50421.jpeg?timestamp=2026-07-18T01%3A51%3A01.4050843 1800w, https://dam.mihomes.com/media/5020281/50422.jpeg?timestamp=2026-07-18T01%3A51%3A04.5226876 2400w" title="[L3203-z026]Kitchen" width="2560" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="2" data-image="https://dam.mihomes.com/media/5020280/50398.jpeg?timestamp=2026-07-18T01%3A50%3A59.6262630 300w, https://dam.mihomes.com/media/5020280/50397.jpeg?timestamp=2026-07-18T01%3A50%3A54.8004114 600w, https://dam.mihomes.com/media/5020280/50423.jpeg?timestamp=2026-07-18T01%3A51%3A22.7464146 900w, https://dam.mihomes.com/media/5020280/50396.jpeg?timestamp=2026-07-18T01%3A50%3A51.2186856 1200w, https://dam.mihomes.com/media/5020280/50421.jpeg?timestamp=2026-07-18T01%3A51%3A17.8788416 1800w, https://dam.mihomes.com/media/5020280/50422.jpeg?timestamp=2026-07-18T01%3A51%3A21.3856554 2400w" data-caption="Interior" data-count="<strong>3</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020280/50421.jpeg?timestamp=2026-07-18T01%3A51%3A17.8788416" srcset="https://dam.mihomes.com/media/5020280/50398.jpeg?timestamp=2026-07-18T01%3A50%3A59.6262630 300w, https://dam.mihomes.com/media/5020280/50397.jpeg?timestamp=2026-07-18T01%3A50%3A54.8004114 600w, https://dam.mihomes.com/media/5020280/50423.jpeg?timestamp=2026-07-18T01%3A51%3A22.7464146 900w, https://dam.mihomes.com/media/5020280/50396.jpeg?timestamp=2026-07-18T01%3A50%3A51.2186856 1200w, https://dam.mihomes.com/media/5020280/50421.jpeg?timestamp=2026-07-18T01%3A51%3A17.8788416 1800w, https://dam.mihomes.com/media/5020280/50422.jpeg?timestamp=2026-07-18T01%3A51%3A21.3856554 2400w" title="[L3203-z022]Interior" width="2559" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="3" data-image="https://dam.mihomes.com/media/5020297/50398.jpeg?timestamp=2026-07-18T01%3A52%3A17.9297342 300w, https://dam.mihomes.com/media/5020297/50397.jpeg?timestamp=2026-07-18T01%3A52%3A16.3921992 600w, https://dam.mihomes.com/media/5020297/50423.jpeg?timestamp=2026-07-18T01%3A52%3A22.7219573 900w, https://dam.mihomes.com/media/5020297/50396.jpeg?timestamp=2026-07-18T01%3A52%3A15.7753163 1200w, https://dam.mihomes.com/media/5020297/50421.jpeg?timestamp=2026-07-18T01%3A52%3A20.7973211 1800w, https://dam.mihomes.com/media/5020297/50422.jpeg?timestamp=2026-07-18T01%3A52%3A24.3655465 2400w" data-caption="Bathroom" data-count="<strong>4</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bathroom" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020297/50421.jpeg?timestamp=2026-07-18T01%3A52%3A20.7973211" srcset="https://dam.mihomes.com/media/5020297/50398.jpeg?timestamp=2026-07-18T01%3A52%3A17.9297342 300w, https://dam.mihomes.com/media/5020297/50397.jpeg?timestamp=2026-07-18T01%3A52%3A16.3921992 600w, https://dam.mihomes.com/media/5020297/50423.jpeg?timestamp=2026-07-18T01%3A52%3A22.7219573 900w, https://dam.mihomes.com/media/5020297/50396.jpeg?timestamp=2026-07-18T01%3A52%3A15.7753163 1200w, https://dam.mihomes.com/media/5020297/50421.jpeg?timestamp=2026-07-18T01%3A52%3A20.7973211 1800w, https://dam.mihomes.com/media/5020297/50422.jpeg?timestamp=2026-07-18T01%3A52%3A24.3655465 2400w" title="[L3203-z035]Bathroom" width="2560" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="4" data-image="https://dam.mihomes.com/media/5020257/50398.jpeg?timestamp=2026-07-18T01%3A48%3A50.0971591 300w, https://dam.mihomes.com/media/5020257/50397.jpeg?timestamp=2026-07-18T01%3A48%3A49.2234421 600w, https://dam.mihomes.com/media/5020257/50423.jpeg?timestamp=2026-07-18T01%3A48%3A56.1386766 900w, https://dam.mihomes.com/media/5020257/50396.jpeg?timestamp=2026-07-18T01%3A48%3A49.8813294 1200w, https://dam.mihomes.com/media/5020257/50421.jpeg?timestamp=2026-07-18T01%3A48%3A53.5642764 1800w, https://dam.mihomes.com/media/5020257/50422.jpeg?timestamp=2026-07-18T01%3A48%3A54.3704341 2400w" data-caption="Porch" data-count="<strong>5</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Porch" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020257/50421.jpeg?timestamp=2026-07-18T01%3A48%3A53.5642764" srcset="https://dam.mihomes.com/media/5020257/50398.jpeg?timestamp=2026-07-18T01%3A48%3A50.0971591 300w, https://dam.mihomes.com/media/5020257/50397.jpeg?timestamp=2026-07-18T01%3A48%3A49.2234421 600w, https://dam.mihomes.com/media/5020257/50423.jpeg?timestamp=2026-07-18T01%3A48%3A56.1386766 900w, https://dam.mihomes.com/media/5020257/50396.jpeg?timestamp=2026-07-18T01%3A48%3A49.8813294 1200w, https://dam.mihomes.com/media/5020257/50421.jpeg?timestamp=2026-07-18T01%3A48%3A53.5642764 1800w, https://dam.mihomes.com/media/5020257/50422.jpeg?timestamp=2026-07-18T01%3A48%3A54.3704341 2400w" title="[L3203-z004]Porch" width="2558" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="5" data-image="https://dam.mihomes.com/media/5020288/50398.jpeg 300w, https://dam.mihomes.com/media/5020288/50397.jpeg 600w, https://dam.mihomes.com/media/5020288/50423.jpeg 900w, https://dam.mihomes.com/media/5020288/50396.jpeg 1200w, https://dam.mihomes.com/media/5020288/50421.jpeg 1800w, https://dam.mihomes.com/media/5020288/50422.jpeg 2400w" data-caption="Backyard" data-count="<strong>6</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Backyard" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020288/50421.jpeg?timestamp=2026-07-18T01%3A50%3A58.3552478" srcset="https://dam.mihomes.com/media/5020288/50398.jpeg 300w, https://dam.mihomes.com/media/5020288/50397.jpeg 600w, https://dam.mihomes.com/media/5020288/50423.jpeg 900w, https://dam.mihomes.com/media/5020288/50396.jpeg 1200w, https://dam.mihomes.com/media/5020288/50421.jpeg 1800w, https://dam.mihomes.com/media/5020288/50422.jpeg 2400w" title="[L3203-z007]Backyard" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="6" data-image="https://dam.mihomes.com/media/5020252/50398.jpeg 300w, https://dam.mihomes.com/media/5020252/50397.jpeg 600w, https://dam.mihomes.com/media/5020252/50423.jpeg 900w, https://dam.mihomes.com/media/5020252/50396.jpeg 1200w, https://dam.mihomes.com/media/5020252/50421.jpeg 1800w, https://dam.mihomes.com/media/5020252/50422.jpeg 2400w" data-caption="Front Exterior" data-count="<strong>7</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Front Exterior" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020252/50421.jpeg?timestamp=2026-07-18T01%3A48%3A51.0500173" srcset="https://dam.mihomes.com/media/5020252/50398.jpeg 300w, https://dam.mihomes.com/media/5020252/50397.jpeg 600w, https://dam.mihomes.com/media/5020252/50423.jpeg 900w, https://dam.mihomes.com/media/5020252/50396.jpeg 1200w, https://dam.mihomes.com/media/5020252/50421.jpeg 1800w, https://dam.mihomes.com/media/5020252/50422.jpeg 2400w" title="[L3203-z001]FrontExterior" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="7" data-image="https://dam.mihomes.com/media/5020266/50398.jpeg 300w, https://dam.mihomes.com/media/5020266/50397.jpeg 600w, https://dam.mihomes.com/media/5020266/50423.jpeg 900w, https://dam.mihomes.com/media/5020266/50396.jpeg 1200w, https://dam.mihomes.com/media/5020266/50421.jpeg 1800w, https://dam.mihomes.com/media/5020266/50422.jpeg 2400w" data-caption="Exterior" data-count="<strong>8</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Exterior" height="1702" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020266/50421.jpeg?timestamp=2026-07-18T01%3A49%3A15.6477420" srcset="https://dam.mihomes.com/media/5020266/50398.jpeg 300w, https://dam.mihomes.com/media/5020266/50397.jpeg 600w, https://dam.mihomes.com/media/5020266/50423.jpeg 900w, https://dam.mihomes.com/media/5020266/50396.jpeg 1200w, https://dam.mihomes.com/media/5020266/50421.jpeg 1800w, https://dam.mihomes.com/media/5020266/50422.jpeg 2400w" title="[L3203-z003]Exterior" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="8" data-image="https://dam.mihomes.com/media/5020278/50398.jpeg 300w, https://dam.mihomes.com/media/5020278/50397.jpeg 600w, https://dam.mihomes.com/media/5020278/50423.jpeg 900w, https://dam.mihomes.com/media/5020278/50396.jpeg 1200w, https://dam.mihomes.com/media/5020278/50421.jpeg 1800w, https://dam.mihomes.com/media/5020278/50422.jpeg 2400w" data-caption="Interior" data-count="<strong>9</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="1702" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020278/50421.jpeg?timestamp=2026-07-18T01%3A50%3A21.5858448" srcset="https://dam.mihomes.com/media/5020278/50398.jpeg 300w, https://dam.mihomes.com/media/5020278/50397.jpeg 600w, https://dam.mihomes.com/media/5020278/50423.jpeg 900w, https://dam.mihomes.com/media/5020278/50396.jpeg 1200w, https://dam.mihomes.com/media/5020278/50421.jpeg 1800w, https://dam.mihomes.com/media/5020278/50422.jpeg 2400w" title="[L3203-z014]Interior" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="9" data-image="https://dam.mihomes.com/media/5020269/50398.jpeg 300w, https://dam.mihomes.com/media/5020269/50397.jpeg 600w, https://dam.mihomes.com/media/5020269/50423.jpeg 900w, https://dam.mihomes.com/media/5020269/50396.jpeg 1200w, https://dam.mihomes.com/media/5020269/50421.jpeg 1800w, https://dam.mihomes.com/media/5020269/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>10</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020269/50421.jpeg?timestamp=2026-07-18T01%3A49%3A32.3718246" srcset="https://dam.mihomes.com/media/5020269/50398.jpeg 300w, https://dam.mihomes.com/media/5020269/50397.jpeg 600w, https://dam.mihomes.com/media/5020269/50423.jpeg 900w, https://dam.mihomes.com/media/5020269/50396.jpeg 1200w, https://dam.mihomes.com/media/5020269/50421.jpeg 1800w, https://dam.mihomes.com/media/5020269/50422.jpeg 2400w" title="[L3203-z011]Bedroom" width="2559" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="10" data-image="https://dam.mihomes.com/media/5020290/50398.jpeg 300w, https://dam.mihomes.com/media/5020290/50397.jpeg 600w, https://dam.mihomes.com/media/5020290/50423.jpeg 900w, https://dam.mihomes.com/media/5020290/50396.jpeg 1200w, https://dam.mihomes.com/media/5020290/50421.jpeg 1800w, https://dam.mihomes.com/media/5020290/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>11</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020290/50421.jpeg?timestamp=2026-07-18T01%3A51%3A14.6988551" srcset="https://dam.mihomes.com/media/5020290/50398.jpeg 300w, https://dam.mihomes.com/media/5020290/50397.jpeg 600w, https://dam.mihomes.com/media/5020290/50423.jpeg 900w, https://dam.mihomes.com/media/5020290/50396.jpeg 1200w, https://dam.mihomes.com/media/5020290/50421.jpeg 1800w, https://dam.mihomes.com/media/5020290/50422.jpeg 2400w" title="[L3203-z012]Bedroom" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="11" data-image="https://dam.mihomes.com/media/5020279/50398.jpeg 300w, https://dam.mihomes.com/media/5020279/50397.jpeg 600w, https://dam.mihomes.com/media/5020279/50423.jpeg 900w, https://dam.mihomes.com/media/5020279/50396.jpeg 1200w, https://dam.mihomes.com/media/5020279/50421.jpeg 1800w, https://dam.mihomes.com/media/5020279/50422.jpeg 2400w" data-caption="Laundry Room" data-count="<strong>12</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Laundry Room" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020279/50421.jpeg?timestamp=2026-07-18T01%3A51%3A06.6623039" srcset="https://dam.mihomes.com/media/5020279/50398.jpeg 300w, https://dam.mihomes.com/media/5020279/50397.jpeg 600w, https://dam.mihomes.com/media/5020279/50423.jpeg 900w, https://dam.mihomes.com/media/5020279/50396.jpeg 1200w, https://dam.mihomes.com/media/5020279/50421.jpeg 1800w, https://dam.mihomes.com/media/5020279/50422.jpeg 2400w" title="[L3203-z015]LaundryRoom" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="12" data-image="https://dam.mihomes.com/media/5020275/50398.jpeg 300w, https://dam.mihomes.com/media/5020275/50397.jpeg 600w, https://dam.mihomes.com/media/5020275/50423.jpeg 900w, https://dam.mihomes.com/media/5020275/50396.jpeg 1200w, https://dam.mihomes.com/media/5020275/50421.jpeg 1800w, https://dam.mihomes.com/media/5020275/50422.jpeg 2400w" data-caption="Bathroom" data-count="<strong>13</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bathroom" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020275/50421.jpeg?timestamp=2026-07-18T01%3A51%3A12.0988860" srcset="https://dam.mihomes.com/media/5020275/50398.jpeg 300w, https://dam.mihomes.com/media/5020275/50397.jpeg 600w, https://dam.mihomes.com/media/5020275/50423.jpeg 900w, https://dam.mihomes.com/media/5020275/50396.jpeg 1200w, https://dam.mihomes.com/media/5020275/50421.jpeg 1800w, https://dam.mihomes.com/media/5020275/50422.jpeg 2400w" title="[L3203-z009]Bathroom" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="13" data-image="https://dam.mihomes.com/media/5020282/50398.jpeg 300w, https://dam.mihomes.com/media/5020282/50397.jpeg 600w, https://dam.mihomes.com/media/5020282/50423.jpeg 900w, https://dam.mihomes.com/media/5020282/50396.jpeg 1200w, https://dam.mihomes.com/media/5020282/50421.jpeg 1800w, https://dam.mihomes.com/media/5020282/50422.jpeg 2400w" data-caption="Interior" data-count="<strong>14</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020282/50421.jpeg?timestamp=2026-07-18T01%3A51%3A30.8812749" srcset="https://dam.mihomes.com/media/5020282/50398.jpeg 300w, https://dam.mihomes.com/media/5020282/50397.jpeg 600w, https://dam.mihomes.com/media/5020282/50423.jpeg 900w, https://dam.mihomes.com/media/5020282/50396.jpeg 1200w, https://dam.mihomes.com/media/5020282/50421.jpeg 1800w, https://dam.mihomes.com/media/5020282/50422.jpeg 2400w" title="[L3203-z013]Interior" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="14" data-image="https://dam.mihomes.com/media/5020272/50398.jpeg 300w, https://dam.mihomes.com/media/5020272/50397.jpeg 600w, https://dam.mihomes.com/media/5020272/50423.jpeg 900w, https://dam.mihomes.com/media/5020272/50396.jpeg 1200w, https://dam.mihomes.com/media/5020272/50421.jpeg 1800w, https://dam.mihomes.com/media/5020272/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>15</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020272/50421.jpeg?timestamp=2026-07-18T01%3A50%3A01.4724055" srcset="https://dam.mihomes.com/media/5020272/50398.jpeg 300w, https://dam.mihomes.com/media/5020272/50397.jpeg 600w, https://dam.mihomes.com/media/5020272/50423.jpeg 900w, https://dam.mihomes.com/media/5020272/50396.jpeg 1200w, https://dam.mihomes.com/media/5020272/50421.jpeg 1800w, https://dam.mihomes.com/media/5020272/50422.jpeg 2400w" title="[L3203-z010]Bedroom" width="2558" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="15" data-image="https://dam.mihomes.com/media/5020276/50398.jpeg 300w, https://dam.mihomes.com/media/5020276/50397.jpeg 600w, https://dam.mihomes.com/media/5020276/50423.jpeg 900w, https://dam.mihomes.com/media/5020276/50396.jpeg 1200w, https://dam.mihomes.com/media/5020276/50421.jpeg 1800w, https://dam.mihomes.com/media/5020276/50422.jpeg 2400w" data-caption="Interior" data-count="<strong>16</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020276/50421.jpeg?timestamp=2026-07-18T01%3A50%3A29.2770964" srcset="https://dam.mihomes.com/media/5020276/50398.jpeg 300w, https://dam.mihomes.com/media/5020276/50397.jpeg 600w, https://dam.mihomes.com/media/5020276/50423.jpeg 900w, https://dam.mihomes.com/media/5020276/50396.jpeg 1200w, https://dam.mihomes.com/media/5020276/50421.jpeg 1800w, https://dam.mihomes.com/media/5020276/50422.jpeg 2400w" title="[L3203-z028]Interior" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="16" data-image="https://dam.mihomes.com/media/5020286/50398.jpeg 300w, https://dam.mihomes.com/media/5020286/50397.jpeg 600w, https://dam.mihomes.com/media/5020286/50423.jpeg 900w, https://dam.mihomes.com/media/5020286/50396.jpeg 1200w, https://dam.mihomes.com/media/5020286/50421.jpeg 1800w, https://dam.mihomes.com/media/5020286/50422.jpeg 2400w" data-caption="Kitchen" data-count="<strong>17</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020286/50421.jpeg?timestamp=2026-07-18T01%3A50%3A45.9911254" srcset="https://dam.mihomes.com/media/5020286/50398.jpeg 300w, https://dam.mihomes.com/media/5020286/50397.jpeg 600w, https://dam.mihomes.com/media/5020286/50423.jpeg 900w, https://dam.mihomes.com/media/5020286/50396.jpeg 1200w, https://dam.mihomes.com/media/5020286/50421.jpeg 1800w, https://dam.mihomes.com/media/5020286/50422.jpeg 2400w" title="[L3203-z027]Kitchen" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="17" data-image="https://dam.mihomes.com/media/5020289/50398.jpeg 300w, https://dam.mihomes.com/media/5020289/50397.jpeg 600w, https://dam.mihomes.com/media/5020289/50423.jpeg 900w, https://dam.mihomes.com/media/5020289/50396.jpeg 1200w, https://dam.mihomes.com/media/5020289/50421.jpeg 1800w, https://dam.mihomes.com/media/5020289/50422.jpeg 2400w" data-caption="Interior" data-count="<strong>18</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020289/50421.jpeg?timestamp=2026-07-18T01%3A50%3A19.3730606" srcset="https://dam.mihomes.com/media/5020289/50398.jpeg 300w, https://dam.mihomes.com/media/5020289/50397.jpeg 600w, https://dam.mihomes.com/media/5020289/50423.jpeg 900w, https://dam.mihomes.com/media/5020289/50396.jpeg 1200w, https://dam.mihomes.com/media/5020289/50421.jpeg 1800w, https://dam.mihomes.com/media/5020289/50422.jpeg 2400w" title="[L3203-z030]Interior" width="2559" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="18" data-image="https://dam.mihomes.com/media/5020291/50398.jpeg 300w, https://dam.mihomes.com/media/5020291/50397.jpeg 600w, https://dam.mihomes.com/media/5020291/50423.jpeg 900w, https://dam.mihomes.com/media/5020291/50396.jpeg 1200w, https://dam.mihomes.com/media/5020291/50421.jpeg 1800w, https://dam.mihomes.com/media/5020291/50422.jpeg 2400w" data-caption="Kitchen" data-count="<strong>19</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020291/50421.jpeg?timestamp=2026-07-18T01%3A51%3A07.1248924" srcset="https://dam.mihomes.com/media/5020291/50398.jpeg 300w, https://dam.mihomes.com/media/5020291/50397.jpeg 600w, https://dam.mihomes.com/media/5020291/50423.jpeg 900w, https://dam.mihomes.com/media/5020291/50396.jpeg 1200w, https://dam.mihomes.com/media/5020291/50421.jpeg 1800w, https://dam.mihomes.com/media/5020291/50422.jpeg 2400w" title="[L3203-z019]Kitchen" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="19" data-image="https://dam.mihomes.com/media/5020268/50398.jpeg 300w, https://dam.mihomes.com/media/5020268/50397.jpeg 600w, https://dam.mihomes.com/media/5020268/50423.jpeg 900w, https://dam.mihomes.com/media/5020268/50396.jpeg 1200w, https://dam.mihomes.com/media/5020268/50421.jpeg 1800w, https://dam.mihomes.com/media/5020268/50422.jpeg 2400w" data-caption="Interior" data-count="<strong>20</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020268/50421.jpeg?timestamp=2026-07-18T01%3A49%3A25.0626557" srcset="https://dam.mihomes.com/media/5020268/50398.jpeg 300w, https://dam.mihomes.com/media/5020268/50397.jpeg 600w, https://dam.mihomes.com/media/5020268/50423.jpeg 900w, https://dam.mihomes.com/media/5020268/50396.jpeg 1200w, https://dam.mihomes.com/media/5020268/50421.jpeg 1800w, https://dam.mihomes.com/media/5020268/50422.jpeg 2400w" title="[L3203-z018]Interior" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="20" data-image="https://dam.mihomes.com/media/5020271/50398.jpeg 300w, https://dam.mihomes.com/media/5020271/50397.jpeg 600w, https://dam.mihomes.com/media/5020271/50423.jpeg 900w, https://dam.mihomes.com/media/5020271/50396.jpeg 1200w, https://dam.mihomes.com/media/5020271/50421.jpeg 1800w, https://dam.mihomes.com/media/5020271/50422.jpeg 2400w" data-caption="Kitchen" data-count="<strong>21</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020271/50421.jpeg?timestamp=2026-07-18T01%3A49%3A36.6832112" srcset="https://dam.mihomes.com/media/5020271/50398.jpeg 300w, https://dam.mihomes.com/media/5020271/50397.jpeg 600w, https://dam.mihomes.com/media/5020271/50423.jpeg 900w, https://dam.mihomes.com/media/5020271/50396.jpeg 1200w, https://dam.mihomes.com/media/5020271/50421.jpeg 1800w, https://dam.mihomes.com/media/5020271/50422.jpeg 2400w" title="[L3203-z016]Kitchen" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="21" data-image="https://dam.mihomes.com/media/5020287/50398.jpeg 300w, https://dam.mihomes.com/media/5020287/50397.jpeg 600w, https://dam.mihomes.com/media/5020287/50423.jpeg 900w, https://dam.mihomes.com/media/5020287/50396.jpeg 1200w, https://dam.mihomes.com/media/5020287/50421.jpeg 1800w, https://dam.mihomes.com/media/5020287/50422.jpeg 2400w" data-caption="Interior" data-count="<strong>22</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020287/50421.jpeg?timestamp=2026-07-18T01%3A50%3A15.7036470" srcset="https://dam.mihomes.com/media/5020287/50398.jpeg 300w, https://dam.mihomes.com/media/5020287/50397.jpeg 600w, https://dam.mihomes.com/media/5020287/50423.jpeg 900w, https://dam.mihomes.com/media/5020287/50396.jpeg 1200w, https://dam.mihomes.com/media/5020287/50421.jpeg 1800w, https://dam.mihomes.com/media/5020287/50422.jpeg 2400w" title="[L3203-z029]Interior" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="22" data-image="https://dam.mihomes.com/media/5020284/50398.jpeg 300w, https://dam.mihomes.com/media/5020284/50397.jpeg 600w, https://dam.mihomes.com/media/5020284/50423.jpeg 900w, https://dam.mihomes.com/media/5020284/50396.jpeg 1200w, https://dam.mihomes.com/media/5020284/50421.jpeg 1800w, https://dam.mihomes.com/media/5020284/50422.jpeg 2400w" data-caption="Interior" data-count="<strong>23</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020284/50421.jpeg?timestamp=2026-07-18T01%3A50%3A24.7496859" srcset="https://dam.mihomes.com/media/5020284/50398.jpeg 300w, https://dam.mihomes.com/media/5020284/50397.jpeg 600w, https://dam.mihomes.com/media/5020284/50423.jpeg 900w, https://dam.mihomes.com/media/5020284/50396.jpeg 1200w, https://dam.mihomes.com/media/5020284/50421.jpeg 1800w, https://dam.mihomes.com/media/5020284/50422.jpeg 2400w" title="[L3203-z024]Interior" width="2559" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="23" data-image="https://dam.mihomes.com/media/5020285/50398.jpeg 300w, https://dam.mihomes.com/media/5020285/50397.jpeg 600w, https://dam.mihomes.com/media/5020285/50423.jpeg 900w, https://dam.mihomes.com/media/5020285/50396.jpeg 1200w, https://dam.mihomes.com/media/5020285/50421.jpeg 1800w, https://dam.mihomes.com/media/5020285/50422.jpeg 2400w" data-caption="Interior" data-count="<strong>24</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020285/50421.jpeg?timestamp=2026-07-18T01%3A51%3A10.8519363" srcset="https://dam.mihomes.com/media/5020285/50398.jpeg 300w, https://dam.mihomes.com/media/5020285/50397.jpeg 600w, https://dam.mihomes.com/media/5020285/50423.jpeg 900w, https://dam.mihomes.com/media/5020285/50396.jpeg 1200w, https://dam.mihomes.com/media/5020285/50421.jpeg 1800w, https://dam.mihomes.com/media/5020285/50422.jpeg 2400w" title="[L3203-z025]Interior" width="2559" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="24" data-image="https://dam.mihomes.com/media/5020283/50398.jpeg 300w, https://dam.mihomes.com/media/5020283/50397.jpeg 600w, https://dam.mihomes.com/media/5020283/50423.jpeg 900w, https://dam.mihomes.com/media/5020283/50396.jpeg 1200w, https://dam.mihomes.com/media/5020283/50421.jpeg 1800w, https://dam.mihomes.com/media/5020283/50422.jpeg 2400w" data-caption="Interior" data-count="<strong>25</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020283/50421.jpeg?timestamp=2026-07-18T01%3A51%3A29.9074241" srcset="https://dam.mihomes.com/media/5020283/50398.jpeg 300w, https://dam.mihomes.com/media/5020283/50397.jpeg 600w, https://dam.mihomes.com/media/5020283/50423.jpeg 900w, https://dam.mihomes.com/media/5020283/50396.jpeg 1200w, https://dam.mihomes.com/media/5020283/50421.jpeg 1800w, https://dam.mihomes.com/media/5020283/50422.jpeg 2400w" title="[L3203-z017]Interior" width="2558" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="25" data-image="https://dam.mihomes.com/media/5020277/50398.jpeg 300w, https://dam.mihomes.com/media/5020277/50397.jpeg 600w, https://dam.mihomes.com/media/5020277/50423.jpeg 900w, https://dam.mihomes.com/media/5020277/50396.jpeg 1200w, https://dam.mihomes.com/media/5020277/50421.jpeg 1800w, https://dam.mihomes.com/media/5020277/50422.jpeg 2400w" data-caption="Interior" data-count="<strong>26</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020277/50421.jpeg?timestamp=2026-07-18T01%3A50%3A04.3983821" srcset="https://dam.mihomes.com/media/5020277/50398.jpeg 300w, https://dam.mihomes.com/media/5020277/50397.jpeg 600w, https://dam.mihomes.com/media/5020277/50423.jpeg 900w, https://dam.mihomes.com/media/5020277/50396.jpeg 1200w, https://dam.mihomes.com/media/5020277/50421.jpeg 1800w, https://dam.mihomes.com/media/5020277/50422.jpeg 2400w" title="[L3203-z020]Interior" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="26" data-image="https://dam.mihomes.com/media/5020273/50398.jpeg 300w, https://dam.mihomes.com/media/5020273/50397.jpeg 600w, https://dam.mihomes.com/media/5020273/50423.jpeg 900w, https://dam.mihomes.com/media/5020273/50396.jpeg 1200w, https://dam.mihomes.com/media/5020273/50421.jpeg 1800w, https://dam.mihomes.com/media/5020273/50422.jpeg 2400w" data-caption="Interior" data-count="<strong>27</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020273/50421.jpeg?timestamp=2026-07-18T01%3A49%3A49.0783763" srcset="https://dam.mihomes.com/media/5020273/50398.jpeg 300w, https://dam.mihomes.com/media/5020273/50397.jpeg 600w, https://dam.mihomes.com/media/5020273/50423.jpeg 900w, https://dam.mihomes.com/media/5020273/50396.jpeg 1200w, https://dam.mihomes.com/media/5020273/50421.jpeg 1800w, https://dam.mihomes.com/media/5020273/50422.jpeg 2400w" title="[L3203-z021]Interior" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="27" data-image="https://dam.mihomes.com/media/5020274/50398.jpeg 300w, https://dam.mihomes.com/media/5020274/50397.jpeg 600w, https://dam.mihomes.com/media/5020274/50423.jpeg 900w, https://dam.mihomes.com/media/5020274/50396.jpeg 1200w, https://dam.mihomes.com/media/5020274/50421.jpeg 1800w, https://dam.mihomes.com/media/5020274/50422.jpeg 2400w" data-caption="Interior" data-count="<strong>28</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020274/50421.jpeg?timestamp=2026-07-18T01%3A49%3A42.5059901" srcset="https://dam.mihomes.com/media/5020274/50398.jpeg 300w, https://dam.mihomes.com/media/5020274/50397.jpeg 600w, https://dam.mihomes.com/media/5020274/50423.jpeg 900w, https://dam.mihomes.com/media/5020274/50396.jpeg 1200w, https://dam.mihomes.com/media/5020274/50421.jpeg 1800w, https://dam.mihomes.com/media/5020274/50422.jpeg 2400w" title="[L3203-z023]Interior" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="28" data-image="https://dam.mihomes.com/media/5020303/50398.jpeg 300w, https://dam.mihomes.com/media/5020303/50397.jpeg 600w, https://dam.mihomes.com/media/5020303/50423.jpeg 900w, https://dam.mihomes.com/media/5020303/50396.jpeg 1200w, https://dam.mihomes.com/media/5020303/50421.jpeg 1800w, https://dam.mihomes.com/media/5020303/50422.jpeg 2400w" data-caption="Interior" data-count="<strong>29</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020303/50421.jpeg?timestamp=2026-07-18T01%3A52%3A07.8923364" srcset="https://dam.mihomes.com/media/5020303/50398.jpeg 300w, https://dam.mihomes.com/media/5020303/50397.jpeg 600w, https://dam.mihomes.com/media/5020303/50423.jpeg 900w, https://dam.mihomes.com/media/5020303/50396.jpeg 1200w, https://dam.mihomes.com/media/5020303/50421.jpeg 1800w, https://dam.mihomes.com/media/5020303/50422.jpeg 2400w" title="[L3203-z032]Interior" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="29" data-image="https://dam.mihomes.com/media/5020270/50398.jpeg 300w, https://dam.mihomes.com/media/5020270/50397.jpeg 600w, https://dam.mihomes.com/media/5020270/50423.jpeg 900w, https://dam.mihomes.com/media/5020270/50396.jpeg 1200w, https://dam.mihomes.com/media/5020270/50421.jpeg 1800w, https://dam.mihomes.com/media/5020270/50422.jpeg 2400w" data-caption="Interior" data-count="<strong>30</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020270/50421.jpeg?timestamp=2026-07-18T01%3A50%3A03.3434347" srcset="https://dam.mihomes.com/media/5020270/50398.jpeg 300w, https://dam.mihomes.com/media/5020270/50397.jpeg 600w, https://dam.mihomes.com/media/5020270/50423.jpeg 900w, https://dam.mihomes.com/media/5020270/50396.jpeg 1200w, https://dam.mihomes.com/media/5020270/50421.jpeg 1800w, https://dam.mihomes.com/media/5020270/50422.jpeg 2400w" title="[L3203-z031]Interior" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="30" data-image="https://dam.mihomes.com/media/5020299/50398.jpeg 300w, https://dam.mihomes.com/media/5020299/50397.jpeg 600w, https://dam.mihomes.com/media/5020299/50423.jpeg 900w, https://dam.mihomes.com/media/5020299/50396.jpeg 1200w, https://dam.mihomes.com/media/5020299/50421.jpeg 1800w, https://dam.mihomes.com/media/5020299/50422.jpeg 2400w" data-caption="Interior" data-count="<strong>31</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020299/50421.jpeg?timestamp=2026-07-18T01%3A51%3A55.4803036" srcset="https://dam.mihomes.com/media/5020299/50398.jpeg 300w, https://dam.mihomes.com/media/5020299/50397.jpeg 600w, https://dam.mihomes.com/media/5020299/50423.jpeg 900w, https://dam.mihomes.com/media/5020299/50396.jpeg 1200w, https://dam.mihomes.com/media/5020299/50421.jpeg 1800w, https://dam.mihomes.com/media/5020299/50422.jpeg 2400w" title="[L3203-z033]Interior" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="31" data-image="https://dam.mihomes.com/media/5020307/50398.jpeg 300w, https://dam.mihomes.com/media/5020307/50397.jpeg 600w, https://dam.mihomes.com/media/5020307/50423.jpeg 900w, https://dam.mihomes.com/media/5020307/50396.jpeg 1200w, https://dam.mihomes.com/media/5020307/50421.jpeg 1800w, https://dam.mihomes.com/media/5020307/50422.jpeg 2400w" data-caption="Owner's Bathroom" data-count="<strong>32</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owner's Bathroom" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020307/50421.jpeg?timestamp=2026-07-18T01%3A51%3A45.2519441" srcset="https://dam.mihomes.com/media/5020307/50398.jpeg 300w, https://dam.mihomes.com/media/5020307/50397.jpeg 600w, https://dam.mihomes.com/media/5020307/50423.jpeg 900w, https://dam.mihomes.com/media/5020307/50396.jpeg 1200w, https://dam.mihomes.com/media/5020307/50421.jpeg 1800w, https://dam.mihomes.com/media/5020307/50422.jpeg 2400w" title="[L3203-z037]OwnersBathroom" width="2559" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="32" data-image="https://dam.mihomes.com/media/5020295/50398.jpeg 300w, https://dam.mihomes.com/media/5020295/50397.jpeg 600w, https://dam.mihomes.com/media/5020295/50423.jpeg 900w, https://dam.mihomes.com/media/5020295/50396.jpeg 1200w, https://dam.mihomes.com/media/5020295/50421.jpeg 1800w, https://dam.mihomes.com/media/5020295/50422.jpeg 2400w" data-caption="Bathroom" data-count="<strong>33</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bathroom" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020295/50421.jpeg?timestamp=2026-07-18T01%3A51%3A44.5002815" srcset="https://dam.mihomes.com/media/5020295/50398.jpeg 300w, https://dam.mihomes.com/media/5020295/50397.jpeg 600w, https://dam.mihomes.com/media/5020295/50423.jpeg 900w, https://dam.mihomes.com/media/5020295/50396.jpeg 1200w, https://dam.mihomes.com/media/5020295/50421.jpeg 1800w, https://dam.mihomes.com/media/5020295/50422.jpeg 2400w" title="[L3203-z036]Bathroom" width="2559" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="33" data-image="https://dam.mihomes.com/media/5020293/50398.jpeg 300w, https://dam.mihomes.com/media/5020293/50397.jpeg 600w, https://dam.mihomes.com/media/5020293/50423.jpeg 900w, https://dam.mihomes.com/media/5020293/50396.jpeg 1200w, https://dam.mihomes.com/media/5020293/50421.jpeg 1800w, https://dam.mihomes.com/media/5020293/50422.jpeg 2400w" data-caption="Interior" data-count="<strong>34</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Interior" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020293/50421.jpeg?timestamp=2026-07-18T01%3A51%3A31.3653704" srcset="https://dam.mihomes.com/media/5020293/50398.jpeg 300w, https://dam.mihomes.com/media/5020293/50397.jpeg 600w, https://dam.mihomes.com/media/5020293/50423.jpeg 900w, https://dam.mihomes.com/media/5020293/50396.jpeg 1200w, https://dam.mihomes.com/media/5020293/50421.jpeg 1800w, https://dam.mihomes.com/media/5020293/50422.jpeg 2400w" title="[L3203-z034]Interior" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="34" data-image="https://dam.mihomes.com/media/5020300/50398.jpeg 300w, https://dam.mihomes.com/media/5020300/50397.jpeg 600w, https://dam.mihomes.com/media/5020300/50423.jpeg 900w, https://dam.mihomes.com/media/5020300/50396.jpeg 1200w, https://dam.mihomes.com/media/5020300/50421.jpeg 1800w, https://dam.mihomes.com/media/5020300/50422.jpeg 2400w" data-caption="Owner's Closet" data-count="<strong>35</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owner's Closet" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020300/50421.jpeg?timestamp=2026-07-18T01%3A52%3A33.6701140" srcset="https://dam.mihomes.com/media/5020300/50398.jpeg 300w, https://dam.mihomes.com/media/5020300/50397.jpeg 600w, https://dam.mihomes.com/media/5020300/50423.jpeg 900w, https://dam.mihomes.com/media/5020300/50396.jpeg 1200w, https://dam.mihomes.com/media/5020300/50421.jpeg 1800w, https://dam.mihomes.com/media/5020300/50422.jpeg 2400w" title="[L3203-z038]OwnersCloset" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="35" data-image="https://dam.mihomes.com/media/5020255/50398.jpeg 300w, https://dam.mihomes.com/media/5020255/50397.jpeg 600w, https://dam.mihomes.com/media/5020255/50423.jpeg 900w, https://dam.mihomes.com/media/5020255/50396.jpeg 1200w, https://dam.mihomes.com/media/5020255/50421.jpeg 1800w, https://dam.mihomes.com/media/5020255/50422.jpeg 2400w" data-caption="Backyard" data-count="<strong>36</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Backyard" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020255/50421.jpeg?timestamp=2026-07-18T01%3A48%3A45.2837234" srcset="https://dam.mihomes.com/media/5020255/50398.jpeg 300w, https://dam.mihomes.com/media/5020255/50397.jpeg 600w, https://dam.mihomes.com/media/5020255/50423.jpeg 900w, https://dam.mihomes.com/media/5020255/50396.jpeg 1200w, https://dam.mihomes.com/media/5020255/50421.jpeg 1800w, https://dam.mihomes.com/media/5020255/50422.jpeg 2400w" title="[L3203-z005]Backyard" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="36" data-image="https://dam.mihomes.com/media/5020292/50398.jpeg 300w, https://dam.mihomes.com/media/5020292/50397.jpeg 600w, https://dam.mihomes.com/media/5020292/50423.jpeg 900w, https://dam.mihomes.com/media/5020292/50396.jpeg 1200w, https://dam.mihomes.com/media/5020292/50421.jpeg 1800w, https://dam.mihomes.com/media/5020292/50422.jpeg 2400w" data-caption="Backyard" data-count="<strong>37</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Backyard" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020292/50421.jpeg?timestamp=2026-07-18T01%3A50%3A33.4395723" srcset="https://dam.mihomes.com/media/5020292/50398.jpeg 300w, https://dam.mihomes.com/media/5020292/50397.jpeg 600w, https://dam.mihomes.com/media/5020292/50423.jpeg 900w, https://dam.mihomes.com/media/5020292/50396.jpeg 1200w, https://dam.mihomes.com/media/5020292/50421.jpeg 1800w, https://dam.mihomes.com/media/5020292/50422.jpeg 2400w" title="[L3203-z008]Backyard" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="37" data-image="https://dam.mihomes.com/media/5020260/50398.jpeg 300w, https://dam.mihomes.com/media/5020260/50397.jpeg 600w, https://dam.mihomes.com/media/5020260/50423.jpeg 900w, https://dam.mihomes.com/media/5020260/50396.jpeg 1200w, https://dam.mihomes.com/media/5020260/50421.jpeg 1800w, https://dam.mihomes.com/media/5020260/50422.jpeg 2400w" data-caption="Backyard" data-count="<strong>38</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Backyard" height="1703" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5020260/50421.jpeg?timestamp=2026-07-18T01%3A48%3A32.9421197" srcset="https://dam.mihomes.com/media/5020260/50398.jpeg 300w, https://dam.mihomes.com/media/5020260/50397.jpeg 600w, https://dam.mihomes.com/media/5020260/50423.jpeg 900w, https://dam.mihomes.com/media/5020260/50396.jpeg 1200w, https://dam.mihomes.com/media/5020260/50421.jpeg 1800w, https://dam.mihomes.com/media/5020260/50422.jpeg 2400w" title="[L3203-z006]Backyard" width="2560" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="38" data-image="https://dam.mihomes.com/media/103521/50398.jpeg 300w, https://dam.mihomes.com/media/103521/50397.jpeg 600w, https://dam.mihomes.com/media/103521/50423.jpeg 900w, https://dam.mihomes.com/media/103521/50396.jpeg 1200w, https://dam.mihomes.com/media/103521/50421.jpeg 1800w, https://dam.mihomes.com/media/103521/50422.jpeg 2400w" data-caption="Lifestyle - Representational Photo" data-count="<strong>39</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/103521/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/103521/50398.jpeg 300w, https://dam.mihomes.com/media/103521/50397.jpeg 600w, https://dam.mihomes.com/media/103521/50423.jpeg 900w, https://dam.mihomes.com/media/103521/50396.jpeg 1200w, https://dam.mihomes.com/media/103521/50421.jpeg 1800w, https://dam.mihomes.com/media/103521/50422.jpeg 2400w" title="MerionRCLIFESTYLE0603151160330" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="39" data-image="https://dam.mihomes.com/media/103523/50398.jpeg 300w, https://dam.mihomes.com/media/103523/50397.jpeg 600w, https://dam.mihomes.com/media/103523/50423.jpeg 900w, https://dam.mihomes.com/media/103523/50396.jpeg 1200w, https://dam.mihomes.com/media/103523/50421.jpeg 1800w, https://dam.mihomes.com/media/103523/50422.jpeg 2400w" data-caption="Lifestyle - Representational Photo" data-count="<strong>40</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/103523/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/103523/50398.jpeg 300w, https://dam.mihomes.com/media/103523/50397.jpeg 600w, https://dam.mihomes.com/media/103523/50423.jpeg 900w, https://dam.mihomes.com/media/103523/50396.jpeg 1200w, https://dam.mihomes.com/media/103523/50421.jpeg 1800w, https://dam.mihomes.com/media/103523/50422.jpeg 2400w" title="BuckCreekWoodsCommunityLifestyle2160831" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="40" data-image="https://dam.mihomes.com/media/40628/50398.jpeg 300w, https://dam.mihomes.com/media/40628/50397.jpeg 600w, https://dam.mihomes.com/media/40628/50423.jpeg 900w, https://dam.mihomes.com/media/40628/50396.jpeg 1200w, https://dam.mihomes.com/media/40628/50421.jpeg 1800w, https://dam.mihomes.com/media/40628/50422.jpeg 2400w" data-caption="Lifestyle - Representational Photo" data-count="<strong>41</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/40628/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/40628/50398.jpeg 300w, https://dam.mihomes.com/media/40628/50397.jpeg 600w, https://dam.mihomes.com/media/40628/50423.jpeg 900w, https://dam.mihomes.com/media/40628/50396.jpeg 1200w, https://dam.mihomes.com/media/40628/50421.jpeg 1800w, https://dam.mihomes.com/media/40628/50422.jpeg 2400w" title="EstrellaLifestyle5160512" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="41" data-image="https://dam.mihomes.com/media/103524/50398.jpeg 300w, https://dam.mihomes.com/media/103524/50397.jpeg 600w, https://dam.mihomes.com/media/103524/50423.jpeg 900w, https://dam.mihomes.com/media/103524/50396.jpeg 1200w, https://dam.mihomes.com/media/103524/50421.jpeg 1800w, https://dam.mihomes.com/media/103524/50422.jpeg 2400w" data-caption="Lifestyle - Representational Photo" data-count="<strong>42</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/103524/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/103524/50398.jpeg 300w, https://dam.mihomes.com/media/103524/50397.jpeg 600w, https://dam.mihomes.com/media/103524/50423.jpeg 900w, https://dam.mihomes.com/media/103524/50396.jpeg 1200w, https://dam.mihomes.com/media/103524/50421.jpeg 1800w, https://dam.mihomes.com/media/103524/50422.jpeg 2400w" title="EstrellaLifestyle21160512" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="42" data-image="https://dam.mihomes.com/media/1354091/50398.jpeg 300w, https://dam.mihomes.com/media/1354091/50397.jpeg 600w, https://dam.mihomes.com/media/1354091/50423.jpeg 900w, https://dam.mihomes.com/media/1354091/50396.jpeg 1200w, https://dam.mihomes.com/media/1354091/50421.jpeg 1800w, https://dam.mihomes.com/media/1354091/50422.jpeg 2400w" data-caption="Lifestyle - Representational Photo" data-count="<strong>43</strong> of <strong>43</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lifestyle" height="800" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/1354091/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/1354091/50398.jpeg 300w, https://dam.mihomes.com/media/1354091/50397.jpeg 600w, https://dam.mihomes.com/media/1354091/50423.jpeg 900w, https://dam.mihomes.com/media/1354091/50396.jpeg 1200w, https://dam.mihomes.com/media/1354091/50421.jpeg 1800w, https://dam.mihomes.com/media/1354091/50422.jpeg 2400w" title="EmoryParkLifestyle5160201" width="1200" />
+ </div>
+ </div>
+ </div>
+ </li>
+ </ul>
+ <div class="gallery-slide__footer">
+ <span class="gallery-slide__title title-caption"></span>
+ <div class="gallery-slide__share-buttons">
+ <span class="count"></span>
+ </div>
+ </div>
+ </div>
+ </div>
+</div><script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Product",
+ "additionalType": "https://schema.org/SingleFamilyResidence",
+ "name": "1077 Garnet Star Drive",
+ "sku": "1_1eo2sdAUeYoyPpxLbh9w",
+ "description": "Welcome to 1077 Garnet Star Drive, La Marque, TX — a new construction single-story home built by M/I Homes. This thoughtfully designed home offers 1,538 square feet of comfortable living space with 3 bedrooms and 2 bathrooms, ideal for a range of lifestyles.",
+ "image": [
+ "https://dam.mihomes.com/media/5020258/50421.jpeg",
+ "https://dam.mihomes.com/media/5020281/50421.jpeg",
+ "https://dam.mihomes.com/media/5020280/50421.jpeg",
+ "https://dam.mihomes.com/media/5020297/50421.jpeg",
+ "https://dam.mihomes.com/media/5020257/50421.jpeg",
+ "https://dam.mihomes.com/media/5020288/50421.jpeg",
+ "https://dam.mihomes.com/media/5020252/50421.jpeg",
+ "https://dam.mihomes.com/media/5020266/50421.jpeg",
+ "https://dam.mihomes.com/media/5020278/50421.jpeg",
+ "https://dam.mihomes.com/media/5020269/50421.jpeg",
+ "https://dam.mihomes.com/media/5020290/50421.jpeg",
+ "https://dam.mihomes.com/media/5020279/50421.jpeg",
+ "https://dam.mihomes.com/media/5020275/50421.jpeg",
+ "https://dam.mihomes.com/media/5020282/50421.jpeg",
+ "https://dam.mihomes.com/media/5020272/50421.jpeg",
+ "https://dam.mihomes.com/media/5020276/50421.jpeg",
+ "https://dam.mihomes.com/media/5020286/50421.jpeg",
+ "https://dam.mihomes.com/media/5020289/50421.jpeg",
+ "https://dam.mihomes.com/media/5020291/50421.jpeg",
+ "https://dam.mihomes.com/media/5020268/50421.jpeg",
+ "https://dam.mihomes.com/media/5020271/50421.jpeg",
+ "https://dam.mihomes.com/media/5020287/50421.jpeg",
+ "https://dam.mihomes.com/media/5020284/50421.jpeg",
+ "https://dam.mihomes.com/media/5020285/50421.jpeg",
+ "https://dam.mihomes.com/media/5020283/50421.jpeg",
+ "https://dam.mihomes.com/media/5020277/50421.jpeg",
+ "https://dam.mihomes.com/media/5020273/50421.jpeg",
+ "https://dam.mihomes.com/media/5020274/50421.jpeg",
+ "https://dam.mihomes.com/media/5020303/50421.jpeg",
+ "https://dam.mihomes.com/media/5020270/50421.jpeg",
+ "https://dam.mihomes.com/media/5020299/50421.jpeg",
+ "https://dam.mihomes.com/media/5020307/50421.jpeg",
+ "https://dam.mihomes.com/media/5020295/50421.jpeg",
+ "https://dam.mihomes.com/media/5020293/50421.jpeg",
+ "https://dam.mihomes.com/media/5020300/50421.jpeg",
+ "https://dam.mihomes.com/media/5020255/50421.jpeg",
+ "https://dam.mihomes.com/media/5020292/50421.jpeg",
+ "https://dam.mihomes.com/media/5020260/50421.jpeg",
+ "https://dam.mihomes.com/media/103521/50421.jpeg",
+ "https://dam.mihomes.com/media/103523/50421.jpeg",
+ "https://dam.mihomes.com/media/40628/50421.jpeg",
+ "https://dam.mihomes.com/media/103524/50421.jpeg",
+ "https://dam.mihomes.com/media/1354091/50421.jpeg"
+ ],
+ "url": "https://www.mihomes.com/new-homes/texas/greater-houston/la-marque/ambrose/dawson-plan/1077-garnet-star-drive",
+ "brand": {
+ "@type": "Organization",
+ "parentOrganization": {
+ "@type": "Organization",
+ "name": "M/I Homes"
+ },
+ "name": "Ambrose"
+ },
+ "address": {
+ "@type": "PostalAddress",
+ "streetAddress": "1077 Garnet Star Drive",
+ "addressLocality": "La Marque",
+ "addressRegion": "TX",
+ "postalCode": "77568",
+ "addressCountry": "US"
+ },
+ "geo": {
+ "@type": "GeoCoordinates",
+ "latitude": 29.369278,
+ "longitude": -95.01531
+ },
+ "telephone": "+12813937070",
+ "offers": {
+ "@type": "Offer",
+ "url": "/new-homes/texas/greater-houston/la-marque/ambrose/dawson-plan/1077-garnet-star-drive",
+ "price": "269990.00",
+ "priceCurrency": "USD",
+ "priceValidUntil": "08-12-2026",
+ "itemCondition": "https://schema.org/NewCondition",
+ "availability": "https://schema.org/InStock"
+ },
+ "model": "https://www.mihomes.com/new-homes/texas/greater-houston/la-marque/ambrose/dawson-plan",
+ "numberOfBedrooms": {
+ "@type": "Integer",
+ "value": 3
+ },
+ "numberOfFullBathrooms": {
+ "@type": "Integer",
+ "value": 2
+ },
+ "numberOfPartialBathrooms": {
+ "@type": "Integer",
+ "value": 0
+ },
+ "petsAllowed": true,
+ "yearBuilt": "2026",
+ "floorSize": {
+ "@type": "QuantitativeValue",
+ "value": 1538,
+ "unitCode": "FTK"
+ }
+}</script>
+<div class="modals" data-modal-container aria-hidden="true">
+ <div class="modal box" data-modal id="signup-modal">
+ <button class="modal-close" data-modal-close>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+
+ <h2 class="h1 alt">Sign up for an M/I Homes account</h2>
+ <p>Save your favorite home plans and communities, compare home plans and share your dream home with sales associates and real estate agents.</p>
+ <p>
+ Already a member?
+ <a class="button-plain" href="/account/login">Log In to your account »</a>
+ </p>
+ <a class="button button-wide" href="/account/register">
+ <span class="button-text">
+ Sign up with email
+ </span>
+ </a>
+ </div>
+</div>
+
+<div class="product-header" data-yes="true">
+
+ <div class="product-header-row product-header__top">
+
+ <div class="product-header-centered ">
+ <div>
+ <a href="/new-homes/texas/greater-houston/la-marque/ambrose" class="button-plain">
+ Ambrose
+ </a>
+
+ <h1 class="header-seo-h2">
+ 1077 Garnet Star Drive, La Marque, TX 77568
+ <button class="aux-nav-link button-favorite-product gami-favorite-save" data-favorite-type="Home" data-favorite-id="a35efdd7-1d6b-4701-98a3-23e9c4b6e1f7" data-favorite-fav-id="a35efdd7-1d6b-4701-98a3-23e9c4b6e1f7" data-add-favorite>
+ <svg class="icon icon-favorite" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#favorite"></use>
+</svg>
+ <span class="aux-nav-link-action-text">
+ Favorite
+ </span>
+ </button>
+ </h1>
+ </div>
+
+ <div class="product-header__actions">
+ <a class="button button-mobile-link button-virtual-tour event-click" href="https://my.matterport.com/show/?m=89EHomAH5Cg" target="_blank" data-event-category=VirtualTour
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <span class="button-text">Virtual Tour</span>
+ </a>
+ </div>
+ </div>
+ </div>
+
+ <div class="product-header-row">
+ <div class="product-header-centered tooptip-container">
+ <div>
+ <dl>
+ <dt>Ready date:</dt>
+ <dd>
+ <strong class="current-size">
+ Ready Now
+ </strong>
+ </dd>
+ </dl>
+ </div>
+ <div class="product-header-price">
+
+ Price:
+ <span class="home-card-price-old">$297,535</span>
+ <span class="product-header-price-new" content="269990">$269,990</span>
+
+ (
+ <span data-open-modal="mortgage-payment-calculator-modal" data-tooltip="Click estimate to see how we calculate this monthly payment" data-annualinsurance="0" data-taxrate="2.9741" data-interestrate="4.875" data-downpayment="4" data-price="269990" data-mortgage-monthly-payment tabindex="0" class="product-header-price-monthly"></span>
+ )
+
+
+ <span class="product-header-calculator">
+ <a class="button-plain button-plain-icon small button-icon-right gami-mortcalc-view" data-open-modal="mortgage-payment-calculator-modal">
+ <svg class="icon icon-calculator" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#calculator"></use>
+</svg>
+ Estimate Your Monthly Payment
+ </a>
+ </span>
+ </div>
+ </div>
+ </div>
+</div> <a rel="noopener" href="/new-homes/texas/greater-houston/la-marque/ambrose/plat map?lot=260545003203" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=5022 Perennial Lane, La Marque, TX 77568&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=N-Lq5PzZdLwoNhSrSkzD_x8fEzA=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+<div class="product-header-centered product-header-centered--contact-card-only">
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Ambrose</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://www.google.com/maps/dir/?api=1&destination=29.369466,-95.015171">
+ 5022 Perennial Lane<br>La Marque, TX 77568
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+</div><div class="product-header">
+ <div class="product-header product-header-navigation">
+ <nav class="product-header-subnav" data-subnav="">
+ <div class="product-header-subnav-wrapper">
+ <div class="product-header-subnav-mobile-bottom">
+ <a class="button button-contact-us" href="/support/sales">
+ <span class="button-text">
+ Contact Us
+ </span>
+ </a>
+ </div>
+
+
+ <a class="product-header-subnav-toggle subnav-link" data-subnav-toggle="">
+ <span class="text" data-subnav-text="">Overview</span>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </a>
+
+ <ul class="product-header-subnav-links" data-subnav-links=""></ul>
+ </div>
+ </nav>
+
+ <div class="product-header-subnav-spacer"></div>
+
+ <a href="#overview" class="product-header__back-to-top is-hidden" data-back-to-top>
+ <div class="arrow arrow--up"></div>
+ </a>
+ </div>
+</div><section class="content-inner-with-sidebar content-inner-with-sidebar-right">
+
+
+ <div class="content-inner-content">
+
+
+
+
+
+<section class="plan-specification">
+ <h2 class="plan-specification__header">
+ About 1077 Garnet Star Drive
+ </h2>
+ <a class="plan-specification__get-directions button-plain button-plain-alt negative-top gami-directions-exit" target="_blank" href="https://www.google.com/maps/search/?api=1&query=29.369278,-95.01531">Get Directions</a>
+ <ul class="plan-specification__list">
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sq-ft" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sq-ft"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">square feet</span>
+ <strong class="plan-specification-item__value">
+ 1,538
+ </strong>
+ </div>
+ </li>
+ <li class="stories-specification">
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-homes" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#homes"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">stories</span>
+ <strong class="plan-specification-item__value">
+ 1
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-bed" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#bed"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">bedrooms</span>
+ <strong class="plan-specification-item__value">
+ 3
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-shower" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#shower"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">full bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 2
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sink" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sink"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">half bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 0
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-car" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#car"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">garages</span>
+ <strong class="plan-specification-item__value">
+ 2
+ <span data-tooltip="The most common approach to a home's garage, the front load garage incorporates the garage entry into a home's front elevation.">(Front Load)</span>
+
+ </strong>
+ </div>
+ </li>
+ </ul>
+</section>
+
+<div class="overview-table">
+ <div class="overview-table-table">
+ <dl>
+ <dt>City</dt>
+ <dd>La Marque, TX</dd>
+
+ <dt>Owner's Suite</dt>
+ <dd>First Floor</dd>
+
+ <dt>County</dt>
+ <dd>Galveston</dd>
+
+ <dt>Home Type</dt>
+ <dd>Single Family Home</dd>
+
+ <dt>School District</dt>
+ <dd>Hitchcock ISD</dd>
+
+ <dt>Foundation Type</dt>
+ <dd>Slab</dd>
+
+ <dt>Home Plan</dt>
+ <dd>Dawson</dd>
+
+ <dt>MLS Number</dt>
+ <dd>19555640</dd>
+
+ <dt>Homesite</dt>
+ <dd>3203</dd>
+
+ </dl>
+ </div>
+</div> <h2>
+ New 3-Bedroom Home for Sale in La Marque, Texas
+ </h2>
+ <div class="content-inner-content__capped-mobile-content">
+ <p>Welcome to 1077 Garnet Star Drive, La Marque, TX — a new construction single-story home built by M/I Homes. This thoughtfully designed home offers 1,538 square feet of comfortable living space with 3 bedrooms and 2 bathrooms, ideal for a range of lifestyles.</p>
+<p>Step inside to discover an open-concept living space that creates a seamless flow between the main living areas. The quality of design is evident throughout, with carefully selected finishes and a well-planned floorplan that maximizes both function and comfort. The owner's bedroom features a private en-suite bathroom, providing a relaxing retreat at the end of the day.</p>
+<p>Outside, a covered patio extends the living area and offers a great space for relaxing or entertaining guests.</p>
+<h3>Key Features:</h3>
+<ul>
+ <li>New construction by M/I Homes</li>
+ <li>Single-story floorplan with 1,538 square feet</li>
+ <li>3 bedrooms and 2 bathrooms</li>
+ <li>Open-concept living space</li>
+ <li>Owner's bedroom with private en-suite bathroom</li>
+ <li>Covered patio for outdoor enjoyment</li>
+ <li>Quality design and finishes throughout</li>
+</ul>
+<p>This home is situated in a welcoming neighborhood with convenient proximity to parks, making it easy to enjoy outdoor activities and green spaces. The surrounding neighborhood offers a pleasant setting with well-maintained surroundings and a friendly atmosphere that residents appreciate.</p>
+<p>This move-in ready home delivers quality construction and thoughtful design in a single-story layout.</p>
+
+ <!-- and done -->
+ <h3>
+ About the Community
+ </h3>
+ <p>
+ Ambrose in La Marque offers a welcoming community of single-family homes just off I‑45, placing you within easy reach of Houston, League City, Friendswood, and the Galveston coast. The setting provides a relaxed, coastal‑inspired lifestyle with parks, beaches, shopping, and everyday conveniences close by.
+
+Homes feature open‑concept designs with options such as a study, enhanced owner’s bath, covered patio, or additional garage space. Smart Series floorplans simplify the design process while still allowing you to personalize finishes and create a home that fits your style.
+
+Residents enjoy nearby attractions including Galveston Island, Mall of the Mainland, Bayou Wildlife Zoo, and Bayou Golf Course, along with local retailers and grocers. Families are served by Hitchcock Independent School District. Ambrose offers the comfort of a small‑town feel with the benefit of quick access to major destinations, making it an appealing place to settle in and enjoy everyday living.
+ <br />
+ <a class="button-plain button-plain-alt" href="/new-homes/texas/greater-houston/la-marque/ambrose">Learn more about this community »</a>
+ </p>
+ </div>
+ <button class="faq__question color-aqua" aria-expanded="false" data-read-more="">
+ <span class="faq__icon-wrapper">
+ <span class="faq__icon">
+ <svg class="icon icon-arrow" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#arrow"></use>
+</svg>
+ </span>
+ </span>
+ <span data-read-more-collapsed="">Read More</span>
+ <span data-read-more-expanded="">Show Less</span>
+ <span class="show-hide-text hidden-text">Show</span>
+ </button>
+ <div class="matterport-wrapper">
+ <iframe loading="lazy" class="box-full" width="803" height="480" src="https://my.matterport.com/show/?m=89EHomAH5Cg" frameborder="0" allowfullscreen allow="vr" style="align-self: center" data-subnav-page-link="3D Tour" id="3dTour"></iframe>
+ </div>
+
+
+
+ </div>
+
+ <div class="content-sidebar-right">
+ <a rel="noopener" href="/new-homes/texas/greater-houston/la-marque/ambrose/plat map?lot=260545003203" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=5022 Perennial Lane, La Marque, TX 77568&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=N-Lq5PzZdLwoNhSrSkzD_x8fEzA=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Ambrose</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://www.google.com/maps/dir/?api=1&destination=29.369466,-95.015171">
+ 5022 Perennial Lane<br>La Marque, TX 77568
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+
+
+ <figure class="lead-form lead-form-sidebar lead-form-sidebar--compact lead-form-sidebar-signup">
+ <div class="lead-form-container">
+ <div id="lead-sidebar-header" class="lead-form-sidebar-header lead-form-sidebar-header-image">
+ <div id="isa-information" data-sidebar-section="1">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-3">
+ <img data-dam-generated alt="kschieb@MIHOMES.com-0515202606.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4749913/50421.jpeg?timestamp=2026-05-15T10%3A57%3A30.3393142" srcset="https://dam.mihomes.com/media/4749913/50398.jpeg?timestamp=2026-05-15T10%3A57%3A29.1231152 300w, https://dam.mihomes.com/media/4749913/50397.jpeg?timestamp=2026-05-15T10%3A57%3A28.5622574 600w, https://dam.mihomes.com/media/4749913/50423.jpeg?timestamp=2026-05-15T10%3A57%3A31.4095112 900w, https://dam.mihomes.com/media/4749913/50396.jpeg?timestamp=2026-05-15T10%3A57%3A27.9993137 1200w, https://dam.mihomes.com/media/4749913/50421.jpeg?timestamp=2026-05-15T10%3A57%3A30.3393142 1800w, https://dam.mihomes.com/media/4749913/50422.jpeg?timestamp=2026-05-15T10%3A57%3A31.9837747 2400w" title="kschieb@MIHOMES.com-0515202606" width="96" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-3">
+ <img data-dam-generated alt="jwammack@mihomes.com-0515202606.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4749912/50421.jpeg?timestamp=2026-05-15T10%3A57%3A25.2653266" srcset="https://dam.mihomes.com/media/4749912/50398.jpeg?timestamp=2026-05-15T10%3A57%3A21.1585036 300w, https://dam.mihomes.com/media/4749912/50397.jpeg?timestamp=2026-05-15T10%3A57%3A20.0113438 600w, https://dam.mihomes.com/media/4749912/50423.jpeg?timestamp=2026-05-15T10%3A57%3A25.2663942 900w, https://dam.mihomes.com/media/4749912/50396.jpeg?timestamp=2026-05-15T10%3A57%3A20.5825822 1200w, https://dam.mihomes.com/media/4749912/50421.jpeg?timestamp=2026-05-15T10%3A57%3A25.2653266 1800w, https://dam.mihomes.com/media/4749912/50422.jpeg?timestamp=2026-05-15T10%3A57%3A25.2653069 2400w" title="jwammack@mihomes.com-0515202606" width="96" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-3">
+ <img data-dam-generated alt="Susan Fendley" height="1800" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4015511/50421.jpeg?timestamp=2025-11-11T13%3A58%3A34.7199592" srcset="https://dam.mihomes.com/media/4015511/50398.jpeg?timestamp=2025-11-11T13%3A58%3A33.5866155 300w, https://dam.mihomes.com/media/4015511/50397.jpeg?timestamp=2025-11-11T13%3A58%3A32.4902079 600w, https://dam.mihomes.com/media/4015511/50423.jpeg?timestamp=2025-11-11T13%3A58%3A35.6220231 900w, https://dam.mihomes.com/media/4015511/50396.jpeg?timestamp=2025-11-11T13%3A58%3A33.4179743 1200w, https://dam.mihomes.com/media/4015511/50421.jpeg?timestamp=2025-11-11T13%3A58%3A34.7199592 1800w, https://dam.mihomes.com/media/4015511/50422.jpeg?timestamp=2025-11-11T13%3A58%3A35.4540301 2400w" title="Susan Fendley" width="1800" class="cover-image" />
+ </div>
+ </div>
+ <h3 class="">Have questions for us?</h3>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=2813937070'>(281) 393-7070</a>
+ </p>
+ </div>
+ <div id="form-agent-header" class="lead-form-sidebar-section right" style="display: none;">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+
+ </div>
+ <div class="lead-form-sidebar-form" data-lead-form-sidebar="">
+ <div class="lead-form-sidebar-errors"></div>
+<form action="/api/LeadGenFormSidebar/LeadGenFormSidebar" data-gami-event="gami-form-question" data-parsley-validate="" data-sidebar-hidden-required="" data-sidebar-nav-check="visit_sidebar" method="post" name="basic_sidebar" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="018e330a-076c-4134-99ca-0db27414c629" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Inventory" /><input id="PostType" name="PostType" type="hidden" value="sidebar" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:19 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="ItemId" name="ItemId" type="hidden" value="a35efdd7-1d6b-4701-98a3-23e9c4b6e1f7" /><input id="HomeType" name="HomeType" type="hidden" value="Single Family Home" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 443px;">
+ <div class="align-left center lead-form-sidebar-section" data-cta="Request Information" data-sidebar-section="0">
+ <div>
+
+ <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="">
+ </div>
+
+ <div class="form-field no-label-errors" style="margin-top: 1px">
+ <label for="fullname_sidebar"></label>
+ <input type="text"
+ name="FormFullName"
+ id="fullname_sidebar"
+ placeholder="Full Name"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required." data-parsley-trigger="blur"
+ maxlength="60"
+ data-parsley-filter-emoji=""
+ >
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormEmailAddress"
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="phone_sidebar">Phone Number</label>
+ <input class="gami-tel" type="tel"
+ autocomplete="tel-national"
+ name="FormPhoneNumber"
+ id="phone_sidebar"
+ placeholder="Phone Number" +
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ value=""
+
+ data-parsley-phone-number="" data-parsley-trigger="blur"
+ maxlength="25">
+ </div>
+
+ <div class="form-field no-label-errors">
+ <label for="comments_sidebar">Questions or Comments</label>
+ <textarea rows="5"
+ name="FormComments"
+ id="comments_sidebar"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000">Please send me information about 1077 Garnet Star Drive</textarea>
+ </div>
+ </div>
+ <div>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox hide" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input data-parsley-multiple="visit_sidebar" name="visit_sidebar" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to plan a visit</span>
+ </label>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormEmailOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSAssociateCommunicationsOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" data-sidebar-section="1" tabindex="-1">
+ <div>
+ <h4>Plan a visit</h4>
+ <p>Select your preferred day and time and we’ll help set up the perfect visit.</p>
+ </div>
+ <div>
+ <div class="select no-label-errors">
+ <label for="tripday_sidebar"> </label>
+ <div class="select-wrap">
+<select data-nested-select="#select-triptime-block-sidebar" data-parsley-group="visit_sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+
+ <div class="select no-label-errors">
+ <label for="triptime_sidebar"> </label>
+ <div class="select-wrap">
+<select data-parsley-group="visit_sidebar" id="triptime_sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" dta-cta="Continue" data-sidebar-section="2" data-agent-section tabindex="-1">
+
+ <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0">
+ <div class="align-left center lead-form-sidebar-section" data-sidebar-section="0">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button form-submit">
+ <span class="button-text">Request Information</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-left lead-form-sidebar-section right" data-sidebar-section="1">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit" disabled tabindex="-1">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="2">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button" disabled tabindex="-1">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit" disabled tabindex="-1">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+ </div>
+ </div>
+</form> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 25px;">
+ <div class="align-center center lead-form-sidebar-section" data-sidebar-section="0">
+ <button class="button-plain small" data-open-modal="privacy-policy-modal" href="javascript:void()">Privacy Policy</button>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="1">
+ <button class="button-plain small" data-sidebar-nav="0" tabindex="-1">« Go Back</button>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <!-- THANK YOU MESSAGE -->
+ <div class="lead-form-container-success">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-success lead-form-sidebar-header-image">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" data-parsley-validate="" method="POST" name="thanksyou_sidebar" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+ <div>
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+ <div class="form-field form-field-password">
+ <label for="password"> </label>
+ <input data-parsley-required-message="Password is required." data-parsley-valid-password="" id="password" minlength="8" name="password" placeholder="Password" required="" type="password" data-parsley-filter-emoji="" data-parsley-trigger="blur">
+ <button class="password-input-change" data-input-change="" type="button">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)" tabindex="0">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">
+ Create Account
+ </span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ <h3 class="h3 preview-box__header">
+ Incentives
+ </h3>
+ <a class="incentive incentive__sidebar--simple" href="/new-homes/texas/greater-houston/incentives/beat-the-heat">
+ <div class="incentive-background">
+ <img data-dam-generated alt="Beat the Heat Savings" height="1200" loading="eager" sizes="(min-width: 64rem) 328px, 100vw" src="https://dam.mihomes.com/media/4608788/50421.jpeg" srcset="https://dam.mihomes.com/media/4608788/50398.jpeg?timestamp=2026-04-09T20%3A01%3A32.5717027 300w, https://dam.mihomes.com/media/4608788/50397.jpeg?timestamp=2026-04-09T20%3A01%3A30.4800729 600w, https://dam.mihomes.com/media/4608788/50423.jpeg?timestamp=2026-04-09T20%3A01%3A37.2955785 900w, https://dam.mihomes.com/media/4608788/50396.jpeg?timestamp=2026-04-09T20%3A01%3A28.3996383 1200w, https://dam.mihomes.com/media/4608788/50421.jpeg?timestamp=2026-04-09T20%3A01%3A35.8482981 1800w, https://dam.mihomes.com/media/4608788/50422.jpeg?timestamp=2026-04-09T20%3A01%3A37.3648083 2400w" title="Beat the Heat - Card Image" width="1800" class="cover-image cover-image--abs" />
+ <div class="incentive__badge">
+<img data-dam-generated alt="Beat the Heat Savings" height="250" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4608787/50421.jpeg?timestamp=2026-04-09T20%3A01%3A34.9550629" srcset="https://dam.mihomes.com/media/4608787/50398.jpeg?timestamp=2026-04-09T20%3A01%3A31.6478142 300w, https://dam.mihomes.com/media/4608787/50397.jpeg?timestamp=2026-04-09T20%3A01%3A28.9717921 600w, https://dam.mihomes.com/media/4608787/50423.jpeg?timestamp=2026-04-09T20%3A01%3A37.5471390 900w, https://dam.mihomes.com/media/4608787/50396.jpeg?timestamp=2026-04-09T20%3A01%3A27.3019546 1200w, https://dam.mihomes.com/media/4608787/50421.jpeg?timestamp=2026-04-09T20%3A01%3A34.9550629 1800w, https://dam.mihomes.com/media/4608787/50422.jpeg?timestamp=2026-04-09T20%3A01%3A36.9908980 2400w" title="Beat the Heat - Badge" width="250" class="incentive__badge-background" maxwidth="2400" /> </div>
+ </div>
+ <div class="incentive-inner">
+ <span class="incentive-title--wrapper">
+ <p class="incentive-title">Beat the Heat</p>
+ </span>
+ <p class="incentive-sub-headline">Summer savings have arrived. Save big now with free appliances**, closing costs***, and more for a limited time only.</p>
+ <p class="incentive-button--wrapper">
+ <span class="button button-small" href="/new-homes/texas/greater-houston/incentives/beat-the-heat">
+ <span class="button-text uppercase">View Details</span>
+ </span>
+ </p>
+ </div>
+ </a>
+
+</div>
+</section>
+
+ <div id="design" class="box box-full box-no-padding-bottom" data-subnav-page-link="Design Options">
+ <div class="content-inner-centered">
+ <h2>Add the perfect finishing touch</h2>
+ <p class="subtitle content-inner-centered-narrow negative-top">
+ Put your personal touch on these Quick Move-In Homes with some selections from our Design Studio.
+ </p>
+ <div class="button-tooltip-wrapper">
+ <a class="button button-tooltip event-click" href="https://edc.envisionoptions.com/browser.aspx?NHTNumber=MIHOMES&Loc1=100&Lev1=CORP&Loc2=260&Lev2=DIV&HomeNumber=138759&Page=Confirmselection&utm_source=mihomes.com&utm_campaign=&utm_content=ambrose-Dawson-1077-Garnet-Star-Drive&utm_term=" target="_blank" data-event-category=OptionsGallery
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ See This Home's Options
+ </a>
+
+
+ </div>
+ <a class="button" href="/design/design-studio">
+ <span class="button-text">
+ Visit a Design Studio
+ </span>
+ </a>
+ </div>
+ </div>
+ <div class="box box-full box-no-padding-top">
+ <div class="contained-width">
+ <hr class="hr-even">
+
+ <h4>Incentives</h4>
+ <article class="preview-box ">
+ <a class="preview-box-link" href="/new-homes/texas/greater-houston/incentives/beat-the-heat">
+ <div class="preview-box__image preview-box__preview one-third">
+ <img data-dam-generated alt="Beat the Heat Savings" height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4608788/50421.jpeg" srcset="https://dam.mihomes.com/media/4608788/50398.jpeg?timestamp=2026-04-09T20%3A01%3A32.5717027 300w, https://dam.mihomes.com/media/4608788/50397.jpeg?timestamp=2026-04-09T20%3A01%3A30.4800729 600w, https://dam.mihomes.com/media/4608788/50423.jpeg?timestamp=2026-04-09T20%3A01%3A37.2955785 900w" title="Beat the Heat - Card Image" width="1800" class="cover-image" maxwidth="900" />
+ </div>
+ <div class="preview-box__content">
+ <h3 class="h3 preview-box__header">
+ Beat the Heat
+
+
+ </h3>
+ <p class="preview-box__text">Summer savings have arrived. Save big now with free appliances**, closing costs***, and more for a limited time only.</p>
+ <p>
+ <span class="button-plain button-plain-alt" href="/new-homes/texas/greater-houston/incentives/beat-the-heat">View Details »</span>
+ </p>
+ </div>
+ </a>
+ </article>
+ <article class="preview-box ">
+ <a class="preview-box-link" href="/new-homes/texas/greater-houston/incentives/rate-lock">
+ <div class="preview-box__image preview-box__preview one-third">
+ <img data-dam-generated alt="Lock 4 Later" height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/325755/50396.jpeg" srcset="https://dam.mihomes.com/media/325755/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/325755/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/325755/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w" title="32963-CORP-Lock-4-Later-Incentive Page 1800x1200 Pattern" width="1800" class="cover-image" maxwidth="900" />
+ </div>
+ <div class="preview-box__content">
+ <h3 class="h3 preview-box__header">
+ Long-Term Rate Lock
+
+
+ </h3>
+ <p class="preview-box__text">Thinking about moving later? At M/I Homes, we understand that buying a home is one of the most significant decisions you'll ever make. That's why we're offering a special extended rate lock through M/I Financial, LLC to give you peace of mind and financial stability during your home-buying journey.
+
+</p>
+ <p>
+ <span class="button-plain button-plain-alt" href="/new-homes/texas/greater-houston/incentives/rate-lock">View Details »</span>
+ </p>
+ </div>
+ </a>
+ </article>
+ </div>
+ </div>
+
+ <div id="floor" class="box box-full box-last event-inview" data-subnav-page-link="FloorPlan" data-event-category=Floorplan
+ data-event-action=scroll
+ data-event-label=view
+>
+ <div class="content-inner-centered content-inner-centered--mobile">
+<img data-dam-generated alt="Dawson First Floor" height="3220" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4739286/50421.jpeg?timestamp=2026-05-12T19%3A19%3A50.9115811" srcset="https://dam.mihomes.com/media/4739286/50398.jpeg?timestamp=2026-05-12T19%3A19%3A45.7053345 300w, https://dam.mihomes.com/media/4739286/50397.jpeg?timestamp=2026-05-12T19%3A19%3A44.3337104 600w, https://dam.mihomes.com/media/4739286/50423.jpeg?timestamp=2026-05-12T19%3A19%3A57.2087191 900w, https://dam.mihomes.com/media/4739286/50396.jpeg?timestamp=2026-05-12T19%3A19%3A40.6222941 1200w, https://dam.mihomes.com/media/4739286/50421.jpeg?timestamp=2026-05-12T19%3A19%3A50.9115811 1800w, https://dam.mihomes.com/media/4739286/50422.jpeg?timestamp=2026-05-12T19%3A19%3A54.8224019 2400w" title="Ambrose L3203 Dawson_First Floor" width="1637" class="cover-image cover-image--abs" /> <h2>Floorplan Options for Your New Home</h2>
+ <p class="content-inner-centered-narrow negative-top subtitle">The Dawson accommodates a variety of household living arrangements with its highly desired flexibility and modern design. Explore the many possibilities in the popular Dawson plan.</p>
+ <a target="_blank" class="button floor-plan-options__button event-click" href="https://rifp.ml3ds-icon.com/#/floorplan/279960?pcoLink=64260&pco=822130%2c822131%2c822132%2c822135%2c1082152&reverseFloorPlan=false" data-event-category=Floorplan
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <svg class="icon icon-fullscreen" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#fullscreen"></use>
+</svg>
+ <span class="button-text">
+ Show Floorplan
+ </span>
+ </a>
+ </div>
+ <section class="floor-plan-options">
+ <iframe loading="lazy" id="floor-plan" data-fullsize class="floor-plan-options__iframe" data-src="https://rifp.ml3ds-icon.com/#/floorplan/279960?pcoLink=64260&pco=822130%2c822131%2c822132%2c822135%2c1082152&reverseFloorPlan=false" scrolling="no" style="overflow: hidden">
+ <p>Your browser does not support iframes.</p>
+ </iframe>
+ </section>
+ </div>
+
+ <div class="box box-full box-no-padding-top-bottom " id="">
+ <div class="content-inner-centered">
+ <div class="leadgenTitleBlock">
+ <h2 class="h2">Ready to plan a visit? We can help</h2>
+ <p class="subtitle marginless">Send us your preferred time to stop by and a sales representative will take care of the rest</p>
+ </div>
+ <section class="lead-form">
+ <div id="lead-form-block-user-info" class="lead-form-container lead-form-block" data-lead-form-sidebar="">
+ <aside class="lead-form-block__details" style="">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-3">
+ <img data-dam-generated alt="kschieb@MIHOMES.com-0515202606.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4749913/50421.jpeg?timestamp=2026-05-15T10%3A57%3A30.3393142" srcset="https://dam.mihomes.com/media/4749913/50398.jpeg?timestamp=2026-05-15T10%3A57%3A29.1231152 300w, https://dam.mihomes.com/media/4749913/50397.jpeg?timestamp=2026-05-15T10%3A57%3A28.5622574 600w, https://dam.mihomes.com/media/4749913/50423.jpeg?timestamp=2026-05-15T10%3A57%3A31.4095112 900w, https://dam.mihomes.com/media/4749913/50396.jpeg?timestamp=2026-05-15T10%3A57%3A27.9993137 1200w, https://dam.mihomes.com/media/4749913/50421.jpeg?timestamp=2026-05-15T10%3A57%3A30.3393142 1800w, https://dam.mihomes.com/media/4749913/50422.jpeg?timestamp=2026-05-15T10%3A57%3A31.9837747 2400w" title="kschieb@MIHOMES.com-0515202606" width="96" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-3">
+ <img data-dam-generated alt="jwammack@mihomes.com-0515202606.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4749912/50421.jpeg?timestamp=2026-05-15T10%3A57%3A25.2653266" srcset="https://dam.mihomes.com/media/4749912/50398.jpeg?timestamp=2026-05-15T10%3A57%3A21.1585036 300w, https://dam.mihomes.com/media/4749912/50397.jpeg?timestamp=2026-05-15T10%3A57%3A20.0113438 600w, https://dam.mihomes.com/media/4749912/50423.jpeg?timestamp=2026-05-15T10%3A57%3A25.2663942 900w, https://dam.mihomes.com/media/4749912/50396.jpeg?timestamp=2026-05-15T10%3A57%3A20.5825822 1200w, https://dam.mihomes.com/media/4749912/50421.jpeg?timestamp=2026-05-15T10%3A57%3A25.2653266 1800w, https://dam.mihomes.com/media/4749912/50422.jpeg?timestamp=2026-05-15T10%3A57%3A25.2653069 2400w" title="jwammack@mihomes.com-0515202606" width="96" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-3">
+ <img data-dam-generated alt="Susan Fendley" height="1800" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4015511/50421.jpeg?timestamp=2025-11-11T13%3A58%3A34.7199592" srcset="https://dam.mihomes.com/media/4015511/50398.jpeg?timestamp=2025-11-11T13%3A58%3A33.5866155 300w, https://dam.mihomes.com/media/4015511/50397.jpeg?timestamp=2025-11-11T13%3A58%3A32.4902079 600w, https://dam.mihomes.com/media/4015511/50423.jpeg?timestamp=2025-11-11T13%3A58%3A35.6220231 900w, https://dam.mihomes.com/media/4015511/50396.jpeg?timestamp=2025-11-11T13%3A58%3A33.4179743 1200w, https://dam.mihomes.com/media/4015511/50421.jpeg?timestamp=2025-11-11T13%3A58%3A34.7199592 1800w, https://dam.mihomes.com/media/4015511/50422.jpeg?timestamp=2025-11-11T13%3A58%3A35.4540301 2400w" title="Susan Fendley" width="1800" class="cover-image" />
+ </div>
+ </div>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=2813937070'>(281) 393-7070</a>
+ </p>
+ </aside>
+<form action="/api/LeadGenFormBlock/LeadGenFormBlock" class="lead-form-block__form" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="018e330a-076c-4134-99ca-0db27414c629" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Model" /><input id="PostType" name="PostType" type="hidden" value="block" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:19 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="FormAgentEmailAddress" name="FormAgentEmailAddress" type="hidden" value="" /><input id="ItemId" name="ItemId" type="hidden" value="a35efdd7-1d6b-4701-98a3-23e9c4b6e1f7" /><input id="HomeType" name="HomeType" type="hidden" value="Single Family Home" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="" hidden>
+ </div>
+ <div class="form-field">
+ <label for="fullname">Full Name </label>
+ <input type="text"
+ name="FormFullName"
+ placeholder="John Doe"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required."
+ maxlength="60"
+
+ data-parsley-filter-emoji=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="emailaddress">Email Address </label>
+ <input type="email"
+ name="FormEmailAddress" ,
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field">
+ <label for="phone">Phone Number </label>
+ <input class="gami-tel" type="tel"
+ name="FormPhoneNumber"
+ id="phone"
+ placeholder="5555555555"
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ maxlength="25"
+ value=""
+
+ data-parsley-phone-number=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="input">Questions or Comments </label>
+ <textarea rows="5"
+ name="FormComments"
+ id="input"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000"></textarea>
+ </div>
+ <div class="lead-form-block__contacts">
+ <div class="form-field select" {="">
+ <label for="tripday_block">Preferred Day <em> (Optional)</em></label>
+ <div class="select-wrap">
+ <div class="select-wrap">
+<select date-nested-select="#select-triptime-block-sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+
+ <div class="form-field select" {="">
+ <label for="triptime_block">Preferred Time <em> (Optional)</em></label>
+ <div class="select-wrap">
+
+<select id="select-triptime-block-sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-block__checkboxes-container">
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormEmailOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSAssociateCommunicationsOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ <div class="lead-form-block__submit">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+
+ <span class="align-center">
+ <a class="button-plain small" data-open-modal="privacy-policy-modal">Privacy Policy</a>
+ </span>
+ </div>
+</form> </div>
+ <div id="lead-form-block-agent-form" class="lead-form-container lead-form-block" data-lead-form-sidebar="" data-agent-section style="display: none;">
+ <figure class="lead-form lead-form-sidebar">
+ <div id="form-agent-header" class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+<form action="/new-homes/texas/greater-houston/la-marque/ambrose/dawson-plan/1077-garnet-star-drive" class="lead-form-sidebar-section" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""> <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ id="block-agent-email"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+</form> </div>
+ </figure>
+ </div>
+
+
+
+ <div class="lead-form-container-success">
+ <figure class="lead-form lead-form-sidebar">
+ <div class="lead-form-container-success" style="display: block">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" method="POST" name="thanksyou_sidebar" data-parsley-validate="" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+
+ <div>
+ <div class="form-field form-field-password">
+ <label for="password"></label>
+ <input type="password"
+ name="password"
+ id="password"
+ placeholder="Password"
+ data-parsley-valid-password=""
+ minlength="8"
+ required=""
+ data-parsley-required-message="Password is required."
+ data-parsley-trigger="blur">
+
+ <button type="button" class="password-input-change" data-input-change="">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span tabindex="0"
+ data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">Create Account</span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ </div>
+ </section>
+ </div>
+ </div>
+
+ <div class="box box-centered box-full box-transparent" id="neraby">
+ <div class="box-full-inner">
+ <h3 class="h2">
+ Other Quick Move-In Homes
+ </h3>
+
+ <div class="featured-grid">
+ <div class="row">
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/texas/greater-houston/la-marque/ambrose/magnolia-plan/1313-blue-moon-lane">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Exterior" height="1536" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/5110564/50422.jpeg?timestamp=2026-08-05T05%3A24%3A50.4226126" srcset="https://dam.mihomes.com/media/5110564/50398.jpeg?timestamp=2026-08-05T05%3A24%3A48.0755996 300w, https://dam.mihomes.com/media/5110564/50397.jpeg?timestamp=2026-08-05T05%3A24%3A47.6673756 600w, https://dam.mihomes.com/media/5110564/50423.jpeg?timestamp=2026-08-05T05%3A24%3A51.5333394 900w, https://dam.mihomes.com/media/5110564/50396.jpeg?timestamp=2026-08-05T05%3A24%3A47.7882214 1200w, https://dam.mihomes.com/media/5110564/50421.jpeg?timestamp=2026-08-05T05%3A24%3A50.7810942 1800w, https://dam.mihomes.com/media/5110564/50422.jpeg?timestamp=2026-08-05T05%3A24%3A50.4226126 2400w" title="[L3117-z009]Exterior" width="2048" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Magnolia</p>
+ <p class="featured-grid-middle">1313 Blue Moon Lane, La Marque, Texas</p>
+ <p class="featured-grid-subtitle">Listed at $275,990</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/texas/greater-houston/la-marque/ambrose/magnolia-plan/1009-garnet-star-drive">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Magnolia G Elevation" height="1600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/1467236/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/1467236/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/1467236/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/1467236/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/1467236/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/1467236/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/1467236/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="HOUS-Magnolia-ElevationG-Gen3-elev_DSK" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Magnolia</p>
+ <p class="featured-grid-middle">1009 Garnet Star Drive, La Marque, Texas</p>
+ <p class="featured-grid-subtitle">Listed at $281,990</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/texas/greater-houston/la-marque/ambrose/aster-plan/1026-garnet-star-drive">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Aster Elevation G" height="1600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3710004/50421.jpeg?timestamp=2025-09-15T22%3A02%3A38.3117191" srcset="https://dam.mihomes.com/media/3710004/50398.jpeg?timestamp=2025-09-15T22%3A02%3A36.7748017 300w, https://dam.mihomes.com/media/3710004/50397.jpeg?timestamp=2025-09-15T22%3A02%3A39.2982732 600w, https://dam.mihomes.com/media/3710004/50423.jpeg?timestamp=2025-09-15T22%3A02%3A39.6095602 900w, https://dam.mihomes.com/media/3710004/50396.jpeg?timestamp=2025-09-15T22%3A02%3A38.1836069 1200w, https://dam.mihomes.com/media/3710004/50421.jpeg?timestamp=2025-09-15T22%3A02%3A38.3117191 1800w, https://dam.mihomes.com/media/3710004/50422.jpeg?timestamp=2025-09-15T22%3A02%3A36.6398900 2400w" title="HOUS-Aster-ElevationG-Opt Stone-Gen3-elev_DAY" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Aster</p>
+ <p class="featured-grid-middle">1026 Garnet Star Drive, La Marque, Texas</p>
+ <p class="featured-grid-subtitle">Listed at $285,990</p>
+ </a>
+</div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ </main>
+
+
+<footer class="main-footer">
+ <div class="main-footer-inner">
+ <ul class="horizontal-list">
+ <li><a href="https://apply.workable.com/mi-homes/" target="_blank" rel="noopener noreferrer" >Careers</a></li>
+ <li><a href="/support/warranty" >Warranty</a></li>
+ <li><a href="https://investors.mihomes.com/" rel="noopener noreferrer" title="Investor Relations" target="_blank" >Investors</a></li>
+ <li><a href="/events" >Events</a></li>
+ <li><a href="/incentives" >Incentives</a></li>
+ <li><a href="/agent/agent-info" >Agents & Brokers</a></li>
+ <li><a href="/resources" >Home Buying Resources</a></li>
+ <li><a href="/why-mi/journey" >Journey</a></li>
+ <li><a href="/blog/" >Blog</a></li>
+ </ul>
+ <ul class="horizontal-list">
+ <li><a href="/policies/privacy-policy" >Privacy Policy</a></li>
+ <li><a href="/policies/terms-of-use" >Terms of Use</a></li>
+ <li><a href="/subscriptions" >Manage Subscriptions</a></li>
+ <li><a href="/support/ccpa" >CCPA</a></li>
+ </ul>
+ <ul class="icon-list">
+ <li>
+<a href="https://www.instagram.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Instagram" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704717/50399.png" srcset="https://dam.mihomes.com/media/4704717/50399.png?timestamp=2026-05-04T18%3A56%3A58.4036491 300w, https://dam.mihomes.com/media/4704717/50420.png 600w" title="instagram" width="24" /></a> </li>
+ <li>
+<a href="https://www.facebook.com/MIHomesInc/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Facebook" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57191/50399.png" srcset="https://dam.mihomes.com/media/57191/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57191/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="facebook" width="24" /></a> </li>
+ <li>
+<a href="https://www.youtube.com/MIHomesInc" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Youtube" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704715/50399.png" srcset="https://dam.mihomes.com/media/4704715/50399.png?timestamp=2026-05-04T18%3A34%3A30.5730196 300w, https://dam.mihomes.com/media/4704715/50420.png 600w" title="youtube" width="24" /></a> </li>
+ <li>
+<a href="https://www.pinterest.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Pinterest" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57192/50399.png" srcset="https://dam.mihomes.com/media/57192/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57192/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="pintrest" width="24" /></a> </li>
+ <li>
+<a href="http://www.houzz.com/pro/mi-homes/m-i-homes" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Houzz" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57193/50399.png" srcset="https://dam.mihomes.com/media/57193/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57193/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="houzz" width="24" /></a> </li>
+ <li>
+<a href="http://portal.hud.gov" class="" rel="me" target="_blank" ><img data-dam-generated alt="Equal Housing" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704718/50399.png" srcset="https://dam.mihomes.com/media/4704718/50399.png?timestamp=2026-05-04T19%3A02%3A51.2896193 300w, https://dam.mihomes.com/media/4704718/50420.png 600w" title="equal-housing" width="28" /></a> </li>
+ </ul>
+ <p class="main-footer-copyright">
+ Copyright 2026, M/I Homes, Inc. All rights reserved.
+ </p>
+ <p id="division-disclaimer" class="main-footer-copyright">
+
+
+ </p>
+ </div>
+</footer>
+</div>
+<div aria-label="Cookie Consent" role="dialog" id="ccpa-modal" class="ccpa-modal">
+ <p>By browsing, you accept our <a href="/policies/terms-of-use">terms of use</a> and <a href="/policies/privacy-policy">privacy policy</a>.</p>
+ <button class="button" type="button">OK</button>
+</div>
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/modals.css?ver=202608092245" rel="stylesheet" fetchpriority="low">
+ <div class="modal modal-wide box" data-modal="" id="privacy-policy-modal">
+ <button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div id="privacy-policy-text"></div>
+</div><div class="modal box box-wide box-paddingless" data-modal="" id="mortgage-payment-calculator-modal">
+<button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+</button>
+ <div id="mortgage-payment-calculator" data-price="269990" data-values="a6604eba-9883-4d46-9237-2f20604f276f"></div>
+</div>
+ <div class="modal" data-modal id="search-modal">
+ <form action="/search" class="search-form ">
+ <input class="search-form-input" id="search-form-input" name="search" placeholder="Search M/I Homes"
+ type="search" />
+ <button class="button search-form-clear-button" type="button">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+
+ </button>
+ <button class="button search-form-submit" type="submit">
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ <div class="search-form-results">
+ <div class="search-form-results-list"></div>
+ </div>
+ </form>
+ </div>
+</div>
+
+<!-- toolkit scripts -->
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit_common.js?ver=202608092245"></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit.js?ver=202608092245"></script>
+ <script src="https://cdn.mihomes.com/assets/toolkit/js/product.js?ver=202608092245"></script>
+ <script defer src="https://cdn.mihomes.com/assets/toolkit/js/mortgage-calculator.js?ver=202608092245"></script>
+<script>window.jQuery = window.$ = window.JQUERY;</script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/common.js?ver=202608092245" defer></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/favorites.js?ver=202608092245" defer></script>
+
+
+<script>
+ var w = Math.max(
+ document.body.scrollWidth,
+ document.documentElement.scrollWidth,
+ document.body.offsetWidth,
+ document.documentElement.offsetWidth,
+ document.documentElement.clientWidth
+ );
+ window.setCookie('screen-width', encodeURIComponent(w), { expires: 14, path: "/" })
+ </script>
+
+<script>
+
+
+</script>
+<script type="text/javascript">
+ const millisecondsPerDay = 86400000;
+ const millisecondsPerHour = millisecondsPerDay / 24;
+ const millisecondsPerMinute = millisecondsPerHour / 60;
+ const millisecondsPerSecond = 1000;
+ function addLeadingZero(val) {
+ if(val.toString().length < 2) {
+ return '0'+val;
+ }
+ return val;
+ }
+ function change() {
+ const list = Array.from(document.querySelectorAll('[data-countdown]'));
+ const now = new Date().getTime();
+ list.forEach((el) => {
+ const d = new Date(el.getAttribute('data-countdown')).getTime();
+ let diff = d - now;
+ let days = 0;
+ let hours = 0;
+ let minutes = 0;
+ let seconds = 0;
+ if(diff > 0) {
+ days = Math.floor(diff / millisecondsPerDay);
+ diff = diff - (days * millisecondsPerDay)
+ hours = Math.floor(diff/millisecondsPerHour);
+ diff = diff - (hours * millisecondsPerHour)
+ minutes = Math.floor(diff/millisecondsPerMinute);
+ diff = diff - (minutes * millisecondsPerMinute);
+ seconds = Math.floor(diff/millisecondsPerSecond);
+ }
+ try {
+ el.querySelector('.days').innerText = addLeadingZero(Math.max(days, 0));
+
+ } catch (e) {}
+ try {
+ el.querySelector('.hours').innerText = addLeadingZero(Math.max(hours, 0));
+ } catch(e) {}
+ try {
+ el.querySelector('.minutes').innerText = addLeadingZero(Math.max(minutes, 0));
+ } catch (e) {}
+ try {
+ el.querySelector('.seconds').innerText = addLeadingZero(Math.max(seconds, 0));
+ } catch (e) {}
+
+ });
+ setTimeout(()=>requestAnimationFrame(change), millisecondsPerSecond);
+ }
+ requestAnimationFrame(change);
+</script>
+<script>(function(){function c(){var b=a.contentDocument||(a.contentWindow&&a.contentWindow.document);if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'a2949599ba83cb82',t:'MTc4NjQyMzQ1OA=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
+
+</html>
\ No newline at end of file
diff --git a/collectors/mi-homes/fixtures/homes/h6.html b/collectors/mi-homes/fixtures/homes/h6.html
new file mode 100644
index 00000000..591316ef
--- /dev/null
+++ b/collectors/mi-homes/fixtures/homes/h6.html
@@ -0,0 +1,2052 @@
+
+
+<!doctype html>
+<html lang="en">
+
+<head>
+
+ <script>
+ var G = G || {};
+ G.pingForEmployee = true;
+ </script>
+
+
+<meta name="VIcurrentDateTime" content="639220202621709536" />
+<meta name="VirtualFolder" content="/" />
+<script type="text/javascript" src="/layouts/system/VisitorIdentification.js"></script>
+
+
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" name="viewport">
+ <title>MLS #7095161 - 1220 Edge Circle Jordan, MN 55352 - M/I Homes</title>
+ <!-- font -->
+ <link rel="preconnect" href="https://cdn.mihomes.com" crossorigin>
+ <link rel="preconnect" href="https://use.typekit.net" crossorigin>
+
+
+
+<!-- Google Tag Script -->
+
+ <script id="js-GTM-script">
+ window.dataLayer = window.dataLayer || [];
+ window.dataLayer.push({
+ "PageType": "Spec",
+ "MIAccount": "No",
+ "Division": "Minneapolis / St Paul"
+});
+
+(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=
+'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
+})(window,document,'script','dataLayer','GTM-M2JH3QJ');
+ </script>
+
+
+<!-- End Google Tag Script -->
+ <meta name="referrer" content="always" />
+
+ <link href="https://use.typekit.net/sgt3sit.css" rel="stylesheet" type="text/css" media="print" onload="this.media='all'" id="fonts-loaded" />
+
+<script>
+ try {
+ document.fonts.ready.then(() => {
+ document.body.classList.add('body--fonts-loaded');
+ if(window.setCookiie) {
+ window.setCookie('fonts-cached', 'true', { expires: 7, path: '/' });
+ }
+ });
+ } catch (e) { }
+</script>
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/toolkit.css?ver=202608092245" type="text/css" rel="stylesheet">
+ <!-- conditionally load css for blog -->
+
+ <script>
+ window.environment = "Prod";
+ window.googleApiKey = "REDACTED-THIRD-PARTY-PUBLIC-KEY";
+ </script>
+ <script>
+
+ window.maps =[];
+ window.AssetRootUrl = 'https://cdn.mihomes.com';
+
+ </script>
+
+ <meta name="twitter:card" content="summary" />
+<meta name="twitter:site" content="@mihomes" />
+<meta name="twitter:creator" content="@mihomes">
+
+<meta property="og:site_name" content="https://www.mihomes.com" />
+<meta property="og:type" content="article" />
+<meta property="og:url" content="https://www.mihomes.com/new-homes/minnesota/twin-cities/jordan/beaumont-bluffs/lexington-plan/1220-edge-circle" />
+
+
+ <meta property="og:title" content="1220 Edge Circle" />
+ <meta name="twitter:title" content="1220 Edge Circle" />
+
+
+
+ <meta property="og:description" content="Welcome to 1220 Edge Circle, Jordan, MN — a stunning new construction home built by M/I Homes, offering 2,311 square foot of thoughtfully designed living space. This home showcases quality craftsmanship and a well-planned floorplan that blends comfort with style.Key Features:" />
+ <meta name="twitter:description" content="Welcome to 1220 Edge Circle, Jordan, MN — a stunning new construction home built by M/I Homes, offering 2,311 square foot of thoughtfully designed living space. This home showcases quality craftsmanship and a well-planned floorplan that blends comfort with style.Key Features:" />
+ <meta name="description" content="Welcome to 1220 Edge Circle, Jordan, MN — a stunning new construction home built by M/I Homes, offering 2,311 square foot of thoughtfully designed living space. This home showcases quality craftsmanship and a well-planned floorplan that blends comfort with style.Key Features:" />
+
+
+
+ <link rel="canonical" href="https://www.mihomes.com/new-homes/minnesota/twin-cities/jordan/beaumont-bluffs/lexington-plan/1220-edge-circle">
+ <link defer href="https://dam.mihomes.com/media/4179716/50399.png" rel="icon" type="image/vnd.microsoft.icon" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="57x57"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-57x57.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="114x114"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-114x114.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="72x72"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-72x72.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="144x144"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-144x144.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="60x60"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-60x60.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="120x120"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-120x120.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="76x76"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-76x76.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="152x152"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-152x152.png" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-196x196.png"
+ sizes="196x196" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-96x96.png"
+ sizes="96x96" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-32x32.png"
+ sizes="32x32" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-16x16.png"
+ sizes="16x16" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-128.png"
+ sizes="128x128" />
+ <meta name="application-name" content=" " />
+ <meta name="msapplication-TileColor" content="#FFFFFF" />
+ <meta name="msapplication-TileImage" content="https://cdn.mihomes.com/assets/favicons/images/mstile-144x144.png" />
+ <meta name="msapplication-square70x70logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-70x70.png" />
+ <meta name="msapplication-square150x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-150x150.png" />
+ <meta name="msapplication-wide310x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x150.png" />
+ <meta name="msapplication-square310x310logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x310.png" />
+
+ <script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Organization",
+ "foundingDate": "1976",
+ "duns": "071649743",
+ "founders": [
+ {
+ "@type": "Person",
+ "name": "Melvin Schottenstein"
+ },
+ {
+ "@type": "Person",
+ "name": "Irving Schottenstein"
+ }
+ ],
+ "employees": [
+ {
+ "@type": "Person",
+ "name": "Robert H. Schottenstein",
+ "jobTitle": "Chairman, President, and CEO"
+ }
+ ],
+ "sameAs": [
+ "https://www.facebook.com/MIHomesInc",
+ "https://twitter.com/mihomes",
+ "https://www.instagram.com/mihomes/",
+ "https://www.youtube.com/MIHomesInc",
+ "https://www.houzz.com/pro/mi-homes/m-i-homes",
+ "https://www.pinterest.com/mihomes/"
+ ],
+ "logo": {
+ "@type": "ImageObject",
+ "name": "M/I Homes logo",
+ "contentUrl": "https://dam.mihomes.com/media/39664/50399.png"
+ },
+ "name": "M/I Homes",
+ "description": "M/I Homes, Inc. founded in 1976, M/I Homes is one of nation's leading builders of single family homes. M/I has established an exemplary reputation based on a strong commitment to superior customer service, innovative design, quality construction and premium locations. Listed on the New York Stock Exchange, M/I Homes serves a broad segment of the housing market including first-time, move-up, luxury and empty nester buyers.",
+ "url": "https://www.mihomes.com",
+ "isicv4": "4100"
+}</script>
+ <script defer src="https://www.youtube.com/iframe_api"></script>
+ <script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
+ <script>
+ window.addEventListener('load', () => {
+ const swUrl = "https://cdn.mihomes.com/assets/workers/product-page-service-worker.js"
+ navigator.serviceWorker
+ .register(swUrl, {
+ scope: '/'
+ })
+ .then(registration => {
+ console.log('Service Worker registered with scope:', registration.scope);
+ })
+ .catch(error => {
+ console.error('Error during service worker registration:', error);
+ });
+ });
+ </script>
+</head>
+
+<body class="no-js body--home-template">
+
+
+
+<!-- Google Tag Manager --><!-- Global site tag (gtag.js) - Google Analytics -->
+
+ <noscript>
+ <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M2JH3QJ"
+ height="0" width="0" style="display: none; visibility: hidden">
+ </iframe>
+ </noscript>
+
+<!-- End Google Tag Manager GTMM2JH3QJ -->
+<a class="skip-link" href="#content">Skip To Content</a>
+
+<div class="page-container">
+ <div id="overview" data-subnav-page-link="Overview"></div>
+
+
+<header class="main-header">
+ <div class="main-header-inner">
+<a href="/" class="main-header-logo" > <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png">
+<svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg></a> <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png" />
+ <button class="main-header-open-nav" data-open-nav="" title="Toggle Hamburger Navigation">
+ <svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg>
+ <svg class="icon icon-menu" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#menu"></use>
+</svg>
+ </button>
+ <div class="main-header-nav-items" data-a11y-focus data-nav-tray>
+ <nav class="main-nav">
+ <ul>
+ <li>
+
+ <a href="/" class="main-nav-link mobile-only" >Home</a>
+ </li>
+ <li>
+
+ <a href="/new-homes/minnesota/twin-cities" class="main-nav-link find-a-home-link" >Find a Home</a>
+ </li>
+ <li>
+
+ <a href="/about-us/overview" class="main-nav-link " >About</a>
+ </li>
+ <li>
+
+ <a href="/why-mi/overview" class="main-nav-link " >Why M/I</a>
+ </li>
+ <li>
+
+ <a href="/incentives" class="main-nav-link " >Incentives</a>
+ </li>
+ <li>
+
+ <a href="/financing" class="main-nav-link " >Financing</a>
+ </li>
+ <li>
+
+ <a href="/support/warranty" class="main-nav-link " >Warranty</a>
+ </li>
+ <li>
+
+ <a href="/support" class="main-nav-link " >Contact</a>
+ </li>
+ <li>
+
+ <a href="/resources" class="main-nav-link " >Resources</a>
+ </li>
+ </ul>
+ </nav>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ <div class="aux-nav">
+ <ul>
+ <li data-a11y-focus>
+ <a href="/account/register" class="main-nav-link" >Sign Up</a>
+ </li>
+ <li data-a11y-focus>
+ <a href="/account/login" class="main-nav-link" >Log In</a>
+ </li>
+ </ul>
+ </div>
+ </div>
+ <button class="main-header-close-nav" data-close-nav>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ </div>
+</header>
+ <div class="breadcrumbs-bar">
+ <div class="breadcrumbs-wrapper">
+ <nav class="breadcrumbs">
+ <a class="button-plain" href="/">Home</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/minnesota/communities">Minnesota</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/minnesota/twin-cities/communities">Twin Cities</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/minnesota/twin-cities/jordan">Jordan</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/minnesota/twin-cities/jordan/beaumont-bluffs">Beaumont Bluffs</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/minnesota/twin-cities/jordan/beaumont-bluffs/lexington-plan">Lexington</a>
+ <span class="seperator"> • </span>
+ <span>1220 Edge Circle</span>
+ </nav>
+ </div>
+ </div>
+ <script>var bar = document.querySelector('.breadcrumbs-bar'); bar.setAttribute('style', 'height:' + bar.getBoundingClientRect().height + 'px');</script>
+<script type="application/ld+json">
+{
+"@context": "https://schema.org",
+"@type": "BreadcrumbList",
+"itemListElement":[
+{
+"@type":"ListItem",
+"position":1,
+"name":"Minnesota",
+"item":"https://www.mihomes.com/new-homes/minnesota/communities"
+},
+{
+"@type":"ListItem",
+"position":2,
+"name":"Twin Cities",
+"item":"https://www.mihomes.com/new-homes/minnesota/twin-cities/communities"
+},
+{
+"@type":"ListItem",
+"position":3,
+"name":"Jordan",
+"item":"https://www.mihomes.com/new-homes/minnesota/twin-cities/jordan"
+},
+{
+"@type":"ListItem",
+"position":4,
+"name":"Beaumont Bluffs",
+"item":"https://www.mihomes.com/new-homes/minnesota/twin-cities/jordan/beaumont-bluffs"
+},
+{
+"@type":"ListItem",
+"position":5,
+"name":"Lexington",
+"item":"https://www.mihomes.com/new-homes/minnesota/twin-cities/jordan/beaumont-bluffs/lexington-plan"
+},
+{
+"@type":"ListItem",
+"position":6,
+"name":"1220 Edge Circle",
+
+}
+]
+}
+</script>
+
+
+ <div class="page-notice-wrapper" id="page-notification"></div>
+ <main class="main-content" id="content" tabindex="0">
+
+<ul class="product-flags">
+ <li>
+ <a href="https://www.mihomes.com/new-homes/minnesota/twin-cities/incentives/2026-quick-move-in-rates" data-is="me">
+
+
+<div class="product-flag " style="color: #35603d">
+ <span class="product-flag-text">Move In Now, Pay Less</span>
+</div>
+ </a>
+ </li>
+</ul>
+<div class="image-banner">
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <img data-dam-generated alt="Lexington Rendering Elevation C" height="1600" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/3799533/50421.jpeg?timestamp=2025-10-03T18%3A25%3A30.2715959" srcset="https://dam.mihomes.com/media/3799533/50398.jpeg?timestamp=2025-10-03T18%3A25%3A27.8461556 300w, https://dam.mihomes.com/media/3799533/50397.jpeg?timestamp=2025-10-03T18%3A25%3A27.5962255 600w, https://dam.mihomes.com/media/3799533/50423.jpeg?timestamp=2025-10-03T18%3A25%3A30.2722842 900w, https://dam.mihomes.com/media/3799533/50396.jpeg?timestamp=2025-10-03T18%3A25%3A26.3811339 1200w, https://dam.mihomes.com/media/3799533/50421.jpeg?timestamp=2025-10-03T18%3A25%3A30.2715959 1800w, https://dam.mihomes.com/media/3799533/50422.jpeg?timestamp=2025-10-03T18%3A25%3A30.2727838 2400w" title="MINN-Lexington-ElevationC-Gen3-elev_DAY (1)" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </a>
+ <div class="image-banner-more">
+ <a href="#product-gallery"
+ data-goto-slide="1"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="1"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5032611/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.8608486" srcset="https://dam.mihomes.com/media/5032611/50398.jpeg?timestamp=2026-07-20T16%3A52%3A36.3725291 300w, https://dam.mihomes.com/media/5032611/50397.jpeg?timestamp=2026-07-20T16%3A52%3A35.3046006 600w, https://dam.mihomes.com/media/5032611/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.1182956 900w, https://dam.mihomes.com/media/5032611/50396.jpeg?timestamp=2026-07-20T16%3A52%3A30.5292103 1200w, https://dam.mihomes.com/media/5032611/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.8608486 1800w, https://dam.mihomes.com/media/5032611/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.1317651 2400w" title="DefaultImage2" width="1800" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="2"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="2"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5032613/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.0046340" srcset="https://dam.mihomes.com/media/5032613/50398.jpeg?timestamp=2026-07-20T16%3A52%3A38.0061965 300w, https://dam.mihomes.com/media/5032613/50397.jpeg?timestamp=2026-07-20T16%3A52%3A37.1317158 600w, https://dam.mihomes.com/media/5032613/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.7259533 900w, https://dam.mihomes.com/media/5032613/50396.jpeg?timestamp=2026-07-20T16%3A52%3A36.3377543 1200w, https://dam.mihomes.com/media/5032613/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.0046340 1800w, https://dam.mihomes.com/media/5032613/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.8027102 2400w" title="DefaultImage5" width="1800" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="3"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="3"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5032615/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.2481826" srcset="https://dam.mihomes.com/media/5032615/50398.jpeg?timestamp=2026-07-20T16%3A52%3A36.1892855 300w, https://dam.mihomes.com/media/5032615/50397.jpeg?timestamp=2026-07-20T16%3A52%3A34.5471979 600w, https://dam.mihomes.com/media/5032615/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.1638269 900w, https://dam.mihomes.com/media/5032615/50396.jpeg?timestamp=2026-07-20T16%3A52%3A34.3817444 1200w, https://dam.mihomes.com/media/5032615/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.2481826 1800w, https://dam.mihomes.com/media/5032615/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.1681442 2400w" title="DefaultImage4" width="1800" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="4"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="4"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5032614/50421.jpeg?timestamp=2026-07-20T16%3A52%3A33.6343244" srcset="https://dam.mihomes.com/media/5032614/50398.jpeg?timestamp=2026-07-20T16%3A52%3A30.2415539 300w, https://dam.mihomes.com/media/5032614/50397.jpeg?timestamp=2026-07-20T16%3A52%3A28.6642668 600w, https://dam.mihomes.com/media/5032614/50423.jpeg?timestamp=2026-07-20T16%3A52%3A33.6743057 900w, https://dam.mihomes.com/media/5032614/50396.jpeg?timestamp=2026-07-20T16%3A52%3A26.8127284 1200w, https://dam.mihomes.com/media/5032614/50421.jpeg?timestamp=2026-07-20T16%3A52%3A33.6343244 1800w, https://dam.mihomes.com/media/5032614/50422.jpeg?timestamp=2026-07-20T16%3A52%3A32.7348581 2400w" title="DefaultImage3" width="1800" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="third event-click image-banner-total gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <span class="button button-transparent">
+ View 5 Photos
+ </span>
+ </a>
+ </div>
+</div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Lexington Rendering Elevation C" height="1600" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/3799533/50421.jpeg?timestamp=2025-10-03T18%3A25%3A30.2715959" srcset="https://dam.mihomes.com/media/3799533/50398.jpeg?timestamp=2025-10-03T18%3A25%3A27.8461556 300w, https://dam.mihomes.com/media/3799533/50397.jpeg?timestamp=2025-10-03T18%3A25%3A27.5962255 600w, https://dam.mihomes.com/media/3799533/50423.jpeg?timestamp=2025-10-03T18%3A25%3A30.2722842 900w, https://dam.mihomes.com/media/3799533/50396.jpeg?timestamp=2025-10-03T18%3A25%3A26.3811339 1200w, https://dam.mihomes.com/media/3799533/50421.jpeg?timestamp=2025-10-03T18%3A25%3A30.2715959 1800w, https://dam.mihomes.com/media/3799533/50422.jpeg?timestamp=2025-10-03T18%3A25%3A30.2727838 2400w" title="MINN-Lexington-ElevationC-Gen3-elev_DAY (1)" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5032611/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.8608486" srcset="https://dam.mihomes.com/media/5032611/50398.jpeg?timestamp=2026-07-20T16%3A52%3A36.3725291 300w, https://dam.mihomes.com/media/5032611/50397.jpeg?timestamp=2026-07-20T16%3A52%3A35.3046006 600w, https://dam.mihomes.com/media/5032611/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.1182956 900w, https://dam.mihomes.com/media/5032611/50396.jpeg?timestamp=2026-07-20T16%3A52%3A30.5292103 1200w, https://dam.mihomes.com/media/5032611/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.8608486 1800w, https://dam.mihomes.com/media/5032611/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.1317651 2400w" title="DefaultImage2" width="1800" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5032613/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.0046340" srcset="https://dam.mihomes.com/media/5032613/50398.jpeg?timestamp=2026-07-20T16%3A52%3A38.0061965 300w, https://dam.mihomes.com/media/5032613/50397.jpeg?timestamp=2026-07-20T16%3A52%3A37.1317158 600w, https://dam.mihomes.com/media/5032613/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.7259533 900w, https://dam.mihomes.com/media/5032613/50396.jpeg?timestamp=2026-07-20T16%3A52%3A36.3377543 1200w, https://dam.mihomes.com/media/5032613/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.0046340 1800w, https://dam.mihomes.com/media/5032613/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.8027102 2400w" title="DefaultImage5" width="1800" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5032615/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.2481826" srcset="https://dam.mihomes.com/media/5032615/50398.jpeg?timestamp=2026-07-20T16%3A52%3A36.1892855 300w, https://dam.mihomes.com/media/5032615/50397.jpeg?timestamp=2026-07-20T16%3A52%3A34.5471979 600w, https://dam.mihomes.com/media/5032615/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.1638269 900w, https://dam.mihomes.com/media/5032615/50396.jpeg?timestamp=2026-07-20T16%3A52%3A34.3817444 1200w, https://dam.mihomes.com/media/5032615/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.2481826 1800w, https://dam.mihomes.com/media/5032615/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.1681442 2400w" title="DefaultImage4" width="1800" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5032614/50421.jpeg?timestamp=2026-07-20T16%3A52%3A33.6343244" srcset="https://dam.mihomes.com/media/5032614/50398.jpeg?timestamp=2026-07-20T16%3A52%3A30.2415539 300w, https://dam.mihomes.com/media/5032614/50397.jpeg?timestamp=2026-07-20T16%3A52%3A28.6642668 600w, https://dam.mihomes.com/media/5032614/50423.jpeg?timestamp=2026-07-20T16%3A52%3A33.6743057 900w, https://dam.mihomes.com/media/5032614/50396.jpeg?timestamp=2026-07-20T16%3A52%3A26.8127284 1200w, https://dam.mihomes.com/media/5032614/50421.jpeg?timestamp=2026-07-20T16%3A52%3A33.6343244 1800w, https://dam.mihomes.com/media/5032614/50422.jpeg?timestamp=2026-07-20T16%3A52%3A32.7348581 2400w" title="DefaultImage3" width="1800" class="image-banner-item-more" />
+ </span>
+ </div>
+
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <div class="modal fullscreen-modal gallery-modal gallery-modal--simple" data-modal="" id="simple-gallery-modal" data-track-views="">
+ <div class="gallery-modal__list-container">
+ <div class="gallery-modal__controls">
+ <button class="close-icon" data-modal-close>
+ <svg class="icon icon-close-gallery" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close-gallery"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__list-container-arrows">
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="prev" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="4" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="next" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="0" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__controls gallery-modal__controls__zoom">
+ <button class="close-icon" data-gallery="simple-gallery-modal" data-zoom>
+ <svg class="icon icon-zoom" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#zoom"></use>
+</svg>
+ </button>
+ </div>
+ <ul class="gallery-modal__list no-transition" style="transform: translateX(-200%);">
+
+ <li class="gallery-slide-container" data-slide-id="0" data-image="https://dam.mihomes.com/media/3799533/50398.jpeg?timestamp=2025-10-03T18%3A25%3A27.8461556 300w, https://dam.mihomes.com/media/3799533/50397.jpeg?timestamp=2025-10-03T18%3A25%3A27.5962255 600w, https://dam.mihomes.com/media/3799533/50423.jpeg?timestamp=2025-10-03T18%3A25%3A30.2722842 900w, https://dam.mihomes.com/media/3799533/50396.jpeg?timestamp=2025-10-03T18%3A25%3A26.3811339 1200w, https://dam.mihomes.com/media/3799533/50421.jpeg?timestamp=2025-10-03T18%3A25%3A30.2715959 1800w, https://dam.mihomes.com/media/3799533/50422.jpeg?timestamp=2025-10-03T18%3A25%3A30.2727838 2400w" data-caption="Lexington Rendering Elevation C" data-count="<strong>1</strong> of <strong>5</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lexington Rendering Elevation C" height="1600" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/3799533/50421.jpeg?timestamp=2025-10-03T18%3A25%3A30.2715959" srcset="https://dam.mihomes.com/media/3799533/50398.jpeg?timestamp=2025-10-03T18%3A25%3A27.8461556 300w, https://dam.mihomes.com/media/3799533/50397.jpeg?timestamp=2025-10-03T18%3A25%3A27.5962255 600w, https://dam.mihomes.com/media/3799533/50423.jpeg?timestamp=2025-10-03T18%3A25%3A30.2722842 900w, https://dam.mihomes.com/media/3799533/50396.jpeg?timestamp=2025-10-03T18%3A25%3A26.3811339 1200w, https://dam.mihomes.com/media/3799533/50421.jpeg?timestamp=2025-10-03T18%3A25%3A30.2715959 1800w, https://dam.mihomes.com/media/3799533/50422.jpeg?timestamp=2025-10-03T18%3A25%3A30.2727838 2400w" title="MINN-Lexington-ElevationC-Gen3-elev_DAY (1)" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="1" data-image="https://dam.mihomes.com/media/5032611/50398.jpeg?timestamp=2026-07-20T16%3A52%3A36.3725291 300w, https://dam.mihomes.com/media/5032611/50397.jpeg?timestamp=2026-07-20T16%3A52%3A35.3046006 600w, https://dam.mihomes.com/media/5032611/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.1182956 900w, https://dam.mihomes.com/media/5032611/50396.jpeg?timestamp=2026-07-20T16%3A52%3A30.5292103 1200w, https://dam.mihomes.com/media/5032611/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.8608486 1800w, https://dam.mihomes.com/media/5032611/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.1317651 2400w" data-caption="Lifestyle" data-count="<strong>2</strong> of <strong>5</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5032611/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.8608486" srcset="https://dam.mihomes.com/media/5032611/50398.jpeg?timestamp=2026-07-20T16%3A52%3A36.3725291 300w, https://dam.mihomes.com/media/5032611/50397.jpeg?timestamp=2026-07-20T16%3A52%3A35.3046006 600w, https://dam.mihomes.com/media/5032611/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.1182956 900w, https://dam.mihomes.com/media/5032611/50396.jpeg?timestamp=2026-07-20T16%3A52%3A30.5292103 1200w, https://dam.mihomes.com/media/5032611/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.8608486 1800w, https://dam.mihomes.com/media/5032611/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.1317651 2400w" title="DefaultImage2" width="1800" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="2" data-image="https://dam.mihomes.com/media/5032613/50398.jpeg?timestamp=2026-07-20T16%3A52%3A38.0061965 300w, https://dam.mihomes.com/media/5032613/50397.jpeg?timestamp=2026-07-20T16%3A52%3A37.1317158 600w, https://dam.mihomes.com/media/5032613/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.7259533 900w, https://dam.mihomes.com/media/5032613/50396.jpeg?timestamp=2026-07-20T16%3A52%3A36.3377543 1200w, https://dam.mihomes.com/media/5032613/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.0046340 1800w, https://dam.mihomes.com/media/5032613/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.8027102 2400w" data-caption="Lifestyle" data-count="<strong>3</strong> of <strong>5</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5032613/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.0046340" srcset="https://dam.mihomes.com/media/5032613/50398.jpeg?timestamp=2026-07-20T16%3A52%3A38.0061965 300w, https://dam.mihomes.com/media/5032613/50397.jpeg?timestamp=2026-07-20T16%3A52%3A37.1317158 600w, https://dam.mihomes.com/media/5032613/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.7259533 900w, https://dam.mihomes.com/media/5032613/50396.jpeg?timestamp=2026-07-20T16%3A52%3A36.3377543 1200w, https://dam.mihomes.com/media/5032613/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.0046340 1800w, https://dam.mihomes.com/media/5032613/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.8027102 2400w" title="DefaultImage5" width="1800" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="3" data-image="https://dam.mihomes.com/media/5032615/50398.jpeg?timestamp=2026-07-20T16%3A52%3A36.1892855 300w, https://dam.mihomes.com/media/5032615/50397.jpeg?timestamp=2026-07-20T16%3A52%3A34.5471979 600w, https://dam.mihomes.com/media/5032615/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.1638269 900w, https://dam.mihomes.com/media/5032615/50396.jpeg?timestamp=2026-07-20T16%3A52%3A34.3817444 1200w, https://dam.mihomes.com/media/5032615/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.2481826 1800w, https://dam.mihomes.com/media/5032615/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.1681442 2400w" data-caption="Lifestyle" data-count="<strong>4</strong> of <strong>5</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5032615/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.2481826" srcset="https://dam.mihomes.com/media/5032615/50398.jpeg?timestamp=2026-07-20T16%3A52%3A36.1892855 300w, https://dam.mihomes.com/media/5032615/50397.jpeg?timestamp=2026-07-20T16%3A52%3A34.5471979 600w, https://dam.mihomes.com/media/5032615/50423.jpeg?timestamp=2026-07-20T16%3A52%3A43.1638269 900w, https://dam.mihomes.com/media/5032615/50396.jpeg?timestamp=2026-07-20T16%3A52%3A34.3817444 1200w, https://dam.mihomes.com/media/5032615/50421.jpeg?timestamp=2026-07-20T16%3A52%3A41.2481826 1800w, https://dam.mihomes.com/media/5032615/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.1681442 2400w" title="DefaultImage4" width="1800" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="4" data-image="https://dam.mihomes.com/media/5032614/50398.jpeg?timestamp=2026-07-20T16%3A52%3A30.2415539 300w, https://dam.mihomes.com/media/5032614/50397.jpeg?timestamp=2026-07-20T16%3A52%3A28.6642668 600w, https://dam.mihomes.com/media/5032614/50423.jpeg?timestamp=2026-07-20T16%3A52%3A33.6743057 900w, https://dam.mihomes.com/media/5032614/50396.jpeg?timestamp=2026-07-20T16%3A52%3A26.8127284 1200w, https://dam.mihomes.com/media/5032614/50421.jpeg?timestamp=2026-07-20T16%3A52%3A33.6343244 1800w, https://dam.mihomes.com/media/5032614/50422.jpeg?timestamp=2026-07-20T16%3A52%3A32.7348581 2400w" data-caption="Lifestyle" data-count="<strong>5</strong> of <strong>5</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5032614/50421.jpeg?timestamp=2026-07-20T16%3A52%3A33.6343244" srcset="https://dam.mihomes.com/media/5032614/50398.jpeg?timestamp=2026-07-20T16%3A52%3A30.2415539 300w, https://dam.mihomes.com/media/5032614/50397.jpeg?timestamp=2026-07-20T16%3A52%3A28.6642668 600w, https://dam.mihomes.com/media/5032614/50423.jpeg?timestamp=2026-07-20T16%3A52%3A33.6743057 900w, https://dam.mihomes.com/media/5032614/50396.jpeg?timestamp=2026-07-20T16%3A52%3A26.8127284 1200w, https://dam.mihomes.com/media/5032614/50421.jpeg?timestamp=2026-07-20T16%3A52%3A33.6343244 1800w, https://dam.mihomes.com/media/5032614/50422.jpeg?timestamp=2026-07-20T16%3A52%3A32.7348581 2400w" title="DefaultImage3" width="1800" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ </ul>
+ <div class="gallery-slide__footer">
+ <span class="gallery-slide__title title-caption"></span>
+ <div class="gallery-slide__share-buttons">
+ <span class="count"></span>
+ </div>
+ </div>
+ </div>
+ </div>
+</div><script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Product",
+ "additionalType": "https://schema.org/SingleFamilyResidence",
+ "name": "1220 Edge Circle",
+ "sku": "s61B6aJhDU-_O7PhPw6P6A",
+ "description": "Key Features:",
+ "image": [
+ "https://dam.mihomes.com/media/3799533/50421.jpeg",
+ "https://dam.mihomes.com/media/5032612/50421.jpeg",
+ "https://dam.mihomes.com/media/5032613/50421.jpeg",
+ "https://dam.mihomes.com/media/5032614/50421.jpeg",
+ "https://dam.mihomes.com/media/5032611/50421.jpeg",
+ "https://dam.mihomes.com/media/5032615/50421.jpeg"
+ ],
+ "url": "https://www.mihomes.com/new-homes/minnesota/twin-cities/jordan/beaumont-bluffs/lexington-plan/1220-edge-circle",
+ "brand": {
+ "@type": "Organization",
+ "parentOrganization": {
+ "@type": "Organization",
+ "name": "M/I Homes"
+ },
+ "name": "Beaumont Bluffs"
+ },
+ "address": {
+ "@type": "PostalAddress",
+ "streetAddress": "1220 Edge Circle",
+ "addressLocality": "Jordan",
+ "addressRegion": "MN",
+ "postalCode": "55352",
+ "addressCountry": "US"
+ },
+ "geo": {
+ "@type": "GeoCoordinates",
+ "latitude": 44.657054,
+ "longitude": -93.646547
+ },
+ "telephone": "+17635867275",
+ "offers": {
+ "@type": "Offer",
+ "url": "/new-homes/minnesota/twin-cities/jordan/beaumont-bluffs/lexington-plan/1220-edge-circle",
+ "price": "429990.00",
+ "priceCurrency": "USD",
+ "priceValidUntil": "08-12-2026",
+ "itemCondition": "https://schema.org/NewCondition",
+ "availability": "https://schema.org/InStock"
+ },
+ "model": "https://www.mihomes.com/new-homes/minnesota/twin-cities/jordan/beaumont-bluffs/lexington-plan",
+ "numberOfBedrooms": {
+ "@type": "Integer",
+ "value": 4
+ },
+ "numberOfFullBathrooms": {
+ "@type": "Integer",
+ "value": 2
+ },
+ "numberOfPartialBathrooms": {
+ "@type": "Integer",
+ "value": 1
+ },
+ "petsAllowed": true,
+ "yearBuilt": "2026",
+ "floorSize": {
+ "@type": "QuantitativeValue",
+ "value": 2311,
+ "unitCode": "FTK"
+ }
+}</script>
+<div class="modals" data-modal-container aria-hidden="true">
+ <div class="modal box" data-modal id="signup-modal">
+ <button class="modal-close" data-modal-close>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+
+ <h2 class="h1 alt">Sign up for an M/I Homes account</h2>
+ <p>Save your favorite home plans and communities, compare home plans and share your dream home with sales associates and real estate agents.</p>
+ <p>
+ Already a member?
+ <a class="button-plain" href="/account/login">Log In to your account »</a>
+ </p>
+ <a class="button button-wide" href="/account/register">
+ <span class="button-text">
+ Sign up with email
+ </span>
+ </a>
+ </div>
+</div>
+
+<div class="product-header" data-yes="true">
+
+ <div class="product-header-row product-header__top">
+
+ <div class="product-header-centered ">
+ <div>
+ <a href="/new-homes/minnesota/twin-cities/jordan/beaumont-bluffs" class="button-plain">
+ Beaumont Bluffs
+ </a>
+
+ <h1 class="header-seo-h2">
+ 1220 Edge Circle, Jordan, MN 55352
+ <button class="aux-nav-link button-favorite-product gami-favorite-save" data-favorite-type="Home" data-favorite-id="e941adb3-61a2-4f0d-bf3b-b3e13f0e8fe8" data-favorite-fav-id="e941adb3-61a2-4f0d-bf3b-b3e13f0e8fe8" data-add-favorite>
+ <svg class="icon icon-favorite" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#favorite"></use>
+</svg>
+ <span class="aux-nav-link-action-text">
+ Favorite
+ </span>
+ </button>
+ </h1>
+ </div>
+
+ <div class="product-header__actions">
+ </div>
+ </div>
+ </div>
+
+ <div class="product-header-row">
+ <div class="product-header-centered tooptip-container">
+ <div>
+ <dl>
+ <dt>Ready date:</dt>
+ <dd>
+ <strong class="current-size">
+ September 28, 2026
+ </strong>
+ </dd>
+ </dl>
+ </div>
+ <div class="product-header-price">
+
+ Price:
+ <span class="home-card-price-old">$436,700</span>
+ <span class="product-header-price-new" content="429990">$429,990</span>
+
+ (
+ <span data-open-modal="mortgage-payment-calculator-modal" data-tooltip="Click estimate to see how we calculate this monthly payment" data-annualinsurance="1000" data-taxrate="0" data-interestrate="2.875" data-downpayment="20" data-price="429990" data-mortgage-monthly-payment tabindex="0" class="product-header-price-monthly"></span>
+ )
+
+
+ <span class="product-header-calculator">
+ <a class="button-plain button-plain-icon small button-icon-right gami-mortcalc-view" data-open-modal="mortgage-payment-calculator-modal">
+ <svg class="icon icon-calculator" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#calculator"></use>
+</svg>
+ Estimate Your Monthly Payment
+ </a>
+ </span>
+ </div>
+ </div>
+ </div>
+</div> <a rel="noopener" href="/new-homes/minnesota/twin-cities/jordan/beaumont-bluffs/plat map?lot=236753000116" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=1281 Edge Way, Jordan, MN 55352&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=OqoX9JhnnYKLeVCsWqAm7HjOhd8=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+<div class="product-header-centered product-header-centered--contact-card-only">
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Beaumont Bluffs</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://www.google.com/maps/dir/?api=1&destination=44.65499,-93.64907">
+ 1281 Edge Way<br>Jordan, MN 55352
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+</div><div class="product-header">
+ <div class="product-header product-header-navigation">
+ <nav class="product-header-subnav" data-subnav="">
+ <div class="product-header-subnav-wrapper">
+ <div class="product-header-subnav-mobile-bottom">
+ <a class="button button-contact-us" href="/support/sales">
+ <span class="button-text">
+ Contact Us
+ </span>
+ </a>
+ </div>
+
+
+ <a class="product-header-subnav-toggle subnav-link" data-subnav-toggle="">
+ <span class="text" data-subnav-text="">Overview</span>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </a>
+
+ <ul class="product-header-subnav-links" data-subnav-links=""></ul>
+ </div>
+ </nav>
+
+ <div class="product-header-subnav-spacer"></div>
+
+ <a href="#overview" class="product-header__back-to-top is-hidden" data-back-to-top>
+ <div class="arrow arrow--up"></div>
+ </a>
+ </div>
+</div><section class="content-inner-with-sidebar content-inner-with-sidebar-right">
+
+
+ <div class="content-inner-content">
+
+
+
+
+
+<section class="plan-specification">
+ <h2 class="plan-specification__header">
+ About 1220 Edge Circle
+ </h2>
+ <a class="plan-specification__get-directions button-plain button-plain-alt negative-top gami-directions-exit" target="_blank" href="https://www.google.com/maps/search/?api=1&query=44.657054,-93.646547">Get Directions</a>
+ <ul class="plan-specification__list">
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sq-ft" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sq-ft"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">square feet</span>
+ <strong class="plan-specification-item__value">
+ 2,311
+ </strong>
+ </div>
+ </li>
+ <li class="stories-specification">
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-homes" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#homes"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">stories</span>
+ <strong class="plan-specification-item__value">
+ 2
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-bed" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#bed"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">bedrooms</span>
+ <strong class="plan-specification-item__value">
+ 4
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-shower" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#shower"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">full bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 2
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sink" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sink"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">half bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 1
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-car" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#car"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">garages</span>
+ <strong class="plan-specification-item__value">
+ 2
+ <span data-tooltip="The most common approach to a home's garage, the front load garage incorporates the garage entry into a home's front elevation.">(Front Load)</span>
+
+ </strong>
+ </div>
+ </li>
+ </ul>
+</section>
+
+<div class="overview-table">
+ <div class="overview-table-table">
+ <dl>
+ <dt>City</dt>
+ <dd>Jordan, MN</dd>
+
+ <dt>Owner's Suite</dt>
+ <dd>Second Floor</dd>
+
+ <dt>County</dt>
+ <dd>Scott</dd>
+
+ <dt>Home Type</dt>
+ <dd>Single Family Home</dd>
+
+ <dt>School District</dt>
+ <dd>Jordan Public School District</dd>
+
+ <dt>Foundation Type</dt>
+ <dd>Slab</dd>
+
+ <dt>Home Plan</dt>
+ <dd>Lexington</dd>
+
+ <dt>MLS Number</dt>
+ <dd>7095161</dd>
+
+ <dt>Homesite</dt>
+ <dd>116</dd>
+
+ <dt> Base Plan Width & Depth</dt>
+ <dd>30 x 52 </dd>
+ </dl>
+ </div>
+</div>
+<article class="faq__question-item faq__question-item--mobile-only">
+ <button class="faq__question" data-expander="" aria-controls="community-series-teaser" aria-expanded="false">
+ <span class="faq__icon-wrapper">
+ <span class="faq__icon gami-directions-view">
+ <svg class="icon icon-arrow" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#arrow"></use>
+</svg>
+ </span>
+ </span>
+ Part of the Smart Series
+ <span class="show-hide-text hidden-text">Hide</span>
+ </button>
+ <div class="faq__answer preview-box preview-box--series-tout" id="community-series-teaser" role="region" tabindex="-1">
+ <a class="preview-box__image preview-box__preview one-fourth" href="/new-homes/minnesota/twin-cities/jordan/beaumont-bluffs/series/smart-series">
+ <img data-dam-generated alt="Preview image" height="1200" loading="lazy" sizes="(min-width: 48rem) 193px, 100vw" src="https://dam.mihomes.com/media/75189/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667" srcset="https://dam.mihomes.com/media/75189/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/75189/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/75189/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/75189/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/75189/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/75189/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="Dearborn-A-Stone-GEN02-elev_DAY" width="1800" class="cover-image" />
+ </a>
+ <div class="preview-box__content ">
+ <div class="preview-box__text__series-teaser">
+ <h3>Part of the Smart Series</h3>
+ <p>
+ An abundance of interior options are available with every floorplan of our Smart Series homes, and each of the spacious and open kitchens come equipped with quality stainless steel appliances.
+ </p>
+ </div>
+ <p>
+ <a class="button" href="/new-homes/minnesota/twin-cities/jordan/beaumont-bluffs/series/smart-series">Learn More</a>
+ </p>
+ </div>
+ </div>
+</article> <h2>
+ New Home for Sale in Jordan, Minnesota
+ </h2>
+ <div class="content-inner-content__capped-mobile-content">
+ <div data-slate-type="paragraph">Welcome to 1220 Edge Circle, Jordan, MN — a stunning new construction home built by M/I Homes, offering 2,311 square foot of thoughtfully designed living space. This home showcases quality craftsmanship and a well-planned floorplan that blends comfort with style.</div>
+<p data-slate-type="paragraph">Key Features:</p>
+<ul>
+ <li data-slate-type="paragraph">4 bedrooms, 2.5 bathrooms</li>
+ <li data-slate-type="paragraph">First-floor flex room</li>
+ <li data-slate-type="paragraph">Electric fireplace</li>
+ <li data-slate-type="paragraph">Loft</li>
+ <li data-slate-type="paragraph">Walk-in closet in every bedroom</li>
+</ul>
+<div data-slate-type="paragraph">Step inside to discover an inviting open-concept living space that creates a seamless flow between the main gathering areas, perfect for everyday living and entertaining. The design emphasizes clean lines, functional layouts, and high-quality finishes throughout.</div>
+<div data-slate-type="paragraph"> </div>
+<div data-slate-type="paragraph">Every detail of this home reflects the quality of design that M/I Homes is known for. From the carefully selected materials to the strategic layout, this home was built with both aesthetics and livability in mind. The upper-level owner's bedroom provides a private retreat with its own en-suite bathroom, offering a comfortable space to unwind at the end of the day.</div>
+<div data-slate-type="paragraph"> </div>
+<div data-slate-type="paragraph">The neighborhood offers a welcoming setting with proximity to parks and outdoor recreation, making it an ideal place to enjoy nature and stay active. This home delivers a perfect balance of quality construction, smart design, and comfortable living.</div>
+
+ <!-- and done -->
+ <h3>
+ About the Community
+ </h3>
+ <p>
+ Beaumont Bluffs is a welcoming new home community in Jordan, MN, offering a peaceful neighborhood setting with everyday convenience. Located near Highway 169 and close to surrounding cities like Shakopee, the community provides easy regional access while maintaining a relaxed, small‑town atmosphere. Schools, including Jordan High School, are just a short walk away.
+The community features a mix of single‑family homes and low‑maintenance villas with both one‑ and two‑story floorplans. Thoughtfully designed layouts offer open living areas, flexible spaces, and options well suited for growing families, one‑level living, or those seeking a simpler routine without sacrificing comfort.
+Beaumont Bluffs is surrounded by local shops, dining, parks, and outdoor destinations, with nearby golf, river valley views, and seasonal attractions encouraging time outside. The neighborhood design supports walkability and connection, making it easy to settle in and feel at home.
+Homes are served by the Jordan Public School District, known for strong academics and a close‑knit school community. With its blend of versatile home options, convenient location, and small‑town charm, Beaumont Bluffs offers a balanced lifestyle where comfort, community, and everyday ease come together.
+ <br />
+ <a class="button-plain button-plain-alt" href="/new-homes/minnesota/twin-cities/jordan/beaumont-bluffs">Learn more about this community »</a>
+ </p>
+ </div>
+ <button class="faq__question color-aqua" aria-expanded="false" data-read-more="">
+ <span class="faq__icon-wrapper">
+ <span class="faq__icon">
+ <svg class="icon icon-arrow" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#arrow"></use>
+</svg>
+ </span>
+ </span>
+ <span data-read-more-collapsed="">Read More</span>
+ <span data-read-more-expanded="">Show Less</span>
+ <span class="show-hide-text hidden-text">Show</span>
+ </button>
+
+
+
+ </div>
+
+ <div class="content-sidebar-right">
+ <a rel="noopener" href="/new-homes/minnesota/twin-cities/jordan/beaumont-bluffs/plat map?lot=236753000116" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=1281 Edge Way, Jordan, MN 55352&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=OqoX9JhnnYKLeVCsWqAm7HjOhd8=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Beaumont Bluffs</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://www.google.com/maps/dir/?api=1&destination=44.65499,-93.64907">
+ 1281 Edge Way<br>Jordan, MN 55352
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+
+
+ <figure class="lead-form lead-form-sidebar lead-form-sidebar--compact lead-form-sidebar-signup">
+ <div class="lead-form-container">
+ <div id="lead-sidebar-header" class="lead-form-sidebar-header lead-form-sidebar-header-image">
+ <div id="isa-information" data-sidebar-section="1">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="zhassing@mihomes.com-0811202407.jpg" height="128" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/2181136/50421.jpeg?timestamp=2024-08-11T11%3A09%3A09.5132974" srcset="https://dam.mihomes.com/media/2181136/50398.jpeg?timestamp=2024-08-11T11%3A09%3A08.9430182 300w, https://dam.mihomes.com/media/2181136/50397.jpeg?timestamp=2024-08-11T11%3A09%3A08.3945113 600w, https://dam.mihomes.com/media/2181136/50423.jpeg?timestamp=2024-08-11T11%3A09%3A06.2986706 900w, https://dam.mihomes.com/media/2181136/50396.jpeg?timestamp=2024-08-11T11%3A09%3A05.2296897 1200w, https://dam.mihomes.com/media/2181136/50421.jpeg?timestamp=2024-08-11T11%3A09%3A09.5132974 1800w, https://dam.mihomes.com/media/2181136/50422.jpeg?timestamp=2024-08-11T11%3A09%3A07.8945354 2400w" title="zhassing@mihomes.com-0811202407" width="128" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="chamilton@MIHOMES.com-0217202606.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4419752/50421.jpeg?timestamp=2026-02-17T11%3A58%3A33.8940544" srcset="https://dam.mihomes.com/media/4419752/50398.jpeg?timestamp=2026-02-17T11%3A58%3A32.4287515 300w, https://dam.mihomes.com/media/4419752/50397.jpeg?timestamp=2026-02-17T11%3A58%3A31.8932682 600w, https://dam.mihomes.com/media/4419752/50423.jpeg?timestamp=2026-02-17T11%3A58%3A32.6845671 900w, https://dam.mihomes.com/media/4419752/50396.jpeg?timestamp=2026-02-17T11%3A58%3A31.3594776 1200w, https://dam.mihomes.com/media/4419752/50421.jpeg?timestamp=2026-02-17T11%3A58%3A33.8940544 1800w, https://dam.mihomes.com/media/4419752/50422.jpeg?timestamp=2026-02-17T11%3A58%3A32.9638973 2400w" title="chamilton@MIHOMES.com-0217202606" width="96" class="cover-image" />
+ </div>
+ </div>
+ <h3 class="">Have questions for us?</h3>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=7635867275'>(763) 586-7275</a>
+ </p>
+ </div>
+ <div id="form-agent-header" class="lead-form-sidebar-section right" style="display: none;">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+
+ </div>
+ <div class="lead-form-sidebar-form" data-lead-form-sidebar="">
+ <div class="lead-form-sidebar-errors"></div>
+<form action="/api/LeadGenFormSidebar/LeadGenFormSidebar" data-gami-event="gami-form-question" data-parsley-validate="" data-sidebar-hidden-required="" data-sidebar-nav-check="visit_sidebar" method="post" name="basic_sidebar" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="7a111fd4-a756-4406-8178-0460bcbe8576" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Inventory" /><input id="PostType" name="PostType" type="hidden" value="sidebar" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:22 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="ItemId" name="ItemId" type="hidden" value="e941adb3-61a2-4f0d-bf3b-b3e13f0e8fe8" /><input id="HomeType" name="HomeType" type="hidden" value="Single Family Home" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 443px;">
+ <div class="align-left center lead-form-sidebar-section" data-cta="Request Information" data-sidebar-section="0">
+ <div>
+
+ <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="">
+ </div>
+
+ <div class="form-field no-label-errors" style="margin-top: 1px">
+ <label for="fullname_sidebar"></label>
+ <input type="text"
+ name="FormFullName"
+ id="fullname_sidebar"
+ placeholder="Full Name"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required." data-parsley-trigger="blur"
+ maxlength="60"
+ data-parsley-filter-emoji=""
+ >
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormEmailAddress"
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="phone_sidebar">Phone Number</label>
+ <input class="gami-tel" type="tel"
+ autocomplete="tel-national"
+ name="FormPhoneNumber"
+ id="phone_sidebar"
+ placeholder="Phone Number" +
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ value=""
+
+ data-parsley-phone-number="" data-parsley-trigger="blur"
+ maxlength="25">
+ </div>
+
+ <div class="form-field no-label-errors">
+ <label for="comments_sidebar">Questions or Comments</label>
+ <textarea rows="5"
+ name="FormComments"
+ id="comments_sidebar"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000">Please send me information about 1220 Edge Circle</textarea>
+ </div>
+ </div>
+ <div>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox hide" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input data-parsley-multiple="visit_sidebar" name="visit_sidebar" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to plan a visit</span>
+ </label>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormEmailOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSAssociateCommunicationsOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" data-sidebar-section="1" tabindex="-1">
+ <div>
+ <h4>Plan a visit</h4>
+ <p>Select your preferred day and time and we’ll help set up the perfect visit.</p>
+ </div>
+ <div>
+ <div class="select no-label-errors">
+ <label for="tripday_sidebar"> </label>
+ <div class="select-wrap">
+<select data-nested-select="#select-triptime-block-sidebar" data-parsley-group="visit_sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+
+ <div class="select no-label-errors">
+ <label for="triptime_sidebar"> </label>
+ <div class="select-wrap">
+<select data-parsley-group="visit_sidebar" id="triptime_sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" dta-cta="Continue" data-sidebar-section="2" data-agent-section tabindex="-1">
+
+ <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0">
+ <div class="align-left center lead-form-sidebar-section" data-sidebar-section="0">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button form-submit">
+ <span class="button-text">Request Information</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-left lead-form-sidebar-section right" data-sidebar-section="1">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit" disabled tabindex="-1">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="2">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button" disabled tabindex="-1">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit" disabled tabindex="-1">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+ </div>
+ </div>
+</form> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 25px;">
+ <div class="align-center center lead-form-sidebar-section" data-sidebar-section="0">
+ <button class="button-plain small" data-open-modal="privacy-policy-modal" href="javascript:void()">Privacy Policy</button>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="1">
+ <button class="button-plain small" data-sidebar-nav="0" tabindex="-1">« Go Back</button>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <!-- THANK YOU MESSAGE -->
+ <div class="lead-form-container-success">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-success lead-form-sidebar-header-image">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" data-parsley-validate="" method="POST" name="thanksyou_sidebar" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+ <div>
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+ <div class="form-field form-field-password">
+ <label for="password"> </label>
+ <input data-parsley-required-message="Password is required." data-parsley-valid-password="" id="password" minlength="8" name="password" placeholder="Password" required="" type="password" data-parsley-filter-emoji="" data-parsley-trigger="blur">
+ <button class="password-input-change" data-input-change="" type="button">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)" tabindex="0">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">
+ Create Account
+ </span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ <h3 class="h3 preview-box__header">
+ Incentives
+ </h3>
+ <a class="incentive incentive__sidebar--simple" href="/new-homes/minnesota/twin-cities/incentives/2026-quick-move-in-rates">
+ <div class="incentive-background">
+ <img data-dam-generated alt="Lower Payments" height="1200" loading="eager" sizes="(min-width: 64rem) 328px, 100vw" src="https://dam.mihomes.com/media/3398695/50421.jpeg" srcset="https://dam.mihomes.com/media/3398695/50398.jpeg?timestamp=2025-07-15T17%3A06%3A54.6851490 300w, https://dam.mihomes.com/media/3398695/50397.jpeg?timestamp=2025-07-15T17%3A06%3A53.2195117 600w, https://dam.mihomes.com/media/3398695/50423.jpeg?timestamp=2025-07-15T17%3A07%3A01.3602581 900w, https://dam.mihomes.com/media/3398695/50396.jpeg?timestamp=2025-07-15T17%3A06%3A51.6143482 1200w, https://dam.mihomes.com/media/3398695/50421.jpeg?timestamp=2025-07-15T17%3A06%3A59.7040981 1800w, https://dam.mihomes.com/media/3398695/50422.jpeg?timestamp=2025-07-15T17%3A07%3A00.6417884 2400w" title="LowerPayments-Header-1800x430" width="1800" class="cover-image cover-image--abs" />
+ <div class="incentive__badge">
+<img data-dam-generated alt="Lower Payments" height="250" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3398693/50421.jpeg?timestamp=2025-07-15T17%3A07%3A00.4627689" srcset="https://dam.mihomes.com/media/3398693/50398.jpeg?timestamp=2025-07-15T17%3A06%3A56.7887259 300w, https://dam.mihomes.com/media/3398693/50397.jpeg?timestamp=2025-07-15T17%3A06%3A53.7611340 600w, https://dam.mihomes.com/media/3398693/50423.jpeg?timestamp=2025-07-15T17%3A07%3A00.9731584 900w, https://dam.mihomes.com/media/3398693/50396.jpeg?timestamp=2025-07-15T17%3A06%3A50.6414775 1200w, https://dam.mihomes.com/media/3398693/50421.jpeg?timestamp=2025-07-15T17%3A07%3A00.4627689 1800w, https://dam.mihomes.com/media/3398693/50422.jpeg?timestamp=2025-07-15T17%3A07%3A01.1883498 2400w" title="Low Payments Icon 250x250" width="250" class="incentive__badge-background" maxwidth="2400" /> </div>
+ </div>
+ <div class="incentive-inner">
+ <span class="incentive-title--wrapper">
+ <p class="incentive-title">Move in Now, Pay Less</p>
+ </span>
+ <p class="incentive-sub-headline">For a limited time, secure a 2/1 buydown with first-year rates as low as 3.5% Rate**/ 5.659% APR**on a 30-year fixed conventional loan through M/I Financial, LLC. Learn more about how you can increase your home buying power today!</p>
+ <p class="incentive-button--wrapper">
+ <span class="button button-small" href="/new-homes/minnesota/twin-cities/incentives/2026-quick-move-in-rates">
+ <span class="button-text uppercase">View Details</span>
+ </span>
+ </p>
+ </div>
+ </a>
+
+</div>
+</section>
+
+ <div id="design" class="box box-full box-no-padding-bottom" data-subnav-page-link="Design Options">
+ <div class="content-inner-centered">
+ <h2>Add the perfect finishing touch</h2>
+ <p class="subtitle content-inner-centered-narrow negative-top">
+ Put your personal touch on these Quick Move-In Homes with some selections from our Design Studio.
+ </p>
+ <div class="button-tooltip-wrapper">
+ <a class="button button-tooltip event-click" href="https://edc.envisionoptions.com/browser.aspx?NHTNumber=MIHOMES&Loc1=100&Lev1=CORP&Loc2=236&Lev2=DIV&HomeNumber=13ED1E&Page=Confirmselection&utm_source=mihomes.com&utm_campaign=&utm_content=beaumont-bluffs-Lexington-1220-Edge-Circle&utm_term=" target="_blank" data-event-category=OptionsGallery
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ See This Home's Options
+ </a>
+
+
+ </div>
+ <a class="button" href="/design/design-studio">
+ <span class="button-text">
+ Visit a Design Studio
+ </span>
+ </a>
+ </div>
+ </div>
+ <div class="box box-full box-no-padding-top">
+ <div class="contained-width">
+ <hr class="hr-even">
+
+ <h4>Incentives</h4>
+ <article class="preview-box ">
+ <a class="preview-box-link" href="/new-homes/minnesota/twin-cities/incentives/2026-fair-savings">
+ <div class="preview-box__image preview-box__preview one-third">
+ <img data-dam-generated alt="RTG | Fair Savings" height="5000" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4861992/50421.jpeg" srcset="https://dam.mihomes.com/media/4861992/50398.jpeg?timestamp=2026-06-11T14%3A44%3A58.2553589 300w, https://dam.mihomes.com/media/4861992/50397.jpeg?timestamp=2026-06-11T14%3A44%3A52.4050967 600w, https://dam.mihomes.com/media/4861992/50423.jpeg?timestamp=2026-06-11T14%3A45%3A13.7503130 900w" title="FairSavings-Card" width="7500" class="cover-image" maxwidth="900" />
+ </div>
+ <div class="preview-box__content">
+ <h3 class="h3 preview-box__header">
+ Step Right Up to Savings Fair for You
+
+
+ </h3>
+ <p class="preview-box__text">The fair's in town and so are the deals. Purchase your new M/I Home now and win big on savings.</p>
+ <p>
+ <span class="button-plain button-plain-alt" href="/new-homes/minnesota/twin-cities/incentives/2026-fair-savings">View Details »</span>
+ </p>
+ </div>
+ </a>
+ </article>
+ <article class="preview-box ">
+ <a class="preview-box-link" href="/new-homes/minnesota/twin-cities/incentives/2026-quick-move-in-rates">
+ <div class="preview-box__image preview-box__preview one-third">
+ <img data-dam-generated alt="Lower Payments" height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3398695/50421.jpeg" srcset="https://dam.mihomes.com/media/3398695/50398.jpeg?timestamp=2025-07-15T17%3A06%3A54.6851490 300w, https://dam.mihomes.com/media/3398695/50397.jpeg?timestamp=2025-07-15T17%3A06%3A53.2195117 600w, https://dam.mihomes.com/media/3398695/50423.jpeg?timestamp=2025-07-15T17%3A07%3A01.3602581 900w" title="LowerPayments-Header-1800x430" width="1800" class="cover-image" maxwidth="900" />
+ </div>
+ <div class="preview-box__content">
+ <h3 class="h3 preview-box__header">
+ Move in Now, Pay Less
+
+
+ </h3>
+ <p class="preview-box__text">For a limited time, secure a 2/1 buydown with first-year rates as low as 3.5% Rate**/ 5.659% APR**on a 30-year fixed conventional loan through M/I Financial, LLC. Learn more about how you can increase your home buying power today!</p>
+ <p>
+ <span class="button-plain button-plain-alt" href="/new-homes/minnesota/twin-cities/incentives/2026-quick-move-in-rates">View Details »</span>
+ </p>
+ </div>
+ </a>
+ </article>
+ </div>
+ </div>
+
+ <div id="floor" class="box box-full box-last event-inview" data-subnav-page-link="FloorPlan" data-event-category=Floorplan
+ data-event-action=scroll
+ data-event-label=view
+>
+ <div class="content-inner-centered content-inner-centered--mobile">
+<img data-dam-generated alt="Lexington First Floor" height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4803389/50421.jpeg?timestamp=2026-05-29T22%3A03%3A10.7002871" srcset="https://dam.mihomes.com/media/4803389/50398.jpeg?timestamp=2026-05-29T22%3A03%3A10.5094045 300w, https://dam.mihomes.com/media/4803389/50397.jpeg?timestamp=2026-05-29T22%3A03%3A10.5077713 600w, https://dam.mihomes.com/media/4803389/50423.jpeg?timestamp=2026-05-29T22%3A03%3A10.8540913 900w, https://dam.mihomes.com/media/4803389/50396.jpeg?timestamp=2026-05-29T22%3A03%3A09.7509826 1200w, https://dam.mihomes.com/media/4803389/50421.jpeg?timestamp=2026-05-29T22%3A03%3A10.7002871 1800w, https://dam.mihomes.com/media/4803389/50422.jpeg?timestamp=2026-05-29T22%3A03%3A10.9011098 2400w" title="MINN-lexington-origenseries-singlefamily-firstfloor" width="1800" class="cover-image cover-image--abs" /> <h2>Floorplan Options for Your New Home</h2>
+ <p class="content-inner-centered-narrow negative-top subtitle">The Lexington accommodates a variety of household living arrangements with its highly desired flexibility and modern design. Explore the many possibilities in the popular Lexington plan.</p>
+ <a target="_blank" class="button floor-plan-options__button event-click" href="https://rifp.ml3ds-icon.com/#/floorplan/560927?pcoLink=66131&pco=1517456%2c1517770&reverseFloorPlan=true" data-event-category=Floorplan
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <svg class="icon icon-fullscreen" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#fullscreen"></use>
+</svg>
+ <span class="button-text">
+ Show Floorplan
+ </span>
+ </a>
+ </div>
+ <section class="floor-plan-options">
+ <iframe loading="lazy" id="floor-plan" data-fullsize class="floor-plan-options__iframe" data-src="https://rifp.ml3ds-icon.com/#/floorplan/560927?pcoLink=66131&pco=1517456%2c1517770&reverseFloorPlan=true" scrolling="no" style="overflow: hidden">
+ <p>Your browser does not support iframes.</p>
+ </iframe>
+ </section>
+ </div>
+
+ <div class="box box-full box-no-padding-top-bottom " id="">
+ <div class="content-inner-centered">
+ <div class="leadgenTitleBlock">
+ <h2 class="h2">Ready to plan a visit? We can help</h2>
+ <p class="subtitle marginless">Send us your preferred time to stop by and a sales representative will take care of the rest</p>
+ </div>
+ <section class="lead-form">
+ <div id="lead-form-block-user-info" class="lead-form-container lead-form-block" data-lead-form-sidebar="">
+ <aside class="lead-form-block__details" style="">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="zhassing@mihomes.com-0811202407.jpg" height="128" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/2181136/50421.jpeg?timestamp=2024-08-11T11%3A09%3A09.5132974" srcset="https://dam.mihomes.com/media/2181136/50398.jpeg?timestamp=2024-08-11T11%3A09%3A08.9430182 300w, https://dam.mihomes.com/media/2181136/50397.jpeg?timestamp=2024-08-11T11%3A09%3A08.3945113 600w, https://dam.mihomes.com/media/2181136/50423.jpeg?timestamp=2024-08-11T11%3A09%3A06.2986706 900w, https://dam.mihomes.com/media/2181136/50396.jpeg?timestamp=2024-08-11T11%3A09%3A05.2296897 1200w, https://dam.mihomes.com/media/2181136/50421.jpeg?timestamp=2024-08-11T11%3A09%3A09.5132974 1800w, https://dam.mihomes.com/media/2181136/50422.jpeg?timestamp=2024-08-11T11%3A09%3A07.8945354 2400w" title="zhassing@mihomes.com-0811202407" width="128" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="chamilton@MIHOMES.com-0217202606.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4419752/50421.jpeg?timestamp=2026-02-17T11%3A58%3A33.8940544" srcset="https://dam.mihomes.com/media/4419752/50398.jpeg?timestamp=2026-02-17T11%3A58%3A32.4287515 300w, https://dam.mihomes.com/media/4419752/50397.jpeg?timestamp=2026-02-17T11%3A58%3A31.8932682 600w, https://dam.mihomes.com/media/4419752/50423.jpeg?timestamp=2026-02-17T11%3A58%3A32.6845671 900w, https://dam.mihomes.com/media/4419752/50396.jpeg?timestamp=2026-02-17T11%3A58%3A31.3594776 1200w, https://dam.mihomes.com/media/4419752/50421.jpeg?timestamp=2026-02-17T11%3A58%3A33.8940544 1800w, https://dam.mihomes.com/media/4419752/50422.jpeg?timestamp=2026-02-17T11%3A58%3A32.9638973 2400w" title="chamilton@MIHOMES.com-0217202606" width="96" class="cover-image" />
+ </div>
+ </div>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=7635867275'>(763) 586-7275</a>
+ </p>
+ </aside>
+<form action="/api/LeadGenFormBlock/LeadGenFormBlock" class="lead-form-block__form" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="7a111fd4-a756-4406-8178-0460bcbe8576" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Model" /><input id="PostType" name="PostType" type="hidden" value="block" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:22 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="FormAgentEmailAddress" name="FormAgentEmailAddress" type="hidden" value="" /><input id="ItemId" name="ItemId" type="hidden" value="e941adb3-61a2-4f0d-bf3b-b3e13f0e8fe8" /><input id="HomeType" name="HomeType" type="hidden" value="Single Family Home" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="" hidden>
+ </div>
+ <div class="form-field">
+ <label for="fullname">Full Name </label>
+ <input type="text"
+ name="FormFullName"
+ placeholder="John Doe"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required."
+ maxlength="60"
+
+ data-parsley-filter-emoji=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="emailaddress">Email Address </label>
+ <input type="email"
+ name="FormEmailAddress" ,
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field">
+ <label for="phone">Phone Number </label>
+ <input class="gami-tel" type="tel"
+ name="FormPhoneNumber"
+ id="phone"
+ placeholder="5555555555"
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ maxlength="25"
+ value=""
+
+ data-parsley-phone-number=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="input">Questions or Comments </label>
+ <textarea rows="5"
+ name="FormComments"
+ id="input"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000"></textarea>
+ </div>
+ <div class="lead-form-block__contacts">
+ <div class="form-field select" {="">
+ <label for="tripday_block">Preferred Day <em> (Optional)</em></label>
+ <div class="select-wrap">
+ <div class="select-wrap">
+<select date-nested-select="#select-triptime-block-sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+
+ <div class="form-field select" {="">
+ <label for="triptime_block">Preferred Time <em> (Optional)</em></label>
+ <div class="select-wrap">
+
+<select id="select-triptime-block-sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-block__checkboxes-container">
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormEmailOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSAssociateCommunicationsOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ <div class="lead-form-block__submit">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+
+ <span class="align-center">
+ <a class="button-plain small" data-open-modal="privacy-policy-modal">Privacy Policy</a>
+ </span>
+ </div>
+</form> </div>
+ <div id="lead-form-block-agent-form" class="lead-form-container lead-form-block" data-lead-form-sidebar="" data-agent-section style="display: none;">
+ <figure class="lead-form lead-form-sidebar">
+ <div id="form-agent-header" class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+<form action="/new-homes/minnesota/twin-cities/jordan/beaumont-bluffs/lexington-plan/1220-edge-circle" class="lead-form-sidebar-section" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""> <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ id="block-agent-email"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+</form> </div>
+ </figure>
+ </div>
+
+
+
+ <div class="lead-form-container-success">
+ <figure class="lead-form lead-form-sidebar">
+ <div class="lead-form-container-success" style="display: block">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" method="POST" name="thanksyou_sidebar" data-parsley-validate="" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+
+ <div>
+ <div class="form-field form-field-password">
+ <label for="password"></label>
+ <input type="password"
+ name="password"
+ id="password"
+ placeholder="Password"
+ data-parsley-valid-password=""
+ minlength="8"
+ required=""
+ data-parsley-required-message="Password is required."
+ data-parsley-trigger="blur">
+
+ <button type="button" class="password-input-change" data-input-change="">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span tabindex="0"
+ data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">Create Account</span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ </div>
+ </section>
+ </div>
+ </div>
+
+ <div class="box box-centered box-full box-transparent" id="neraby">
+ <div class="box-full-inner">
+ <h3 class="h2">
+ Other Quick Move-In Homes
+ </h3>
+
+ <div class="featured-grid">
+ <div class="row">
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/minnesota/twin-cities/waconia/holbrook/lexington-plan/4334-meadowview-drive">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Lexington Rendering Elevation C" height="1600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3799533/50421.jpeg?timestamp=2025-10-03T18%3A25%3A30.2715959" srcset="https://dam.mihomes.com/media/3799533/50398.jpeg?timestamp=2025-10-03T18%3A25%3A27.8461556 300w, https://dam.mihomes.com/media/3799533/50397.jpeg?timestamp=2025-10-03T18%3A25%3A27.5962255 600w, https://dam.mihomes.com/media/3799533/50423.jpeg?timestamp=2025-10-03T18%3A25%3A30.2722842 900w, https://dam.mihomes.com/media/3799533/50396.jpeg?timestamp=2025-10-03T18%3A25%3A26.3811339 1200w, https://dam.mihomes.com/media/3799533/50421.jpeg?timestamp=2025-10-03T18%3A25%3A30.2715959 1800w, https://dam.mihomes.com/media/3799533/50422.jpeg?timestamp=2025-10-03T18%3A25%3A30.2727838 2400w" title="MINN-Lexington-ElevationC-Gen3-elev_DAY (1)" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Lexington</p>
+ <p class="featured-grid-middle">4334 Meadowview Drive, Waconia, Minnesota</p>
+ <p class="featured-grid-subtitle">Listed at $469,990</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/minnesota/twin-cities/waconia/holbrook/louisville-plan/4329-meadowview-drive">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Louisville Elevation C" height="1600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3827774/50421.jpeg?timestamp=2025-10-06T16%3A01%3A45.7325894" srcset="https://dam.mihomes.com/media/3827774/50398.jpeg?timestamp=2025-10-06T16%3A01%3A44.2982410 300w, https://dam.mihomes.com/media/3827774/50397.jpeg?timestamp=2025-10-06T16%3A01%3A44.3163023 600w, https://dam.mihomes.com/media/3827774/50423.jpeg?timestamp=2025-10-06T16%3A01%3A46.0768988 900w, https://dam.mihomes.com/media/3827774/50396.jpeg?timestamp=2025-10-06T16%3A01%3A43.1928863 1200w, https://dam.mihomes.com/media/3827774/50421.jpeg?timestamp=2025-10-06T16%3A01%3A45.7325894 1800w, https://dam.mihomes.com/media/3827774/50422.jpeg?timestamp=2025-10-06T16%3A01%3A48.0280067 2400w" title="MINN-Louisville-ElevationC-Gen3-elev_DAY" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Louisville</p>
+ <p class="featured-grid-middle">4329 Meadowview Drive, Waconia, Minnesota</p>
+ <p class="featured-grid-subtitle">Listed at $507,990</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/minnesota/twin-cities/jordan/beaumont-bluffs/wellington-plan/714-prospect-point-road">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Elevation B" height="3000" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4549835/50421.jpeg?timestamp=2026-03-24T16%3A58%3A55.9679589" srcset="https://dam.mihomes.com/media/4549835/50398.jpeg?timestamp=2026-03-24T16%3A58%3A40.3864583 300w, https://dam.mihomes.com/media/4549835/50397.jpeg?timestamp=2026-03-24T16%3A58%3A37.4553108 600w, https://dam.mihomes.com/media/4549835/50423.jpeg?timestamp=2026-03-24T16%3A59%3A05.0943777 900w, https://dam.mihomes.com/media/4549835/50396.jpeg?timestamp=2026-03-24T16%3A58%3A36.7807269 1200w, https://dam.mihomes.com/media/4549835/50421.jpeg?timestamp=2026-03-24T16%3A58%3A55.9679589 1800w, https://dam.mihomes.com/media/4549835/50422.jpeg?timestamp=2026-03-24T16%3A58%3A59.0162130 2400w" title="Wellington - House B - Final" width="4000" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Wellington</p>
+ <p class="featured-grid-middle">714 Prospect Point Road, Jordan, Minnesota</p>
+ <p class="featured-grid-subtitle">Listed at $595,170</p>
+ </a>
+</div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ </main>
+
+
+<footer class="main-footer">
+ <div class="main-footer-inner">
+ <ul class="horizontal-list">
+ <li><a href="https://apply.workable.com/mi-homes/" target="_blank" rel="noopener noreferrer" >Careers</a></li>
+ <li><a href="/support/warranty" >Warranty</a></li>
+ <li><a href="https://investors.mihomes.com/" rel="noopener noreferrer" title="Investor Relations" target="_blank" >Investors</a></li>
+ <li><a href="/events" >Events</a></li>
+ <li><a href="/incentives" >Incentives</a></li>
+ <li><a href="/agent/agent-info" >Agents & Brokers</a></li>
+ <li><a href="/resources" >Home Buying Resources</a></li>
+ <li><a href="/why-mi/journey" >Journey</a></li>
+ <li><a href="/blog/" >Blog</a></li>
+ </ul>
+ <ul class="horizontal-list">
+ <li><a href="/policies/privacy-policy" >Privacy Policy</a></li>
+ <li><a href="/policies/terms-of-use" >Terms of Use</a></li>
+ <li><a href="/subscriptions" >Manage Subscriptions</a></li>
+ <li><a href="/support/ccpa" >CCPA</a></li>
+ </ul>
+ <ul class="icon-list">
+ <li>
+<a href="https://www.instagram.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Instagram" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704717/50399.png" srcset="https://dam.mihomes.com/media/4704717/50399.png?timestamp=2026-05-04T18%3A56%3A58.4036491 300w, https://dam.mihomes.com/media/4704717/50420.png 600w" title="instagram" width="24" /></a> </li>
+ <li>
+<a href="https://www.facebook.com/MIHomesInc/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Facebook" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57191/50399.png" srcset="https://dam.mihomes.com/media/57191/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57191/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="facebook" width="24" /></a> </li>
+ <li>
+<a href="https://www.youtube.com/MIHomesInc" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Youtube" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704715/50399.png" srcset="https://dam.mihomes.com/media/4704715/50399.png?timestamp=2026-05-04T18%3A34%3A30.5730196 300w, https://dam.mihomes.com/media/4704715/50420.png 600w" title="youtube" width="24" /></a> </li>
+ <li>
+<a href="https://www.pinterest.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Pinterest" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57192/50399.png" srcset="https://dam.mihomes.com/media/57192/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57192/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="pintrest" width="24" /></a> </li>
+ <li>
+<a href="http://www.houzz.com/pro/mi-homes/m-i-homes" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Houzz" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57193/50399.png" srcset="https://dam.mihomes.com/media/57193/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57193/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="houzz" width="24" /></a> </li>
+ <li>
+<a href="http://portal.hud.gov" class="" rel="me" target="_blank" ><img data-dam-generated alt="Equal Housing" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704718/50399.png" srcset="https://dam.mihomes.com/media/4704718/50399.png?timestamp=2026-05-04T19%3A02%3A51.2896193 300w, https://dam.mihomes.com/media/4704718/50420.png 600w" title="equal-housing" width="28" /></a> </li>
+ </ul>
+ <p class="main-footer-copyright">
+ Copyright 2026, M/I Homes, Inc. All rights reserved.
+ </p>
+ <p id="division-disclaimer" class="main-footer-copyright">
+
+
+ </p>
+ </div>
+</footer>
+</div>
+<div aria-label="Cookie Consent" role="dialog" id="ccpa-modal" class="ccpa-modal">
+ <p>By browsing, you accept our <a href="/policies/terms-of-use">terms of use</a> and <a href="/policies/privacy-policy">privacy policy</a>.</p>
+ <button class="button" type="button">OK</button>
+</div>
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/modals.css?ver=202608092245" rel="stylesheet" fetchpriority="low">
+ <div class="modal modal-wide box" data-modal="" id="privacy-policy-modal">
+ <button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div id="privacy-policy-text"></div>
+</div><div class="modal box box-wide box-paddingless" data-modal="" id="mortgage-payment-calculator-modal">
+<button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+</button>
+ <div id="mortgage-payment-calculator" data-price="429990" data-values="4d064619-e3ed-4c88-9124-a6812bcbbe83"></div>
+</div>
+ <div class="modal" data-modal id="search-modal">
+ <form action="/search" class="search-form ">
+ <input class="search-form-input" id="search-form-input" name="search" placeholder="Search M/I Homes"
+ type="search" />
+ <button class="button search-form-clear-button" type="button">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+
+ </button>
+ <button class="button search-form-submit" type="submit">
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ <div class="search-form-results">
+ <div class="search-form-results-list"></div>
+ </div>
+ </form>
+ </div>
+</div>
+
+<!-- toolkit scripts -->
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit_common.js?ver=202608092245"></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit.js?ver=202608092245"></script>
+ <script src="https://cdn.mihomes.com/assets/toolkit/js/product.js?ver=202608092245"></script>
+ <script defer src="https://cdn.mihomes.com/assets/toolkit/js/mortgage-calculator.js?ver=202608092245"></script>
+<script>window.jQuery = window.$ = window.JQUERY;</script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/common.js?ver=202608092245" defer></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/favorites.js?ver=202608092245" defer></script>
+
+
+<script>
+ var w = Math.max(
+ document.body.scrollWidth,
+ document.documentElement.scrollWidth,
+ document.body.offsetWidth,
+ document.documentElement.offsetWidth,
+ document.documentElement.clientWidth
+ );
+ window.setCookie('screen-width', encodeURIComponent(w), { expires: 14, path: "/" })
+ </script>
+
+<script>
+
+
+</script>
+<script type="text/javascript">
+ const millisecondsPerDay = 86400000;
+ const millisecondsPerHour = millisecondsPerDay / 24;
+ const millisecondsPerMinute = millisecondsPerHour / 60;
+ const millisecondsPerSecond = 1000;
+ function addLeadingZero(val) {
+ if(val.toString().length < 2) {
+ return '0'+val;
+ }
+ return val;
+ }
+ function change() {
+ const list = Array.from(document.querySelectorAll('[data-countdown]'));
+ const now = new Date().getTime();
+ list.forEach((el) => {
+ const d = new Date(el.getAttribute('data-countdown')).getTime();
+ let diff = d - now;
+ let days = 0;
+ let hours = 0;
+ let minutes = 0;
+ let seconds = 0;
+ if(diff > 0) {
+ days = Math.floor(diff / millisecondsPerDay);
+ diff = diff - (days * millisecondsPerDay)
+ hours = Math.floor(diff/millisecondsPerHour);
+ diff = diff - (hours * millisecondsPerHour)
+ minutes = Math.floor(diff/millisecondsPerMinute);
+ diff = diff - (minutes * millisecondsPerMinute);
+ seconds = Math.floor(diff/millisecondsPerSecond);
+ }
+ try {
+ el.querySelector('.days').innerText = addLeadingZero(Math.max(days, 0));
+
+ } catch (e) {}
+ try {
+ el.querySelector('.hours').innerText = addLeadingZero(Math.max(hours, 0));
+ } catch(e) {}
+ try {
+ el.querySelector('.minutes').innerText = addLeadingZero(Math.max(minutes, 0));
+ } catch (e) {}
+ try {
+ el.querySelector('.seconds').innerText = addLeadingZero(Math.max(seconds, 0));
+ } catch (e) {}
+
+ });
+ setTimeout(()=>requestAnimationFrame(change), millisecondsPerSecond);
+ }
+ requestAnimationFrame(change);
+</script>
+<script>(function(){function c(){var b=a.contentDocument||(a.contentWindow&&a.contentWindow.document);if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'a29495ad8a822719',t:'MTc4NjQyMzQ2Mg=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
+
+</html>
\ No newline at end of file
diff --git a/collectors/mi-homes/fixtures/homes/h7.html b/collectors/mi-homes/fixtures/homes/h7.html
new file mode 100644
index 00000000..47e63034
--- /dev/null
+++ b/collectors/mi-homes/fixtures/homes/h7.html
@@ -0,0 +1,2057 @@
+
+
+<!doctype html>
+<html lang="en">
+
+<head>
+
+ <script>
+ var G = G || {};
+ G.pingForEmployee = true;
+ </script>
+
+
+<meta name="VIcurrentDateTime" content="639220202652329646" />
+<meta name="VirtualFolder" content="/" />
+<script type="text/javascript" src="/layouts/system/VisitorIdentification.js"></script>
+
+
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" name="viewport">
+ <title>12708 Morning Ridge Way Noblesville, IN 46060 - M/I Homes</title>
+ <!-- font -->
+ <link rel="preconnect" href="https://cdn.mihomes.com" crossorigin>
+ <link rel="preconnect" href="https://use.typekit.net" crossorigin>
+
+
+
+<!-- Google Tag Script -->
+
+ <script id="js-GTM-script">
+ window.dataLayer = window.dataLayer || [];
+ window.dataLayer.push({
+ "PageType": "Spec",
+ "MIAccount": "No",
+ "Division": "Indianapolis"
+});
+
+(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=
+'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
+})(window,document,'script','dataLayer','GTM-M2JH3QJ');
+ </script>
+
+
+<!-- End Google Tag Script -->
+ <meta name="referrer" content="always" />
+
+ <link href="https://use.typekit.net/sgt3sit.css" rel="stylesheet" type="text/css" media="print" onload="this.media='all'" id="fonts-loaded" />
+
+<script>
+ try {
+ document.fonts.ready.then(() => {
+ document.body.classList.add('body--fonts-loaded');
+ if(window.setCookiie) {
+ window.setCookie('fonts-cached', 'true', { expires: 7, path: '/' });
+ }
+ });
+ } catch (e) { }
+</script>
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/toolkit.css?ver=202608092245" type="text/css" rel="stylesheet">
+ <!-- conditionally load css for blog -->
+
+ <script>
+ window.environment = "Prod";
+ window.googleApiKey = "REDACTED-THIRD-PARTY-PUBLIC-KEY";
+ </script>
+ <script>
+
+ window.maps =[];
+ window.AssetRootUrl = 'https://cdn.mihomes.com';
+
+ </script>
+
+ <meta name="twitter:card" content="summary" />
+<meta name="twitter:site" content="@mihomes" />
+<meta name="twitter:creator" content="@mihomes">
+
+<meta property="og:site_name" content="https://www.mihomes.com" />
+<meta property="og:type" content="article" />
+<meta property="og:url" content="https://www.mihomes.com/new-homes/indiana/indianapolis-metro/noblesville/silo-ridge/t1778-plan/12708-morning-ridge-way" />
+
+
+ <meta property="og:title" content="12708 Morning Ridge Way" />
+ <meta name="twitter:title" content="12708 Morning Ridge Way" />
+
+
+
+ <meta property="og:description" content="Welcome to 12708 Morning Ridge Way, Noblesville, Indiana — a new construction townhome built by M/I Homes. This 2-story home offers 1,778 square feet of thoughtfully designed living space, featuring 3 bedrooms, 2 full bathrooms, and 1 half bathroom." />
+ <meta name="twitter:description" content="Welcome to 12708 Morning Ridge Way, Noblesville, Indiana — a new construction townhome built by M/I Homes. This 2-story home offers 1,778 square feet of thoughtfully designed living space, featuring 3 bedrooms, 2 full bathrooms, and 1 half bathroom." />
+ <meta name="description" content="Welcome to 12708 Morning Ridge Way, Noblesville, Indiana — a new construction townhome built by M/I Homes. This 2-story home offers 1,778 square feet of thoughtfully designed living space, featuring 3 bedrooms, 2 full bathrooms, and 1 half bathroom." />
+
+
+
+ <link rel="canonical" href="https://www.mihomes.com/new-homes/indiana/indianapolis-metro/noblesville/silo-ridge/t1778-plan/12708-morning-ridge-way">
+ <link defer href="https://dam.mihomes.com/media/4179716/50399.png" rel="icon" type="image/vnd.microsoft.icon" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="57x57"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-57x57.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="114x114"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-114x114.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="72x72"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-72x72.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="144x144"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-144x144.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="60x60"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-60x60.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="120x120"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-120x120.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="76x76"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-76x76.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="152x152"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-152x152.png" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-196x196.png"
+ sizes="196x196" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-96x96.png"
+ sizes="96x96" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-32x32.png"
+ sizes="32x32" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-16x16.png"
+ sizes="16x16" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-128.png"
+ sizes="128x128" />
+ <meta name="application-name" content=" " />
+ <meta name="msapplication-TileColor" content="#FFFFFF" />
+ <meta name="msapplication-TileImage" content="https://cdn.mihomes.com/assets/favicons/images/mstile-144x144.png" />
+ <meta name="msapplication-square70x70logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-70x70.png" />
+ <meta name="msapplication-square150x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-150x150.png" />
+ <meta name="msapplication-wide310x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x150.png" />
+ <meta name="msapplication-square310x310logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x310.png" />
+
+ <script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Organization",
+ "foundingDate": "1976",
+ "duns": "071649743",
+ "founders": [
+ {
+ "@type": "Person",
+ "name": "Melvin Schottenstein"
+ },
+ {
+ "@type": "Person",
+ "name": "Irving Schottenstein"
+ }
+ ],
+ "employees": [
+ {
+ "@type": "Person",
+ "name": "Robert H. Schottenstein",
+ "jobTitle": "Chairman, President, and CEO"
+ }
+ ],
+ "sameAs": [
+ "https://www.facebook.com/MIHomesInc",
+ "https://twitter.com/mihomes",
+ "https://www.instagram.com/mihomes/",
+ "https://www.youtube.com/MIHomesInc",
+ "https://www.houzz.com/pro/mi-homes/m-i-homes",
+ "https://www.pinterest.com/mihomes/"
+ ],
+ "logo": {
+ "@type": "ImageObject",
+ "name": "M/I Homes logo",
+ "contentUrl": "https://dam.mihomes.com/media/39664/50399.png"
+ },
+ "name": "M/I Homes",
+ "description": "M/I Homes, Inc. founded in 1976, M/I Homes is one of nation's leading builders of single family homes. M/I has established an exemplary reputation based on a strong commitment to superior customer service, innovative design, quality construction and premium locations. Listed on the New York Stock Exchange, M/I Homes serves a broad segment of the housing market including first-time, move-up, luxury and empty nester buyers.",
+ "url": "https://www.mihomes.com",
+ "isicv4": "4100"
+}</script>
+ <script defer src="https://www.youtube.com/iframe_api"></script>
+ <script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
+ <script>
+ window.addEventListener('load', () => {
+ const swUrl = "https://cdn.mihomes.com/assets/workers/product-page-service-worker.js"
+ navigator.serviceWorker
+ .register(swUrl, {
+ scope: '/'
+ })
+ .then(registration => {
+ console.log('Service Worker registered with scope:', registration.scope);
+ })
+ .catch(error => {
+ console.error('Error during service worker registration:', error);
+ });
+ });
+ </script>
+</head>
+
+<body class="no-js body--home-template">
+
+
+
+<!-- Google Tag Manager --><!-- Global site tag (gtag.js) - Google Analytics -->
+
+ <noscript>
+ <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M2JH3QJ"
+ height="0" width="0" style="display: none; visibility: hidden">
+ </iframe>
+ </noscript>
+
+<!-- End Google Tag Manager GTMM2JH3QJ -->
+<a class="skip-link" href="#content">Skip To Content</a>
+
+<div class="page-container">
+ <div id="overview" data-subnav-page-link="Overview"></div>
+
+
+<header class="main-header">
+ <div class="main-header-inner">
+<a href="/" class="main-header-logo" > <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png">
+<svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg></a> <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png" />
+ <button class="main-header-open-nav" data-open-nav="" title="Toggle Hamburger Navigation">
+ <svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg>
+ <svg class="icon icon-menu" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#menu"></use>
+</svg>
+ </button>
+ <div class="main-header-nav-items" data-a11y-focus data-nav-tray>
+ <nav class="main-nav">
+ <ul>
+ <li>
+
+ <a href="/" class="main-nav-link mobile-only" >Home</a>
+ </li>
+ <li>
+
+ <a href="/new-homes/indiana/indianapolis-metro" class="main-nav-link find-a-home-link" >Find a Home</a>
+ </li>
+ <li>
+
+ <a href="/about-us/overview" class="main-nav-link " >About</a>
+ </li>
+ <li>
+
+ <a href="/why-mi/overview" class="main-nav-link " >Why M/I</a>
+ </li>
+ <li>
+
+ <a href="/incentives" class="main-nav-link " >Incentives</a>
+ </li>
+ <li>
+
+ <a href="/financing" class="main-nav-link " >Financing</a>
+ </li>
+ <li>
+
+ <a href="/support/warranty" class="main-nav-link " >Warranty</a>
+ </li>
+ <li>
+
+ <a href="/support" class="main-nav-link " >Contact</a>
+ </li>
+ <li>
+
+ <a href="/resources" class="main-nav-link " >Resources</a>
+ </li>
+ </ul>
+ </nav>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ <div class="aux-nav">
+ <ul>
+ <li data-a11y-focus>
+ <a href="/account/register" class="main-nav-link" >Sign Up</a>
+ </li>
+ <li data-a11y-focus>
+ <a href="/account/login" class="main-nav-link" >Log In</a>
+ </li>
+ </ul>
+ </div>
+ </div>
+ <button class="main-header-close-nav" data-close-nav>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ </div>
+</header>
+ <div class="breadcrumbs-bar">
+ <div class="breadcrumbs-wrapper">
+ <nav class="breadcrumbs">
+ <a class="button-plain" href="/">Home</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/indiana/communities">Indiana</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/indiana/indianapolis-metro/communities">Indianapolis Metro</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/indiana/indianapolis-metro/noblesville">Noblesville</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/indiana/indianapolis-metro/noblesville/silo-ridge">Silo Ridge</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/indiana/indianapolis-metro/noblesville/silo-ridge/t1778-plan">T1778</a>
+ <span class="seperator"> • </span>
+ <span>12708 Morning Ridge Way</span>
+ </nav>
+ </div>
+ </div>
+ <script>var bar = document.querySelector('.breadcrumbs-bar'); bar.setAttribute('style', 'height:' + bar.getBoundingClientRect().height + 'px');</script>
+<script type="application/ld+json">
+{
+"@context": "https://schema.org",
+"@type": "BreadcrumbList",
+"itemListElement":[
+{
+"@type":"ListItem",
+"position":1,
+"name":"Indiana",
+"item":"https://www.mihomes.com/new-homes/indiana/communities"
+},
+{
+"@type":"ListItem",
+"position":2,
+"name":"Indianapolis Metro",
+"item":"https://www.mihomes.com/new-homes/indiana/indianapolis-metro/communities"
+},
+{
+"@type":"ListItem",
+"position":3,
+"name":"Noblesville",
+"item":"https://www.mihomes.com/new-homes/indiana/indianapolis-metro/noblesville"
+},
+{
+"@type":"ListItem",
+"position":4,
+"name":"Silo Ridge",
+"item":"https://www.mihomes.com/new-homes/indiana/indianapolis-metro/noblesville/silo-ridge"
+},
+{
+"@type":"ListItem",
+"position":5,
+"name":"T1778",
+"item":"https://www.mihomes.com/new-homes/indiana/indianapolis-metro/noblesville/silo-ridge/t1778-plan"
+},
+{
+"@type":"ListItem",
+"position":6,
+"name":"12708 Morning Ridge Way",
+
+}
+]
+}
+</script>
+
+
+ <div class="page-notice-wrapper" id="page-notification"></div>
+ <main class="main-content" id="content" tabindex="0">
+
+<ul class="product-flags">
+</ul>
+<div class="image-banner">
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <img data-dam-generated alt="Building Type Elevation 3" height="1600" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/2776633/50421.jpeg?timestamp=2025-02-12T23%3A00%3A34.9833882" srcset="https://dam.mihomes.com/media/2776633/50398.jpeg?timestamp=2025-02-12T23%3A00%3A32.2824189 300w, https://dam.mihomes.com/media/2776633/50397.jpeg?timestamp=2025-02-12T23%3A00%3A33.2499443 600w, https://dam.mihomes.com/media/2776633/50423.jpeg?timestamp=2025-02-12T23%3A00%3A34.3195135 900w, https://dam.mihomes.com/media/2776633/50396.jpeg?timestamp=2025-02-12T23%3A00%3A32.0230396 1200w, https://dam.mihomes.com/media/2776633/50421.jpeg?timestamp=2025-02-12T23%3A00%3A34.9833882 1800w, https://dam.mihomes.com/media/2776633/50422.jpeg?timestamp=2025-02-12T23%3A00%3A34.3152532 2400w" title="INDY-Building Type-3-4-Unit-Farmhouse-Unit 3-Silo Ridge-Gen3-elev_DAY" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </a>
+ <div class="image-banner-more">
+ <a href="#product-gallery"
+ data-goto-slide="1"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="1"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Building Type Elevation 3" height="1600" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/2776631/50421.jpeg?timestamp=2025-03-18T22%3A01%3A38.8892209" srcset="https://dam.mihomes.com/media/2776631/50398.jpeg?timestamp=2025-03-18T22%3A01%3A35.6615869 300w, https://dam.mihomes.com/media/2776631/50397.jpeg?timestamp=2025-03-18T22%3A01%3A34.9898460 600w, https://dam.mihomes.com/media/2776631/50423.jpeg?timestamp=2025-03-18T22%3A01%3A41.9511942 900w, https://dam.mihomes.com/media/2776631/50396.jpeg?timestamp=2025-03-18T22%3A01%3A34.3881711 1200w, https://dam.mihomes.com/media/2776631/50421.jpeg?timestamp=2025-03-18T22%3A01%3A38.8892209 1800w, https://dam.mihomes.com/media/2776631/50422.jpeg?timestamp=2025-03-18T22%3A01%3A38.8487257 2400w" title="INDY-Building Type-3-4-Unit-Farmhouse-Unit 2-Silo Ridge-Gen3-elev_DAY" width="2400" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="2"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="2"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Building Type Elevation 3" height="1600" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/2776629/50421.jpeg?timestamp=2025-03-18T22%3A02%3A13.2952443" srcset="https://dam.mihomes.com/media/2776629/50398.jpeg?timestamp=2025-03-18T22%3A02%3A09.9076055 300w, https://dam.mihomes.com/media/2776629/50397.jpeg?timestamp=2025-03-18T22%3A02%3A08.5809349 600w, https://dam.mihomes.com/media/2776629/50423.jpeg?timestamp=2025-03-18T22%3A02%3A13.8202025 900w, https://dam.mihomes.com/media/2776629/50396.jpeg?timestamp=2025-03-18T22%3A02%3A10.1858370 1200w, https://dam.mihomes.com/media/2776629/50421.jpeg?timestamp=2025-03-18T22%3A02%3A13.2952443 1800w, https://dam.mihomes.com/media/2776629/50422.jpeg?timestamp=2025-03-18T22%3A02%3A14.3361522 2400w" title="INDY-Building Type-3-4-Unit-Farmhouse-TH-Silo Ridge-Gen3-elev_DAY" width="2400" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="3"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="3"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5032612/50421.jpeg?timestamp=2026-07-20T16%3A52%3A31.4712806" srcset="https://dam.mihomes.com/media/5032612/50398.jpeg?timestamp=2026-07-20T16%3A52%3A25.8003343 300w, https://dam.mihomes.com/media/5032612/50397.jpeg?timestamp=2026-07-20T16%3A52%3A23.5354344 600w, https://dam.mihomes.com/media/5032612/50423.jpeg?timestamp=2026-07-20T16%3A52%3A33.3319070 900w, https://dam.mihomes.com/media/5032612/50396.jpeg?timestamp=2026-07-20T16%3A52%3A22.0775131 1200w, https://dam.mihomes.com/media/5032612/50421.jpeg?timestamp=2026-07-20T16%3A52%3A31.4712806 1800w, https://dam.mihomes.com/media/5032612/50422.jpeg?timestamp=2026-07-20T16%3A52%3A32.3397193 2400w" title="DefaultImage1" width="1800" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="4"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="4"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5032614/50421.jpeg?timestamp=2026-07-20T16%3A52%3A33.6343244" srcset="https://dam.mihomes.com/media/5032614/50398.jpeg?timestamp=2026-07-20T16%3A52%3A30.2415539 300w, https://dam.mihomes.com/media/5032614/50397.jpeg?timestamp=2026-07-20T16%3A52%3A28.6642668 600w, https://dam.mihomes.com/media/5032614/50423.jpeg?timestamp=2026-07-20T16%3A52%3A33.6743057 900w, https://dam.mihomes.com/media/5032614/50396.jpeg?timestamp=2026-07-20T16%3A52%3A26.8127284 1200w, https://dam.mihomes.com/media/5032614/50421.jpeg?timestamp=2026-07-20T16%3A52%3A33.6343244 1800w, https://dam.mihomes.com/media/5032614/50422.jpeg?timestamp=2026-07-20T16%3A52%3A32.7348581 2400w" title="DefaultImage3" width="1800" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="third event-click image-banner-total gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <span class="button button-transparent">
+ View 5 Photos
+ </span>
+ </a>
+ </div>
+</div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Building Type Elevation 3" height="1600" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/2776633/50421.jpeg?timestamp=2025-02-12T23%3A00%3A34.9833882" srcset="https://dam.mihomes.com/media/2776633/50398.jpeg?timestamp=2025-02-12T23%3A00%3A32.2824189 300w, https://dam.mihomes.com/media/2776633/50397.jpeg?timestamp=2025-02-12T23%3A00%3A33.2499443 600w, https://dam.mihomes.com/media/2776633/50423.jpeg?timestamp=2025-02-12T23%3A00%3A34.3195135 900w, https://dam.mihomes.com/media/2776633/50396.jpeg?timestamp=2025-02-12T23%3A00%3A32.0230396 1200w, https://dam.mihomes.com/media/2776633/50421.jpeg?timestamp=2025-02-12T23%3A00%3A34.9833882 1800w, https://dam.mihomes.com/media/2776633/50422.jpeg?timestamp=2025-02-12T23%3A00%3A34.3152532 2400w" title="INDY-Building Type-3-4-Unit-Farmhouse-Unit 3-Silo Ridge-Gen3-elev_DAY" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Building Type Elevation 3" height="1600" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/2776631/50421.jpeg?timestamp=2025-03-18T22%3A01%3A38.8892209" srcset="https://dam.mihomes.com/media/2776631/50398.jpeg?timestamp=2025-03-18T22%3A01%3A35.6615869 300w, https://dam.mihomes.com/media/2776631/50397.jpeg?timestamp=2025-03-18T22%3A01%3A34.9898460 600w, https://dam.mihomes.com/media/2776631/50423.jpeg?timestamp=2025-03-18T22%3A01%3A41.9511942 900w, https://dam.mihomes.com/media/2776631/50396.jpeg?timestamp=2025-03-18T22%3A01%3A34.3881711 1200w, https://dam.mihomes.com/media/2776631/50421.jpeg?timestamp=2025-03-18T22%3A01%3A38.8892209 1800w, https://dam.mihomes.com/media/2776631/50422.jpeg?timestamp=2025-03-18T22%3A01%3A38.8487257 2400w" title="INDY-Building Type-3-4-Unit-Farmhouse-Unit 2-Silo Ridge-Gen3-elev_DAY" width="2400" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Building Type Elevation 3" height="1600" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/2776629/50421.jpeg?timestamp=2025-03-18T22%3A02%3A13.2952443" srcset="https://dam.mihomes.com/media/2776629/50398.jpeg?timestamp=2025-03-18T22%3A02%3A09.9076055 300w, https://dam.mihomes.com/media/2776629/50397.jpeg?timestamp=2025-03-18T22%3A02%3A08.5809349 600w, https://dam.mihomes.com/media/2776629/50423.jpeg?timestamp=2025-03-18T22%3A02%3A13.8202025 900w, https://dam.mihomes.com/media/2776629/50396.jpeg?timestamp=2025-03-18T22%3A02%3A10.1858370 1200w, https://dam.mihomes.com/media/2776629/50421.jpeg?timestamp=2025-03-18T22%3A02%3A13.2952443 1800w, https://dam.mihomes.com/media/2776629/50422.jpeg?timestamp=2025-03-18T22%3A02%3A14.3361522 2400w" title="INDY-Building Type-3-4-Unit-Farmhouse-TH-Silo Ridge-Gen3-elev_DAY" width="2400" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5032612/50421.jpeg?timestamp=2026-07-20T16%3A52%3A31.4712806" srcset="https://dam.mihomes.com/media/5032612/50398.jpeg?timestamp=2026-07-20T16%3A52%3A25.8003343 300w, https://dam.mihomes.com/media/5032612/50397.jpeg?timestamp=2026-07-20T16%3A52%3A23.5354344 600w, https://dam.mihomes.com/media/5032612/50423.jpeg?timestamp=2026-07-20T16%3A52%3A33.3319070 900w, https://dam.mihomes.com/media/5032612/50396.jpeg?timestamp=2026-07-20T16%3A52%3A22.0775131 1200w, https://dam.mihomes.com/media/5032612/50421.jpeg?timestamp=2026-07-20T16%3A52%3A31.4712806 1800w, https://dam.mihomes.com/media/5032612/50422.jpeg?timestamp=2026-07-20T16%3A52%3A32.3397193 2400w" title="DefaultImage1" width="1800" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5032614/50421.jpeg?timestamp=2026-07-20T16%3A52%3A33.6343244" srcset="https://dam.mihomes.com/media/5032614/50398.jpeg?timestamp=2026-07-20T16%3A52%3A30.2415539 300w, https://dam.mihomes.com/media/5032614/50397.jpeg?timestamp=2026-07-20T16%3A52%3A28.6642668 600w, https://dam.mihomes.com/media/5032614/50423.jpeg?timestamp=2026-07-20T16%3A52%3A33.6743057 900w, https://dam.mihomes.com/media/5032614/50396.jpeg?timestamp=2026-07-20T16%3A52%3A26.8127284 1200w, https://dam.mihomes.com/media/5032614/50421.jpeg?timestamp=2026-07-20T16%3A52%3A33.6343244 1800w, https://dam.mihomes.com/media/5032614/50422.jpeg?timestamp=2026-07-20T16%3A52%3A32.7348581 2400w" title="DefaultImage3" width="1800" class="image-banner-item-more" />
+ </span>
+ </div>
+
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <div class="modal fullscreen-modal gallery-modal gallery-modal--simple" data-modal="" id="simple-gallery-modal" data-track-views="">
+ <div class="gallery-modal__list-container">
+ <div class="gallery-modal__controls">
+ <button class="close-icon" data-modal-close>
+ <svg class="icon icon-close-gallery" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close-gallery"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__list-container-arrows">
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="prev" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="4" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="next" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="0" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__controls gallery-modal__controls__zoom">
+ <button class="close-icon" data-gallery="simple-gallery-modal" data-zoom>
+ <svg class="icon icon-zoom" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#zoom"></use>
+</svg>
+ </button>
+ </div>
+ <ul class="gallery-modal__list no-transition" style="transform: translateX(-200%);">
+
+ <li class="gallery-slide-container" data-slide-id="0" data-image="https://dam.mihomes.com/media/2776633/50398.jpeg?timestamp=2025-02-12T23%3A00%3A32.2824189 300w, https://dam.mihomes.com/media/2776633/50397.jpeg?timestamp=2025-02-12T23%3A00%3A33.2499443 600w, https://dam.mihomes.com/media/2776633/50423.jpeg?timestamp=2025-02-12T23%3A00%3A34.3195135 900w, https://dam.mihomes.com/media/2776633/50396.jpeg?timestamp=2025-02-12T23%3A00%3A32.0230396 1200w, https://dam.mihomes.com/media/2776633/50421.jpeg?timestamp=2025-02-12T23%3A00%3A34.9833882 1800w, https://dam.mihomes.com/media/2776633/50422.jpeg?timestamp=2025-02-12T23%3A00%3A34.3152532 2400w" data-caption="Building Type Elevation 3" data-count="<strong>1</strong> of <strong>5</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Building Type Elevation 3" height="1600" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/2776633/50421.jpeg?timestamp=2025-02-12T23%3A00%3A34.9833882" srcset="https://dam.mihomes.com/media/2776633/50398.jpeg?timestamp=2025-02-12T23%3A00%3A32.2824189 300w, https://dam.mihomes.com/media/2776633/50397.jpeg?timestamp=2025-02-12T23%3A00%3A33.2499443 600w, https://dam.mihomes.com/media/2776633/50423.jpeg?timestamp=2025-02-12T23%3A00%3A34.3195135 900w, https://dam.mihomes.com/media/2776633/50396.jpeg?timestamp=2025-02-12T23%3A00%3A32.0230396 1200w, https://dam.mihomes.com/media/2776633/50421.jpeg?timestamp=2025-02-12T23%3A00%3A34.9833882 1800w, https://dam.mihomes.com/media/2776633/50422.jpeg?timestamp=2025-02-12T23%3A00%3A34.3152532 2400w" title="INDY-Building Type-3-4-Unit-Farmhouse-Unit 3-Silo Ridge-Gen3-elev_DAY" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="1" data-image="https://dam.mihomes.com/media/2776631/50398.jpeg?timestamp=2025-03-18T22%3A01%3A35.6615869 300w, https://dam.mihomes.com/media/2776631/50397.jpeg?timestamp=2025-03-18T22%3A01%3A34.9898460 600w, https://dam.mihomes.com/media/2776631/50423.jpeg?timestamp=2025-03-18T22%3A01%3A41.9511942 900w, https://dam.mihomes.com/media/2776631/50396.jpeg?timestamp=2025-03-18T22%3A01%3A34.3881711 1200w, https://dam.mihomes.com/media/2776631/50421.jpeg?timestamp=2025-03-18T22%3A01%3A38.8892209 1800w, https://dam.mihomes.com/media/2776631/50422.jpeg?timestamp=2025-03-18T22%3A01%3A38.8487257 2400w" data-caption="Building Type Elevation 3" data-count="<strong>2</strong> of <strong>5</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Building Type Elevation 3" height="1600" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/2776631/50421.jpeg?timestamp=2025-03-18T22%3A01%3A38.8892209" srcset="https://dam.mihomes.com/media/2776631/50398.jpeg?timestamp=2025-03-18T22%3A01%3A35.6615869 300w, https://dam.mihomes.com/media/2776631/50397.jpeg?timestamp=2025-03-18T22%3A01%3A34.9898460 600w, https://dam.mihomes.com/media/2776631/50423.jpeg?timestamp=2025-03-18T22%3A01%3A41.9511942 900w, https://dam.mihomes.com/media/2776631/50396.jpeg?timestamp=2025-03-18T22%3A01%3A34.3881711 1200w, https://dam.mihomes.com/media/2776631/50421.jpeg?timestamp=2025-03-18T22%3A01%3A38.8892209 1800w, https://dam.mihomes.com/media/2776631/50422.jpeg?timestamp=2025-03-18T22%3A01%3A38.8487257 2400w" title="INDY-Building Type-3-4-Unit-Farmhouse-Unit 2-Silo Ridge-Gen3-elev_DAY" width="2400" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="2" data-image="https://dam.mihomes.com/media/2776629/50398.jpeg?timestamp=2025-03-18T22%3A02%3A09.9076055 300w, https://dam.mihomes.com/media/2776629/50397.jpeg?timestamp=2025-03-18T22%3A02%3A08.5809349 600w, https://dam.mihomes.com/media/2776629/50423.jpeg?timestamp=2025-03-18T22%3A02%3A13.8202025 900w, https://dam.mihomes.com/media/2776629/50396.jpeg?timestamp=2025-03-18T22%3A02%3A10.1858370 1200w, https://dam.mihomes.com/media/2776629/50421.jpeg?timestamp=2025-03-18T22%3A02%3A13.2952443 1800w, https://dam.mihomes.com/media/2776629/50422.jpeg?timestamp=2025-03-18T22%3A02%3A14.3361522 2400w" data-caption="Building Type Elevation 3" data-count="<strong>3</strong> of <strong>5</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Building Type Elevation 3" height="1600" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/2776629/50421.jpeg?timestamp=2025-03-18T22%3A02%3A13.2952443" srcset="https://dam.mihomes.com/media/2776629/50398.jpeg?timestamp=2025-03-18T22%3A02%3A09.9076055 300w, https://dam.mihomes.com/media/2776629/50397.jpeg?timestamp=2025-03-18T22%3A02%3A08.5809349 600w, https://dam.mihomes.com/media/2776629/50423.jpeg?timestamp=2025-03-18T22%3A02%3A13.8202025 900w, https://dam.mihomes.com/media/2776629/50396.jpeg?timestamp=2025-03-18T22%3A02%3A10.1858370 1200w, https://dam.mihomes.com/media/2776629/50421.jpeg?timestamp=2025-03-18T22%3A02%3A13.2952443 1800w, https://dam.mihomes.com/media/2776629/50422.jpeg?timestamp=2025-03-18T22%3A02%3A14.3361522 2400w" title="INDY-Building Type-3-4-Unit-Farmhouse-TH-Silo Ridge-Gen3-elev_DAY" width="2400" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="3" data-image="https://dam.mihomes.com/media/5032612/50398.jpeg?timestamp=2026-07-20T16%3A52%3A25.8003343 300w, https://dam.mihomes.com/media/5032612/50397.jpeg?timestamp=2026-07-20T16%3A52%3A23.5354344 600w, https://dam.mihomes.com/media/5032612/50423.jpeg?timestamp=2026-07-20T16%3A52%3A33.3319070 900w, https://dam.mihomes.com/media/5032612/50396.jpeg?timestamp=2026-07-20T16%3A52%3A22.0775131 1200w, https://dam.mihomes.com/media/5032612/50421.jpeg?timestamp=2026-07-20T16%3A52%3A31.4712806 1800w, https://dam.mihomes.com/media/5032612/50422.jpeg?timestamp=2026-07-20T16%3A52%3A32.3397193 2400w" data-caption="Lifestyle" data-count="<strong>4</strong> of <strong>5</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5032612/50421.jpeg?timestamp=2026-07-20T16%3A52%3A31.4712806" srcset="https://dam.mihomes.com/media/5032612/50398.jpeg?timestamp=2026-07-20T16%3A52%3A25.8003343 300w, https://dam.mihomes.com/media/5032612/50397.jpeg?timestamp=2026-07-20T16%3A52%3A23.5354344 600w, https://dam.mihomes.com/media/5032612/50423.jpeg?timestamp=2026-07-20T16%3A52%3A33.3319070 900w, https://dam.mihomes.com/media/5032612/50396.jpeg?timestamp=2026-07-20T16%3A52%3A22.0775131 1200w, https://dam.mihomes.com/media/5032612/50421.jpeg?timestamp=2026-07-20T16%3A52%3A31.4712806 1800w, https://dam.mihomes.com/media/5032612/50422.jpeg?timestamp=2026-07-20T16%3A52%3A32.3397193 2400w" title="DefaultImage1" width="1800" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="4" data-image="https://dam.mihomes.com/media/5032614/50398.jpeg?timestamp=2026-07-20T16%3A52%3A30.2415539 300w, https://dam.mihomes.com/media/5032614/50397.jpeg?timestamp=2026-07-20T16%3A52%3A28.6642668 600w, https://dam.mihomes.com/media/5032614/50423.jpeg?timestamp=2026-07-20T16%3A52%3A33.6743057 900w, https://dam.mihomes.com/media/5032614/50396.jpeg?timestamp=2026-07-20T16%3A52%3A26.8127284 1200w, https://dam.mihomes.com/media/5032614/50421.jpeg?timestamp=2026-07-20T16%3A52%3A33.6343244 1800w, https://dam.mihomes.com/media/5032614/50422.jpeg?timestamp=2026-07-20T16%3A52%3A32.7348581 2400w" data-caption="Lifestyle" data-count="<strong>5</strong> of <strong>5</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5032614/50421.jpeg?timestamp=2026-07-20T16%3A52%3A33.6343244" srcset="https://dam.mihomes.com/media/5032614/50398.jpeg?timestamp=2026-07-20T16%3A52%3A30.2415539 300w, https://dam.mihomes.com/media/5032614/50397.jpeg?timestamp=2026-07-20T16%3A52%3A28.6642668 600w, https://dam.mihomes.com/media/5032614/50423.jpeg?timestamp=2026-07-20T16%3A52%3A33.6743057 900w, https://dam.mihomes.com/media/5032614/50396.jpeg?timestamp=2026-07-20T16%3A52%3A26.8127284 1200w, https://dam.mihomes.com/media/5032614/50421.jpeg?timestamp=2026-07-20T16%3A52%3A33.6343244 1800w, https://dam.mihomes.com/media/5032614/50422.jpeg?timestamp=2026-07-20T16%3A52%3A32.7348581 2400w" title="DefaultImage3" width="1800" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ </ul>
+ <div class="gallery-slide__footer">
+ <span class="gallery-slide__title title-caption"></span>
+ <div class="gallery-slide__share-buttons">
+ <span class="count"></span>
+ </div>
+ </div>
+ </div>
+ </div>
+</div><script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Product",
+ "additionalType": "https://schema.org/SingleFamilyResidence",
+ "name": "12708 Morning Ridge Way",
+ "sku": "m47kq2Zbekmo6Vy2RnnkUw",
+ "description": "Welcome to 12708 Morning Ridge Way, Noblesville, Indiana — a new construction townhome built by M/I Homes. This 2-story home offers 1,778 square feet of thoughtfully designed living space, featuring 3 bedrooms, 2 full bathrooms, and 1 half bathroom.",
+ "image": [
+ "https://dam.mihomes.com/media/2776633/50421.jpeg",
+ "https://dam.mihomes.com/media/2776631/50421.jpeg",
+ "https://dam.mihomes.com/media/2776629/50421.jpeg",
+ "https://dam.mihomes.com/media/5032615/50421.jpeg",
+ "https://dam.mihomes.com/media/5032613/50421.jpeg",
+ "https://dam.mihomes.com/media/5032612/50421.jpeg",
+ "https://dam.mihomes.com/media/5032614/50421.jpeg",
+ "https://dam.mihomes.com/media/5032611/50421.jpeg"
+ ],
+ "url": "https://www.mihomes.com/new-homes/indiana/indianapolis-metro/noblesville/silo-ridge/t1778-plan/12708-morning-ridge-way",
+ "brand": {
+ "@type": "Organization",
+ "parentOrganization": {
+ "@type": "Organization",
+ "name": "M/I Homes"
+ },
+ "name": "Silo Ridge"
+ },
+ "address": {
+ "@type": "PostalAddress",
+ "streetAddress": "12708 Morning Ridge Way",
+ "addressLocality": "Noblesville",
+ "addressRegion": "IN",
+ "postalCode": "46060",
+ "addressCountry": "US"
+ },
+ "geo": {
+ "@type": "GeoCoordinates",
+ "latitude": 40.0375162353294,
+ "longitude": -85.9446090483421
+ },
+ "telephone": "+13172076777",
+ "offers": {
+ "@type": "Offer",
+ "url": "/new-homes/indiana/indianapolis-metro/noblesville/silo-ridge/t1778-plan/12708-morning-ridge-way",
+ "price": "334990.00",
+ "priceCurrency": "USD",
+ "priceValidUntil": "08-12-2026",
+ "itemCondition": "https://schema.org/NewCondition",
+ "availability": "https://schema.org/InStock"
+ },
+ "model": "https://www.mihomes.com/new-homes/indiana/indianapolis-metro/noblesville/silo-ridge/t1778-plan",
+ "numberOfBedrooms": {
+ "@type": "Integer",
+ "value": 3
+ },
+ "numberOfFullBathrooms": {
+ "@type": "Integer",
+ "value": 2
+ },
+ "numberOfPartialBathrooms": {
+ "@type": "Integer",
+ "value": 1
+ },
+ "petsAllowed": true,
+ "yearBuilt": "2027",
+ "floorSize": {
+ "@type": "QuantitativeValue",
+ "value": 1778,
+ "unitCode": "FTK"
+ }
+}</script>
+<div class="modals" data-modal-container aria-hidden="true">
+ <div class="modal box" data-modal id="signup-modal">
+ <button class="modal-close" data-modal-close>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+
+ <h2 class="h1 alt">Sign up for an M/I Homes account</h2>
+ <p>Save your favorite home plans and communities, compare home plans and share your dream home with sales associates and real estate agents.</p>
+ <p>
+ Already a member?
+ <a class="button-plain" href="/account/login">Log In to your account »</a>
+ </p>
+ <a class="button button-wide" href="/account/register">
+ <span class="button-text">
+ Sign up with email
+ </span>
+ </a>
+ </div>
+</div>
+
+<div class="product-header" data-yes="true">
+
+ <div class="product-header-row product-header__top">
+
+ <div class="product-header-centered ">
+ <div>
+ <a href="/new-homes/indiana/indianapolis-metro/noblesville/silo-ridge" class="button-plain">
+ Silo Ridge
+ </a>
+
+ <h1 class="header-seo-h2">
+ 12708 Morning Ridge Way, Noblesville, IN 46060
+ <button class="aux-nav-link button-favorite-product gami-favorite-save" data-favorite-type="Home" data-favorite-id="abe48e9b-5b66-497a-a8e9-5cb64679e453" data-favorite-fav-id="abe48e9b-5b66-497a-a8e9-5cb64679e453" data-add-favorite>
+ <svg class="icon icon-favorite" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#favorite"></use>
+</svg>
+ <span class="aux-nav-link-action-text">
+ Favorite
+ </span>
+ </button>
+ </h1>
+ </div>
+
+ <div class="product-header__actions">
+ <a class="button button-mobile-link button-virtual-tour event-click" href="https://www.zillow.com/view-imx/8ca60794-840d-4c4a-aa8f-717b80726e0f?wl=true&setAttribution=mls&initialViewType=pano" target="_blank" data-event-category=VirtualTour
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <span class="button-text">Virtual Tour</span>
+ </a>
+ </div>
+ </div>
+ </div>
+
+ <div class="product-header-row">
+ <div class="product-header-centered tooptip-container">
+ <div>
+ <dl>
+ <dt>Ready date:</dt>
+ <dd>
+ <strong class="current-size">
+ January 2, 2027
+ </strong>
+ </dd>
+ </dl>
+ </div>
+ <div class="product-header-price">
+
+ Price:
+ <span class="home-card-price-old">$335,030</span>
+ <span class="product-header-price-new" content="334990">$334,990</span>
+
+ (
+ <span data-open-modal="mortgage-payment-calculator-modal" data-tooltip="Click estimate to see how we calculate this monthly payment" data-annualinsurance="0" data-taxrate="0" data-interestrate="4.875" data-downpayment="20" data-price="334990" data-mortgage-monthly-payment tabindex="0" class="product-header-price-monthly"></span>
+ )
+
+
+ <span class="product-header-calculator">
+ <a class="button-plain button-plain-icon small button-icon-right gami-mortcalc-view" data-open-modal="mortgage-payment-calculator-modal">
+ <svg class="icon icon-calculator" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#calculator"></use>
+</svg>
+ Estimate Your Monthly Payment
+ </a>
+ </span>
+ </div>
+ </div>
+ </div>
+</div> <a rel="noopener" href="/new-homes/indiana/indianapolis-metro/noblesville/silo-ridge/plat map?lot=230340005152" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=17130 Silo Ridge Way, Noblesville, IN 46060&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=ofmnpzqNf73-Dfx0ycKlFPl1LIA=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+<div class="product-header-centered product-header-centered--contact-card-only">
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Silo Ridge</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://www.google.com/maps/dir/?api=1&destination=40.0375146944176,-85.9446090483421">
+ 17140 Silo Ridge Way<br>Noblesville, IN 46060
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+</div><div class="product-header">
+ <div class="product-header product-header-navigation">
+ <nav class="product-header-subnav" data-subnav="">
+ <div class="product-header-subnav-wrapper">
+ <div class="product-header-subnav-mobile-bottom">
+ <a class="button button-contact-us" href="/support/sales">
+ <span class="button-text">
+ Contact Us
+ </span>
+ </a>
+ </div>
+
+
+ <a class="product-header-subnav-toggle subnav-link" data-subnav-toggle="">
+ <span class="text" data-subnav-text="">Overview</span>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </a>
+
+ <ul class="product-header-subnav-links" data-subnav-links=""></ul>
+ </div>
+ </nav>
+
+ <div class="product-header-subnav-spacer"></div>
+
+ <a href="#overview" class="product-header__back-to-top is-hidden" data-back-to-top>
+ <div class="arrow arrow--up"></div>
+ </a>
+ </div>
+</div><section class="content-inner-with-sidebar content-inner-with-sidebar-right">
+
+
+ <div class="content-inner-content">
+
+
+
+
+
+<section class="plan-specification">
+ <h2 class="plan-specification__header">
+ About 12708 Morning Ridge Way
+ </h2>
+ <a class="plan-specification__get-directions button-plain button-plain-alt negative-top gami-directions-exit" target="_blank" href="https://www.google.com/maps/search/?api=1&query=40.0375162353294,-85.9446090483421">Get Directions</a>
+ <ul class="plan-specification__list">
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sq-ft" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sq-ft"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">square feet</span>
+ <strong class="plan-specification-item__value">
+ 1,778
+ </strong>
+ </div>
+ </li>
+ <li class="stories-specification">
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-homes" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#homes"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">stories</span>
+ <strong class="plan-specification-item__value">
+ 2
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-bed" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#bed"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">bedrooms</span>
+ <strong class="plan-specification-item__value">
+ 3
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-shower" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#shower"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">full bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 2
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sink" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sink"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">half bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 1
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-car" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#car"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">garages</span>
+ <strong class="plan-specification-item__value">
+ 2
+ <span data-tooltip="The most common approach to a home's garage, the front load garage incorporates the garage entry into a home's front elevation.">(Front Load)</span>
+
+ </strong>
+ </div>
+ </li>
+ </ul>
+</section>
+
+<div class="overview-table">
+ <div class="overview-table-table">
+ <dl>
+ <dt>City</dt>
+ <dd>Noblesville, IN</dd>
+
+ <dt>Owner's Suite</dt>
+ <dd>Second Floor</dd>
+
+ <dt>County</dt>
+ <dd>Hamilton</dd>
+
+ <dt>Home Type</dt>
+ <dd>Townhome</dd>
+
+ <dt>School District</dt>
+ <dd>Hamilton Southeastern Schools</dd>
+
+ <dt>Foundation Type</dt>
+ <dd>Slab</dd>
+
+ <dt>Home Plan</dt>
+ <dd>T1778</dd>
+
+
+ <dt>Homesite</dt>
+ <dd>5152</dd>
+
+ <dt> Base Plan Width & Depth</dt>
+ <dd>24 x 54 </dd>
+ </dl>
+ </div>
+</div>
+<article class="faq__question-item faq__question-item--mobile-only">
+ <button class="faq__question" data-expander="" aria-controls="community-series-teaser" aria-expanded="false">
+ <span class="faq__icon-wrapper">
+ <span class="faq__icon gami-directions-view">
+ <svg class="icon icon-arrow" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#arrow"></use>
+</svg>
+ </span>
+ </span>
+ Part of the Townhome Series
+ <span class="show-hide-text hidden-text">Hide</span>
+ </button>
+ <div class="faq__answer preview-box preview-box--series-tout" id="community-series-teaser" role="region" tabindex="-1">
+ <a class="preview-box__image preview-box__preview one-fourth" href="/new-homes/indiana/indianapolis-metro/noblesville/silo-ridge/series/townhome-series">
+ <img data-dam-generated alt="Preview image" height="1600" loading="lazy" sizes="(min-width: 48rem) 193px, 100vw" src="https://dam.mihomes.com/media/2776629/50397.jpeg?timestamp=2025-03-18T22%3A02%3A08.5809349" srcset="https://dam.mihomes.com/media/2776629/50398.jpeg?timestamp=2025-03-18T22%3A02%3A09.9076055 300w, https://dam.mihomes.com/media/2776629/50397.jpeg?timestamp=2025-03-18T22%3A02%3A08.5809349 600w, https://dam.mihomes.com/media/2776629/50423.jpeg?timestamp=2025-03-18T22%3A02%3A13.8202025 900w, https://dam.mihomes.com/media/2776629/50396.jpeg?timestamp=2025-03-18T22%3A02%3A10.1858370 1200w, https://dam.mihomes.com/media/2776629/50421.jpeg?timestamp=2025-03-18T22%3A02%3A13.2952443 1800w, https://dam.mihomes.com/media/2776629/50422.jpeg?timestamp=2025-03-18T22%3A02%3A14.3361522 2400w" title="INDY-Building Type-3-4-Unit-Farmhouse-TH-Silo Ridge-Gen3-elev_DAY" width="2400" class="cover-image" />
+ </a>
+ <div class="preview-box__content ">
+ <div class="preview-box__text__series-teaser">
+ <h3>Part of the Townhome Series</h3>
+ <p>
+ Discover modern, low-maintenance townhome living at Silo Ridge—where stylish design, spacious layouts, and a prime Noblesville location make homeownership effortless.
+ </p>
+ </div>
+ <p>
+ <a class="button" href="/new-homes/indiana/indianapolis-metro/noblesville/silo-ridge/series/townhome-series">Learn More</a>
+ </p>
+ </div>
+ </div>
+</article> <h2>
+ New 3-Bedroom Townhome for Sale in Noblesville, Indiana
+ </h2>
+ <div class="content-inner-content__capped-mobile-content">
+ <html>
+ <head>
+ </head>
+ <body>
+ <p>Welcome to 12708 Morning Ridge Way, Noblesville, Indiana — a new construction townhome built by M/I Homes. This 2-story home offers 1,778 square feet of thoughtfully designed living space, featuring 3 bedrooms, 2 full bathrooms, and 1 half bathroom.</p>
+ <p>Step inside to discover an open-concept living space that creates a seamless flow between gathering areas, ideal for everyday living and entertaining. The quality of design is evident throughout, with well-crafted finishes and a functional floorplan that maximizes every square foot of the home.</p>
+ <p><strong>Key Features:</strong></p>
+ <ul>
+ <li>New construction townhome by M/I Homes</li>
+ <li>3 bedrooms and 2.5 bathrooms</li>
+ <li>1,778 square feet of living space</li>
+ <li>Open-concept living space with a well-designed floorplan</li>
+ <li>Patio</li>
+ </ul>
+ <p>The owner's bedroom includes a private en-suite bathroom, providing a comfortable retreat. Additional bedrooms offer generous proportions, making this home well-suited for a variety of lifestyles. The half bathroom on the main level adds convenience for daily routines and when hosting guests.</p>
+ <p>This home is situated in a welcoming neighborhood with proximity to parks, giving residents easy access to outdoor recreation and green spaces. The surrounding area provides a pleasant setting with well-maintained surroundings and a strong sense of neighborhood appeal. This Quick Move-In home delivers quality design, a functional layout, and an exceptional location.</p>
+ <script>(function(){function c(){var b=a.contentDocument||(a.contentWindow&&a.contentWindow.document);if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'a29495c0a931453c',t:'MTc4NjQyMzQ2NQ=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
+</html>
+
+ <!-- and done -->
+ <h3>
+ About the Community
+ </h3>
+ <p>
+ Silo Ridge in Noblesville offers new single-family homes, ranch villas, and townhomes in a desirable Hamilton County location. Set near SR‑38 and Boden Road, the community features planned streetscapes, wooded areas, ponds, and easy access to local dining, parks, shopping, and major roadways.
+
+Homes are designed with open, modern layouts across a variety of floorplans, giving you options whether you're seeking low‑maintenance living, a first home, or more space for a growing household. Within the neighborhood, residents enjoy a playground, swimming pool with a pool house, and miles of trails that connect to the Stoney Creek Nature Trail.
+
+Silo Ridge is part of the Hamilton Southeastern School District, known for its strong academic reputation. With a blend of convenience, natural surroundings, and thoughtful home designs, this community offers a comfortable and connected lifestyle in one of the area’s most sought‑after regions.
+ <br />
+ <a class="button-plain button-plain-alt" href="/new-homes/indiana/indianapolis-metro/noblesville/silo-ridge">Learn more about this community »</a>
+ </p>
+ </div>
+ <button class="faq__question color-aqua" aria-expanded="false" data-read-more="">
+ <span class="faq__icon-wrapper">
+ <span class="faq__icon">
+ <svg class="icon icon-arrow" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#arrow"></use>
+</svg>
+ </span>
+ </span>
+ <span data-read-more-collapsed="">Read More</span>
+ <span data-read-more-expanded="">Show Less</span>
+ <span class="show-hide-text hidden-text">Show</span>
+ </button>
+ <div class="matterport-wrapper">
+ <iframe loading="lazy" class="box-full" width="803" height="480" src="https://my.matterport.com/show/?m=dwoPVTbxSge" frameborder="0" allowfullscreen allow="vr" style="align-self: center" data-subnav-page-link="3D Tour" id="3dTour"></iframe>
+ </div>
+
+
+
+ </div>
+
+ <div class="content-sidebar-right">
+ <a rel="noopener" href="/new-homes/indiana/indianapolis-metro/noblesville/silo-ridge/plat map?lot=230340005152" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=17130 Silo Ridge Way, Noblesville, IN 46060&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=ofmnpzqNf73-Dfx0ycKlFPl1LIA=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Silo Ridge</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://www.google.com/maps/dir/?api=1&destination=40.0375146944176,-85.9446090483421">
+ 17140 Silo Ridge Way<br>Noblesville, IN 46060
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+
+
+ <figure class="lead-form lead-form-sidebar lead-form-sidebar--compact lead-form-sidebar-signup">
+ <div class="lead-form-container">
+ <div id="lead-sidebar-header" class="lead-form-sidebar-header lead-form-sidebar-header-image">
+ <div id="isa-information" data-sidebar-section="1">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="ISM Headshot" height="600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/5127197/50421.jpeg?timestamp=2026-08-07T13%3A31%3A19.7999186" srcset="https://dam.mihomes.com/media/5127197/50398.jpeg?timestamp=2026-08-07T13%3A31%3A17.7133771 300w, https://dam.mihomes.com/media/5127197/50397.jpeg?timestamp=2026-08-07T13%3A31%3A17.0014611 600w, https://dam.mihomes.com/media/5127197/50423.jpeg?timestamp=2026-08-07T13%3A31%3A19.2430528 900w, https://dam.mihomes.com/media/5127197/50396.jpeg?timestamp=2026-08-07T13%3A31%3A16.4090390 1200w, https://dam.mihomes.com/media/5127197/50421.jpeg?timestamp=2026-08-07T13%3A31%3A19.7999186 1800w, https://dam.mihomes.com/media/5127197/50422.jpeg?timestamp=2026-08-07T13%3A31%3A25.0730492 2400w" title="INDY-Headshot-AmandaMilan" width="600" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="ISM Headshot" height="600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/5127198/50421.jpeg?timestamp=2026-08-07T13%3A31%3A25.1564763" srcset="https://dam.mihomes.com/media/5127198/50398.jpeg?timestamp=2026-08-07T13%3A31%3A21.4255359 300w, https://dam.mihomes.com/media/5127198/50397.jpeg?timestamp=2026-08-07T13%3A31%3A22.6222840 600w, https://dam.mihomes.com/media/5127198/50423.jpeg?timestamp=2026-08-07T13%3A31%3A21.4884471 900w, https://dam.mihomes.com/media/5127198/50396.jpeg?timestamp=2026-08-07T13%3A31%3A20.2219998 1200w, https://dam.mihomes.com/media/5127198/50421.jpeg?timestamp=2026-08-07T13%3A31%3A25.1564763 1800w, https://dam.mihomes.com/media/5127198/50422.jpeg?timestamp=2026-08-07T13%3A31%3A22.0230681 2400w" title="INDY-Headshot-CharlieHewald" width="600" class="cover-image" />
+ </div>
+ </div>
+ <h3 class="">Have questions for us?</h3>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=3172076777'>(317) 207-6777</a>
+ </p>
+ </div>
+ <div id="form-agent-header" class="lead-form-sidebar-section right" style="display: none;">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+
+ </div>
+ <div class="lead-form-sidebar-form" data-lead-form-sidebar="">
+ <div class="lead-form-sidebar-errors"></div>
+<form action="/api/LeadGenFormSidebar/LeadGenFormSidebar" data-gami-event="gami-form-question" data-parsley-validate="" data-sidebar-hidden-required="" data-sidebar-nav-check="visit_sidebar" method="post" name="basic_sidebar" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="0aba1b8e-0f7a-45f6-820b-ddaa27c47866" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Inventory" /><input id="PostType" name="PostType" type="hidden" value="sidebar" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:25 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="ItemId" name="ItemId" type="hidden" value="abe48e9b-5b66-497a-a8e9-5cb64679e453" /><input id="HomeType" name="HomeType" type="hidden" value="Townhome" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 443px;">
+ <div class="align-left center lead-form-sidebar-section" data-cta="Request Information" data-sidebar-section="0">
+ <div>
+
+ <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="">
+ </div>
+
+ <div class="form-field no-label-errors" style="margin-top: 1px">
+ <label for="fullname_sidebar"></label>
+ <input type="text"
+ name="FormFullName"
+ id="fullname_sidebar"
+ placeholder="Full Name"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required." data-parsley-trigger="blur"
+ maxlength="60"
+ data-parsley-filter-emoji=""
+ >
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormEmailAddress"
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="phone_sidebar">Phone Number</label>
+ <input class="gami-tel" type="tel"
+ autocomplete="tel-national"
+ name="FormPhoneNumber"
+ id="phone_sidebar"
+ placeholder="Phone Number" +
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ value=""
+
+ data-parsley-phone-number="" data-parsley-trigger="blur"
+ maxlength="25">
+ </div>
+
+ <div class="form-field no-label-errors">
+ <label for="comments_sidebar">Questions or Comments</label>
+ <textarea rows="5"
+ name="FormComments"
+ id="comments_sidebar"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000">Please send me information about 12708 Morning Ridge Way</textarea>
+ </div>
+ </div>
+ <div>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox hide" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input data-parsley-multiple="visit_sidebar" name="visit_sidebar" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to plan a visit</span>
+ </label>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormEmailOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSAssociateCommunicationsOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" data-sidebar-section="1" tabindex="-1">
+ <div>
+ <h4>Plan a visit</h4>
+ <p>Select your preferred day and time and we’ll help set up the perfect visit.</p>
+ </div>
+ <div>
+ <div class="select no-label-errors">
+ <label for="tripday_sidebar"> </label>
+ <div class="select-wrap">
+<select data-nested-select="#select-triptime-block-sidebar" data-parsley-group="visit_sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+
+ <div class="select no-label-errors">
+ <label for="triptime_sidebar"> </label>
+ <div class="select-wrap">
+<select data-parsley-group="visit_sidebar" id="triptime_sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" dta-cta="Continue" data-sidebar-section="2" data-agent-section tabindex="-1">
+
+ <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0">
+ <div class="align-left center lead-form-sidebar-section" data-sidebar-section="0">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button form-submit">
+ <span class="button-text">Request Information</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-left lead-form-sidebar-section right" data-sidebar-section="1">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit" disabled tabindex="-1">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="2">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button" disabled tabindex="-1">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit" disabled tabindex="-1">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+ </div>
+ </div>
+</form> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 25px;">
+ <div class="align-center center lead-form-sidebar-section" data-sidebar-section="0">
+ <button class="button-plain small" data-open-modal="privacy-policy-modal" href="javascript:void()">Privacy Policy</button>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="1">
+ <button class="button-plain small" data-sidebar-nav="0" tabindex="-1">« Go Back</button>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <!-- THANK YOU MESSAGE -->
+ <div class="lead-form-container-success">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-success lead-form-sidebar-header-image">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" data-parsley-validate="" method="POST" name="thanksyou_sidebar" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+ <div>
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+ <div class="form-field form-field-password">
+ <label for="password"> </label>
+ <input data-parsley-required-message="Password is required." data-parsley-valid-password="" id="password" minlength="8" name="password" placeholder="Password" required="" type="password" data-parsley-filter-emoji="" data-parsley-trigger="blur">
+ <button class="password-input-change" data-input-change="" type="button">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)" tabindex="0">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">
+ Create Account
+ </span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ <h3 class="h3 preview-box__header">
+ Incentives
+ </h3>
+ <a class="incentive incentive__sidebar--simple" href="/new-homes/indiana/indianapolis-metro/incentives/72-hour-sale">
+ <div class="incentive-background">
+ <img data-dam-generated alt="RTG" height="1200" loading="eager" sizes="(min-width: 64rem) 328px, 100vw" src="https://dam.mihomes.com/media/2008777/50421.jpeg" srcset="https://dam.mihomes.com/media/2008777/50398.jpeg?timestamp=2024-06-18T16%3A08%3A46.2704358 300w, https://dam.mihomes.com/media/2008777/50397.jpeg?timestamp=2024-06-18T16%3A08%3A48.5654136 600w, https://dam.mihomes.com/media/2008777/50423.jpeg?timestamp=2024-06-18T16%3A08%3A52.2868899 900w, https://dam.mihomes.com/media/2008777/50396.jpeg?timestamp=2024-06-18T16%3A09%3A05.0178444 1200w, https://dam.mihomes.com/media/2008777/50421.jpeg?timestamp=2024-06-18T16%3A08%3A44.0778343 1800w, https://dam.mihomes.com/media/2008777/50422.jpeg?timestamp=2024-06-18T16%3A08%3A45.7813423 2400w" title="72HourSale-CardImage" width="1800" class="cover-image cover-image--abs" />
+ <div class="incentive__badge">
+<img data-dam-generated alt="72 Hour Sale - Badge" height="250" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/883748/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667" srcset="https://dam.mihomes.com/media/883748/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/883748/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/883748/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/883748/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/883748/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/883748/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="72HourSale-BadgeImage" width="250" class="incentive__badge-background" maxwidth="2400" /> </div>
+ </div>
+ <div class="incentive-inner">
+ <span class="incentive-title--wrapper">
+ <p class="incentive-title">72-Hour Savings Event | August 15th - August 17th</p>
+ </span>
+ <p class="incentive-sub-headline">Don’t miss out: our 72-Hour Savings Event is Saturday, August 15th from 11:00am-6:00pm, Sunday, August 16th from 12:00pm-6:00pm, and Monday, August 17th from 11:00am-6:00pm only.</p>
+ <p class="incentive-button--wrapper">
+ <span class="button button-small" href="/new-homes/indiana/indianapolis-metro/incentives/72-hour-sale">
+ <span class="button-text uppercase">View Details</span>
+ </span>
+ </p>
+ </div>
+ </a>
+
+</div>
+</section>
+
+ <div id="design" class="box box-full box-no-padding-bottom" data-subnav-page-link="Design Options">
+ <div class="content-inner-centered">
+ <h2>Add the perfect finishing touch</h2>
+ <p class="subtitle content-inner-centered-narrow negative-top">
+ Put your personal touch on these Quick Move-In Homes with some selections from our Design Studio.
+ </p>
+ <div class="button-tooltip-wrapper">
+ <a class="button button-tooltip event-click" href="https://edc.envisionoptions.com/browser.aspx?NHTNumber=MIHOMES&Loc1=100&Lev1=CORP&Loc2=230&Lev2=DIV&HomeNumber=143534&Page=Confirmselection&utm_source=mihomes.com&utm_campaign=&utm_content=silo-ridge-T1778-12708-Morning-Ridge-Way&utm_term=" target="_blank" data-event-category=OptionsGallery
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ See This Home's Options
+ </a>
+
+
+ </div>
+ <a class="button" href="/design/design-studio">
+ <span class="button-text">
+ Visit a Design Studio
+ </span>
+ </a>
+ </div>
+ </div>
+ <div class="box box-full box-no-padding-top">
+ <div class="contained-width">
+ <hr class="hr-even">
+
+ <h4>Incentives</h4>
+ <article class="preview-box ">
+ <a class="preview-box-link" href="/new-homes/indiana/indianapolis-metro/incentives/72-hour-sale">
+ <div class="preview-box__image preview-box__preview one-third">
+ <img data-dam-generated alt="RTG" height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/2008777/50421.jpeg" srcset="https://dam.mihomes.com/media/2008777/50398.jpeg?timestamp=2024-06-18T16%3A08%3A46.2704358 300w, https://dam.mihomes.com/media/2008777/50397.jpeg?timestamp=2024-06-18T16%3A08%3A48.5654136 600w, https://dam.mihomes.com/media/2008777/50423.jpeg?timestamp=2024-06-18T16%3A08%3A52.2868899 900w" title="72HourSale-CardImage" width="1800" class="cover-image" maxwidth="900" />
+ </div>
+ <div class="preview-box__content">
+ <h3 class="h3 preview-box__header">
+ 72-Hour Savings Event | August 15th - August 17th
+
+
+ </h3>
+ <p class="preview-box__text">Don’t miss out: our 72-Hour Savings Event is Saturday, August 15th from 11:00am-6:00pm, Sunday, August 16th from 12:00pm-6:00pm, and Monday, August 17th from 11:00am-6:00pm only.</p>
+ <p>
+ <span class="button-plain button-plain-alt" href="/new-homes/indiana/indianapolis-metro/incentives/72-hour-sale">View Details »</span>
+ </p>
+ </div>
+ </a>
+ </article>
+ <article class="preview-box ">
+ <a class="preview-box-link" href="/new-homes/indiana/indianapolis-metro/incentives/experience-the-difference">
+ <div class="preview-box__image preview-box__preview one-third">
+ <img data-dam-generated alt="Lower Payments" height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3398695/50421.jpeg" srcset="https://dam.mihomes.com/media/3398695/50398.jpeg?timestamp=2025-07-15T17%3A06%3A54.6851490 300w, https://dam.mihomes.com/media/3398695/50397.jpeg?timestamp=2025-07-15T17%3A06%3A53.2195117 600w, https://dam.mihomes.com/media/3398695/50423.jpeg?timestamp=2025-07-15T17%3A07%3A01.3602581 900w" title="LowerPayments-Header-1800x430" width="1800" class="cover-image" maxwidth="900" />
+ </div>
+ <div class="preview-box__content">
+ <h3 class="h3 preview-box__header">
+ Move-In Now | Pay Less Tomorrow With Special Financing
+
+
+ </h3>
+ <p class="preview-box__text">Increase your home-buying power and decrease your rate with 1/0 buydown, featuring first-year rates as low as 3.875% Rate* / 5.6362% APR* on a 30-Year Fixed Rate FHA* and 4.50% Rate** / 5.7584% APR** on a 30-Year Fixed Rate Conventional Loan** , offered through M/I Financial, LLC, through new homes that can close by October 30, 2026.</p>
+ <p>
+ <span class="button-plain button-plain-alt" href="/new-homes/indiana/indianapolis-metro/incentives/experience-the-difference">View Details »</span>
+ </p>
+ </div>
+ </a>
+ </article>
+ </div>
+ </div>
+
+ <div id="floor" class="box box-full box-last event-inview" data-subnav-page-link="FloorPlan" data-event-category=Floorplan
+ data-event-action=scroll
+ data-event-label=view
+>
+ <div class="content-inner-centered content-inner-centered--mobile">
+ <h2>Floorplan Options for Your New Home</h2>
+ <p class="content-inner-centered-narrow negative-top subtitle">The T1778 accommodates a variety of household living arrangements with its highly desired flexibility and modern design. Explore the many possibilities in the popular T1778 plan.</p>
+ <a target="_blank" class="button floor-plan-options__button event-click" href="https://urldefense.com/v3/__https:/rifp.ml3ds-icon.com/*/floorplan/574505__;Iw!!MfVkewsW!BhL8hxN8tmxxMbeVSEB-Cr3hzMGPOpMee7L1sfflTUjDCD0MMS6KJ7XEYn0OVtiDHaH4ZC79OdH0RleAVoMq$" data-event-category=Floorplan
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <svg class="icon icon-fullscreen" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#fullscreen"></use>
+</svg>
+ <span class="button-text">
+ Show Floorplan
+ </span>
+ </a>
+ </div>
+ <section class="floor-plan-options">
+ <iframe loading="lazy" id="floor-plan" data-fullsize class="floor-plan-options__iframe" data-src="https://urldefense.com/v3/__https:/rifp.ml3ds-icon.com/*/floorplan/574505__;Iw!!MfVkewsW!BhL8hxN8tmxxMbeVSEB-Cr3hzMGPOpMee7L1sfflTUjDCD0MMS6KJ7XEYn0OVtiDHaH4ZC79OdH0RleAVoMq$" scrolling="no" style="overflow: hidden">
+ <p>Your browser does not support iframes.</p>
+ </iframe>
+ </section>
+ </div>
+
+ <div class="box box-full box-no-padding-top-bottom " id="">
+ <div class="content-inner-centered">
+ <div class="leadgenTitleBlock">
+ <h2 class="h2">Ready to plan a visit? We can help</h2>
+ <p class="subtitle marginless">Send us your preferred time to stop by and a sales representative will take care of the rest</p>
+ </div>
+ <section class="lead-form">
+ <div id="lead-form-block-user-info" class="lead-form-container lead-form-block" data-lead-form-sidebar="">
+ <aside class="lead-form-block__details" style="">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="ISM Headshot" height="600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/5127197/50421.jpeg?timestamp=2026-08-07T13%3A31%3A19.7999186" srcset="https://dam.mihomes.com/media/5127197/50398.jpeg?timestamp=2026-08-07T13%3A31%3A17.7133771 300w, https://dam.mihomes.com/media/5127197/50397.jpeg?timestamp=2026-08-07T13%3A31%3A17.0014611 600w, https://dam.mihomes.com/media/5127197/50423.jpeg?timestamp=2026-08-07T13%3A31%3A19.2430528 900w, https://dam.mihomes.com/media/5127197/50396.jpeg?timestamp=2026-08-07T13%3A31%3A16.4090390 1200w, https://dam.mihomes.com/media/5127197/50421.jpeg?timestamp=2026-08-07T13%3A31%3A19.7999186 1800w, https://dam.mihomes.com/media/5127197/50422.jpeg?timestamp=2026-08-07T13%3A31%3A25.0730492 2400w" title="INDY-Headshot-AmandaMilan" width="600" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="ISM Headshot" height="600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/5127198/50421.jpeg?timestamp=2026-08-07T13%3A31%3A25.1564763" srcset="https://dam.mihomes.com/media/5127198/50398.jpeg?timestamp=2026-08-07T13%3A31%3A21.4255359 300w, https://dam.mihomes.com/media/5127198/50397.jpeg?timestamp=2026-08-07T13%3A31%3A22.6222840 600w, https://dam.mihomes.com/media/5127198/50423.jpeg?timestamp=2026-08-07T13%3A31%3A21.4884471 900w, https://dam.mihomes.com/media/5127198/50396.jpeg?timestamp=2026-08-07T13%3A31%3A20.2219998 1200w, https://dam.mihomes.com/media/5127198/50421.jpeg?timestamp=2026-08-07T13%3A31%3A25.1564763 1800w, https://dam.mihomes.com/media/5127198/50422.jpeg?timestamp=2026-08-07T13%3A31%3A22.0230681 2400w" title="INDY-Headshot-CharlieHewald" width="600" class="cover-image" />
+ </div>
+ </div>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=3172076777'>(317) 207-6777</a>
+ </p>
+ </aside>
+<form action="/api/LeadGenFormBlock/LeadGenFormBlock" class="lead-form-block__form" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="0aba1b8e-0f7a-45f6-820b-ddaa27c47866" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Model" /><input id="PostType" name="PostType" type="hidden" value="block" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:25 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="FormAgentEmailAddress" name="FormAgentEmailAddress" type="hidden" value="" /><input id="ItemId" name="ItemId" type="hidden" value="abe48e9b-5b66-497a-a8e9-5cb64679e453" /><input id="HomeType" name="HomeType" type="hidden" value="Townhome" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="" hidden>
+ </div>
+ <div class="form-field">
+ <label for="fullname">Full Name </label>
+ <input type="text"
+ name="FormFullName"
+ placeholder="John Doe"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required."
+ maxlength="60"
+
+ data-parsley-filter-emoji=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="emailaddress">Email Address </label>
+ <input type="email"
+ name="FormEmailAddress" ,
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field">
+ <label for="phone">Phone Number </label>
+ <input class="gami-tel" type="tel"
+ name="FormPhoneNumber"
+ id="phone"
+ placeholder="5555555555"
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ maxlength="25"
+ value=""
+
+ data-parsley-phone-number=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="input">Questions or Comments </label>
+ <textarea rows="5"
+ name="FormComments"
+ id="input"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000"></textarea>
+ </div>
+ <div class="lead-form-block__contacts">
+ <div class="form-field select" {="">
+ <label for="tripday_block">Preferred Day <em> (Optional)</em></label>
+ <div class="select-wrap">
+ <div class="select-wrap">
+<select date-nested-select="#select-triptime-block-sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+
+ <div class="form-field select" {="">
+ <label for="triptime_block">Preferred Time <em> (Optional)</em></label>
+ <div class="select-wrap">
+
+<select id="select-triptime-block-sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-block__checkboxes-container">
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormEmailOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSAssociateCommunicationsOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ <div class="lead-form-block__submit">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+
+ <span class="align-center">
+ <a class="button-plain small" data-open-modal="privacy-policy-modal">Privacy Policy</a>
+ </span>
+ </div>
+</form> </div>
+ <div id="lead-form-block-agent-form" class="lead-form-container lead-form-block" data-lead-form-sidebar="" data-agent-section style="display: none;">
+ <figure class="lead-form lead-form-sidebar">
+ <div id="form-agent-header" class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+<form action="/new-homes/indiana/indianapolis-metro/noblesville/silo-ridge/t1778-plan/12708-morning-ridge-way" class="lead-form-sidebar-section" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""> <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ id="block-agent-email"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+</form> </div>
+ </figure>
+ </div>
+
+
+
+ <div class="lead-form-container-success">
+ <figure class="lead-form lead-form-sidebar">
+ <div class="lead-form-container-success" style="display: block">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" method="POST" name="thanksyou_sidebar" data-parsley-validate="" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+
+ <div>
+ <div class="form-field form-field-password">
+ <label for="password"></label>
+ <input type="password"
+ name="password"
+ id="password"
+ placeholder="Password"
+ data-parsley-valid-password=""
+ minlength="8"
+ required=""
+ data-parsley-required-message="Password is required."
+ data-parsley-trigger="blur">
+
+ <button type="button" class="password-input-change" data-input-change="">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span tabindex="0"
+ data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">Create Account</span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ </div>
+ </section>
+ </div>
+ </div>
+
+ <div class="box box-centered box-full box-transparent" id="neraby">
+ <div class="box-full-inner">
+ <h3 class="h2">
+ Other Quick Move-In Homes
+ </h3>
+
+ <div class="featured-grid">
+ <div class="row">
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/indiana/indianapolis-metro/noblesville/silo-ridge/t1778-plan/12551-cattle-ridge-drive">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Building Type Elevation 3" height="1600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/2776633/50421.jpeg?timestamp=2025-02-12T23%3A00%3A34.9833882" srcset="https://dam.mihomes.com/media/2776633/50398.jpeg?timestamp=2025-02-12T23%3A00%3A32.2824189 300w, https://dam.mihomes.com/media/2776633/50397.jpeg?timestamp=2025-02-12T23%3A00%3A33.2499443 600w, https://dam.mihomes.com/media/2776633/50423.jpeg?timestamp=2025-02-12T23%3A00%3A34.3195135 900w, https://dam.mihomes.com/media/2776633/50396.jpeg?timestamp=2025-02-12T23%3A00%3A32.0230396 1200w, https://dam.mihomes.com/media/2776633/50421.jpeg?timestamp=2025-02-12T23%3A00%3A34.9833882 1800w, https://dam.mihomes.com/media/2776633/50422.jpeg?timestamp=2025-02-12T23%3A00%3A34.3152532 2400w" title="INDY-Building Type-3-4-Unit-Farmhouse-Unit 3-Silo Ridge-Gen3-elev_DAY" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">T1778</p>
+ <p class="featured-grid-middle">12551 Cattle Ridge Drive, Noblesville, Indiana</p>
+ <p class="featured-grid-subtitle">Listed at $333,990</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/indiana/indianapolis-metro/noblesville/silo-ridge/t1778-plan/12665-morning-ridge-way">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Building Type Elevation 3" height="1600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/2776633/50421.jpeg?timestamp=2025-02-12T23%3A00%3A34.9833882" srcset="https://dam.mihomes.com/media/2776633/50398.jpeg?timestamp=2025-02-12T23%3A00%3A32.2824189 300w, https://dam.mihomes.com/media/2776633/50397.jpeg?timestamp=2025-02-12T23%3A00%3A33.2499443 600w, https://dam.mihomes.com/media/2776633/50423.jpeg?timestamp=2025-02-12T23%3A00%3A34.3195135 900w, https://dam.mihomes.com/media/2776633/50396.jpeg?timestamp=2025-02-12T23%3A00%3A32.0230396 1200w, https://dam.mihomes.com/media/2776633/50421.jpeg?timestamp=2025-02-12T23%3A00%3A34.9833882 1800w, https://dam.mihomes.com/media/2776633/50422.jpeg?timestamp=2025-02-12T23%3A00%3A34.3152532 2400w" title="INDY-Building Type-3-4-Unit-Farmhouse-Unit 3-Silo Ridge-Gen3-elev_DAY" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">T1778</p>
+ <p class="featured-grid-middle">12665 Morning Ridge Way, Noblesville, Indiana</p>
+ <p class="featured-grid-subtitle">Listed at $339,990</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/indiana/indianapolis-metro/noblesville/silo-ridge/t1778-plan/12669-morning-ridge-way">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Building Type Elevation 3" height="1600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/2776633/50421.jpeg?timestamp=2025-02-12T23%3A00%3A34.9833882" srcset="https://dam.mihomes.com/media/2776633/50398.jpeg?timestamp=2025-02-12T23%3A00%3A32.2824189 300w, https://dam.mihomes.com/media/2776633/50397.jpeg?timestamp=2025-02-12T23%3A00%3A33.2499443 600w, https://dam.mihomes.com/media/2776633/50423.jpeg?timestamp=2025-02-12T23%3A00%3A34.3195135 900w, https://dam.mihomes.com/media/2776633/50396.jpeg?timestamp=2025-02-12T23%3A00%3A32.0230396 1200w, https://dam.mihomes.com/media/2776633/50421.jpeg?timestamp=2025-02-12T23%3A00%3A34.9833882 1800w, https://dam.mihomes.com/media/2776633/50422.jpeg?timestamp=2025-02-12T23%3A00%3A34.3152532 2400w" title="INDY-Building Type-3-4-Unit-Farmhouse-Unit 3-Silo Ridge-Gen3-elev_DAY" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">T1778</p>
+ <p class="featured-grid-middle">12669 Morning Ridge Way, Noblesville, Indiana</p>
+ <p class="featured-grid-subtitle">Listed at $339,990</p>
+ </a>
+</div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ </main>
+
+
+<footer class="main-footer">
+ <div class="main-footer-inner">
+ <ul class="horizontal-list">
+ <li><a href="https://apply.workable.com/mi-homes/" target="_blank" rel="noopener noreferrer" >Careers</a></li>
+ <li><a href="/support/warranty" >Warranty</a></li>
+ <li><a href="https://investors.mihomes.com/" rel="noopener noreferrer" title="Investor Relations" target="_blank" >Investors</a></li>
+ <li><a href="/events" >Events</a></li>
+ <li><a href="/incentives" >Incentives</a></li>
+ <li><a href="/agent/agent-info" >Agents & Brokers</a></li>
+ <li><a href="/resources" >Home Buying Resources</a></li>
+ <li><a href="/why-mi/journey" >Journey</a></li>
+ <li><a href="/blog/" >Blog</a></li>
+ </ul>
+ <ul class="horizontal-list">
+ <li><a href="/policies/privacy-policy" >Privacy Policy</a></li>
+ <li><a href="/policies/terms-of-use" >Terms of Use</a></li>
+ <li><a href="/subscriptions" >Manage Subscriptions</a></li>
+ <li><a href="/support/ccpa" >CCPA</a></li>
+ </ul>
+ <ul class="icon-list">
+ <li>
+<a href="https://www.instagram.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Instagram" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704717/50399.png" srcset="https://dam.mihomes.com/media/4704717/50399.png?timestamp=2026-05-04T18%3A56%3A58.4036491 300w, https://dam.mihomes.com/media/4704717/50420.png 600w" title="instagram" width="24" /></a> </li>
+ <li>
+<a href="https://www.facebook.com/MIHomesInc/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Facebook" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57191/50399.png" srcset="https://dam.mihomes.com/media/57191/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57191/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="facebook" width="24" /></a> </li>
+ <li>
+<a href="https://www.youtube.com/MIHomesInc" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Youtube" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704715/50399.png" srcset="https://dam.mihomes.com/media/4704715/50399.png?timestamp=2026-05-04T18%3A34%3A30.5730196 300w, https://dam.mihomes.com/media/4704715/50420.png 600w" title="youtube" width="24" /></a> </li>
+ <li>
+<a href="https://www.pinterest.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Pinterest" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57192/50399.png" srcset="https://dam.mihomes.com/media/57192/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57192/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="pintrest" width="24" /></a> </li>
+ <li>
+<a href="http://www.houzz.com/pro/mi-homes/m-i-homes" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Houzz" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57193/50399.png" srcset="https://dam.mihomes.com/media/57193/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57193/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="houzz" width="24" /></a> </li>
+ <li>
+<a href="http://portal.hud.gov" class="" rel="me" target="_blank" ><img data-dam-generated alt="Equal Housing" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704718/50399.png" srcset="https://dam.mihomes.com/media/4704718/50399.png?timestamp=2026-05-04T19%3A02%3A51.2896193 300w, https://dam.mihomes.com/media/4704718/50420.png 600w" title="equal-housing" width="28" /></a> </li>
+ </ul>
+ <p class="main-footer-copyright">
+ Copyright 2026, M/I Homes, Inc. All rights reserved.
+ </p>
+ <p id="division-disclaimer" class="main-footer-copyright">
+
+ *Price subject to change. See New Home Consultant for more information.
+ </p>
+ </div>
+</footer>
+</div>
+<div aria-label="Cookie Consent" role="dialog" id="ccpa-modal" class="ccpa-modal">
+ <p>By browsing, you accept our <a href="/policies/terms-of-use">terms of use</a> and <a href="/policies/privacy-policy">privacy policy</a>.</p>
+ <button class="button" type="button">OK</button>
+</div>
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/modals.css?ver=202608092245" rel="stylesheet" fetchpriority="low">
+ <div class="modal modal-wide box" data-modal="" id="privacy-policy-modal">
+ <button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div id="privacy-policy-text"></div>
+</div><div class="modal box box-wide box-paddingless" data-modal="" id="mortgage-payment-calculator-modal">
+<button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+</button>
+ <div id="mortgage-payment-calculator" data-price="334990" data-values="cc74da90-7b70-487f-a58a-c47f6624dd39"></div>
+</div>
+ <div class="modal" data-modal id="search-modal">
+ <form action="/search" class="search-form ">
+ <input class="search-form-input" id="search-form-input" name="search" placeholder="Search M/I Homes"
+ type="search" />
+ <button class="button search-form-clear-button" type="button">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+
+ </button>
+ <button class="button search-form-submit" type="submit">
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ <div class="search-form-results">
+ <div class="search-form-results-list"></div>
+ </div>
+ </form>
+ </div>
+</div>
+
+<!-- toolkit scripts -->
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit_common.js?ver=202608092245"></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit.js?ver=202608092245"></script>
+ <script src="https://cdn.mihomes.com/assets/toolkit/js/product.js?ver=202608092245"></script>
+ <script defer src="https://cdn.mihomes.com/assets/toolkit/js/mortgage-calculator.js?ver=202608092245"></script>
+<script>window.jQuery = window.$ = window.JQUERY;</script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/common.js?ver=202608092245" defer></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/favorites.js?ver=202608092245" defer></script>
+
+
+<script>
+ var w = Math.max(
+ document.body.scrollWidth,
+ document.documentElement.scrollWidth,
+ document.body.offsetWidth,
+ document.documentElement.offsetWidth,
+ document.documentElement.clientWidth
+ );
+ window.setCookie('screen-width', encodeURIComponent(w), { expires: 14, path: "/" })
+ </script>
+
+<script>
+
+
+</script>
+<script type="text/javascript">
+ const millisecondsPerDay = 86400000;
+ const millisecondsPerHour = millisecondsPerDay / 24;
+ const millisecondsPerMinute = millisecondsPerHour / 60;
+ const millisecondsPerSecond = 1000;
+ function addLeadingZero(val) {
+ if(val.toString().length < 2) {
+ return '0'+val;
+ }
+ return val;
+ }
+ function change() {
+ const list = Array.from(document.querySelectorAll('[data-countdown]'));
+ const now = new Date().getTime();
+ list.forEach((el) => {
+ const d = new Date(el.getAttribute('data-countdown')).getTime();
+ let diff = d - now;
+ let days = 0;
+ let hours = 0;
+ let minutes = 0;
+ let seconds = 0;
+ if(diff > 0) {
+ days = Math.floor(diff / millisecondsPerDay);
+ diff = diff - (days * millisecondsPerDay)
+ hours = Math.floor(diff/millisecondsPerHour);
+ diff = diff - (hours * millisecondsPerHour)
+ minutes = Math.floor(diff/millisecondsPerMinute);
+ diff = diff - (minutes * millisecondsPerMinute);
+ seconds = Math.floor(diff/millisecondsPerSecond);
+ }
+ try {
+ el.querySelector('.days').innerText = addLeadingZero(Math.max(days, 0));
+
+ } catch (e) {}
+ try {
+ el.querySelector('.hours').innerText = addLeadingZero(Math.max(hours, 0));
+ } catch(e) {}
+ try {
+ el.querySelector('.minutes').innerText = addLeadingZero(Math.max(minutes, 0));
+ } catch (e) {}
+ try {
+ el.querySelector('.seconds').innerText = addLeadingZero(Math.max(seconds, 0));
+ } catch (e) {}
+
+ });
+ setTimeout(()=>requestAnimationFrame(change), millisecondsPerSecond);
+ }
+ requestAnimationFrame(change);
+</script>
+</body>
+
+</html>
\ No newline at end of file
diff --git a/collectors/mi-homes/fixtures/homes/h8.html b/collectors/mi-homes/fixtures/homes/h8.html
new file mode 100644
index 00000000..a21e9ad4
--- /dev/null
+++ b/collectors/mi-homes/fixtures/homes/h8.html
@@ -0,0 +1,2134 @@
+
+
+<!doctype html>
+<html lang="en">
+
+<head>
+
+ <script>
+ var G = G || {};
+ G.pingForEmployee = true;
+ </script>
+
+
+<meta name="VIcurrentDateTime" content="639220202680610924" />
+<meta name="VirtualFolder" content="/" />
+<script type="text/javascript" src="/layouts/system/VisitorIdentification.js"></script>
+
+
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" name="viewport">
+ <title>7720 Bent Gale Road Pilot Point, TX 76258 - M/I Homes</title>
+ <!-- font -->
+ <link rel="preconnect" href="https://cdn.mihomes.com" crossorigin>
+ <link rel="preconnect" href="https://use.typekit.net" crossorigin>
+
+
+
+<!-- Google Tag Script -->
+
+ <script id="js-GTM-script">
+ window.dataLayer = window.dataLayer || [];
+ window.dataLayer.push({
+ "PageType": "Spec",
+ "MIAccount": "No",
+ "Division": "Dallas / Fort Worth"
+});
+
+(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=
+'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
+})(window,document,'script','dataLayer','GTM-M2JH3QJ');
+ </script>
+
+
+<!-- End Google Tag Script -->
+ <meta name="referrer" content="always" />
+
+ <link href="https://use.typekit.net/sgt3sit.css" rel="stylesheet" type="text/css" media="print" onload="this.media='all'" id="fonts-loaded" />
+
+<script>
+ try {
+ document.fonts.ready.then(() => {
+ document.body.classList.add('body--fonts-loaded');
+ if(window.setCookiie) {
+ window.setCookie('fonts-cached', 'true', { expires: 7, path: '/' });
+ }
+ });
+ } catch (e) { }
+</script>
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/toolkit.css?ver=202608092245" type="text/css" rel="stylesheet">
+ <!-- conditionally load css for blog -->
+
+ <script>
+ window.environment = "Prod";
+ window.googleApiKey = "REDACTED-THIRD-PARTY-PUBLIC-KEY";
+ </script>
+ <script>
+
+ window.maps =[];
+ window.AssetRootUrl = 'https://cdn.mihomes.com';
+
+ </script>
+
+ <meta name="twitter:card" content="summary" />
+<meta name="twitter:site" content="@mihomes" />
+<meta name="twitter:creator" content="@mihomes">
+
+<meta property="og:site_name" content="https://www.mihomes.com" />
+<meta property="og:type" content="article" />
+<meta property="og:url" content="https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/pilot-point/mobberly-farms/aster-plan/7720-bent-gale-road" />
+
+
+ <meta property="og:title" content="7720 Bent Gale Road" />
+ <meta name="twitter:title" content="7720 Bent Gale Road" />
+
+
+
+ <meta property="og:description" content="Experience the charm of 7720 Bent Gale Road in Pilot Point, Texas—a beautifully crafted new construction single-story home by M/I Homes designed for comfort and everyday ease. Offering 1,649 square feet of thoughtfully planned living space, this home features 3 bedrooms and 2 full bathrooms, making it ideal for modern living." />
+ <meta name="twitter:description" content="Experience the charm of 7720 Bent Gale Road in Pilot Point, Texas—a beautifully crafted new construction single-story home by M/I Homes designed for comfort and everyday ease. Offering 1,649 square feet of thoughtfully planned living space, this home features 3 bedrooms and 2 full bathrooms, making it ideal for modern living." />
+ <meta name="description" content="Experience the charm of 7720 Bent Gale Road in Pilot Point, Texas—a beautifully crafted new construction single-story home by M/I Homes designed for comfort and everyday ease. Offering 1,649 square feet of thoughtfully planned living space, this home features 3 bedrooms and 2 full bathrooms, making it ideal for modern living." />
+
+
+
+ <link rel="canonical" href="https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/pilot-point/mobberly-farms/aster-plan/7720-bent-gale-road">
+ <link defer href="https://dam.mihomes.com/media/4179716/50399.png" rel="icon" type="image/vnd.microsoft.icon" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="57x57"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-57x57.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="114x114"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-114x114.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="72x72"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-72x72.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="144x144"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-144x144.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="60x60"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-60x60.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="120x120"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-120x120.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="76x76"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-76x76.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="152x152"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-152x152.png" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-196x196.png"
+ sizes="196x196" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-96x96.png"
+ sizes="96x96" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-32x32.png"
+ sizes="32x32" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-16x16.png"
+ sizes="16x16" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-128.png"
+ sizes="128x128" />
+ <meta name="application-name" content=" " />
+ <meta name="msapplication-TileColor" content="#FFFFFF" />
+ <meta name="msapplication-TileImage" content="https://cdn.mihomes.com/assets/favicons/images/mstile-144x144.png" />
+ <meta name="msapplication-square70x70logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-70x70.png" />
+ <meta name="msapplication-square150x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-150x150.png" />
+ <meta name="msapplication-wide310x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x150.png" />
+ <meta name="msapplication-square310x310logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x310.png" />
+
+ <script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Organization",
+ "foundingDate": "1976",
+ "duns": "071649743",
+ "founders": [
+ {
+ "@type": "Person",
+ "name": "Melvin Schottenstein"
+ },
+ {
+ "@type": "Person",
+ "name": "Irving Schottenstein"
+ }
+ ],
+ "employees": [
+ {
+ "@type": "Person",
+ "name": "Robert H. Schottenstein",
+ "jobTitle": "Chairman, President, and CEO"
+ }
+ ],
+ "sameAs": [
+ "https://www.facebook.com/MIHomesInc",
+ "https://twitter.com/mihomes",
+ "https://www.instagram.com/mihomes/",
+ "https://www.youtube.com/MIHomesInc",
+ "https://www.houzz.com/pro/mi-homes/m-i-homes",
+ "https://www.pinterest.com/mihomes/"
+ ],
+ "logo": {
+ "@type": "ImageObject",
+ "name": "M/I Homes logo",
+ "contentUrl": "https://dam.mihomes.com/media/39664/50399.png"
+ },
+ "name": "M/I Homes",
+ "description": "M/I Homes, Inc. founded in 1976, M/I Homes is one of nation's leading builders of single family homes. M/I has established an exemplary reputation based on a strong commitment to superior customer service, innovative design, quality construction and premium locations. Listed on the New York Stock Exchange, M/I Homes serves a broad segment of the housing market including first-time, move-up, luxury and empty nester buyers.",
+ "url": "https://www.mihomes.com",
+ "isicv4": "4100"
+}</script>
+ <script defer src="https://www.youtube.com/iframe_api"></script>
+ <script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
+ <script>
+ window.addEventListener('load', () => {
+ const swUrl = "https://cdn.mihomes.com/assets/workers/product-page-service-worker.js"
+ navigator.serviceWorker
+ .register(swUrl, {
+ scope: '/'
+ })
+ .then(registration => {
+ console.log('Service Worker registered with scope:', registration.scope);
+ })
+ .catch(error => {
+ console.error('Error during service worker registration:', error);
+ });
+ });
+ </script>
+</head>
+
+<body class="no-js body--home-template">
+
+
+
+<!-- Google Tag Manager --><!-- Global site tag (gtag.js) - Google Analytics -->
+
+ <noscript>
+ <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M2JH3QJ"
+ height="0" width="0" style="display: none; visibility: hidden">
+ </iframe>
+ </noscript>
+
+<!-- End Google Tag Manager GTMM2JH3QJ -->
+<a class="skip-link" href="#content">Skip To Content</a>
+
+<div class="page-container">
+ <div id="overview" data-subnav-page-link="Overview"></div>
+
+
+<header class="main-header">
+ <div class="main-header-inner">
+<a href="/" class="main-header-logo" > <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png">
+<svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg></a> <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png" />
+ <button class="main-header-open-nav" data-open-nav="" title="Toggle Hamburger Navigation">
+ <svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg>
+ <svg class="icon icon-menu" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#menu"></use>
+</svg>
+ </button>
+ <div class="main-header-nav-items" data-a11y-focus data-nav-tray>
+ <nav class="main-nav">
+ <ul>
+ <li>
+
+ <a href="/" class="main-nav-link mobile-only" >Home</a>
+ </li>
+ <li>
+
+ <a href="/new-homes/texas/dallas-fort-worth-metroplex" class="main-nav-link find-a-home-link" >Find a Home</a>
+ </li>
+ <li>
+
+ <a href="/about-us/overview" class="main-nav-link " >About</a>
+ </li>
+ <li>
+
+ <a href="/why-mi/overview" class="main-nav-link " >Why M/I</a>
+ </li>
+ <li>
+
+ <a href="/incentives" class="main-nav-link " >Incentives</a>
+ </li>
+ <li>
+
+ <a href="/financing" class="main-nav-link " >Financing</a>
+ </li>
+ <li>
+
+ <a href="/support/warranty" class="main-nav-link " >Warranty</a>
+ </li>
+ <li>
+
+ <a href="/support" class="main-nav-link " >Contact</a>
+ </li>
+ <li>
+
+ <a href="/resources" class="main-nav-link " >Resources</a>
+ </li>
+ </ul>
+ </nav>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ <div class="aux-nav">
+ <ul>
+ <li data-a11y-focus>
+ <a href="/account/register" class="main-nav-link" >Sign Up</a>
+ </li>
+ <li data-a11y-focus>
+ <a href="/account/login" class="main-nav-link" >Log In</a>
+ </li>
+ </ul>
+ </div>
+ </div>
+ <button class="main-header-close-nav" data-close-nav>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ </div>
+</header>
+ <div class="breadcrumbs-bar">
+ <div class="breadcrumbs-wrapper">
+ <nav class="breadcrumbs">
+ <a class="button-plain" href="/">Home</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/communities">Texas</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/dallas-fort-worth-metroplex/communities">Dallas / Fort Worth Metroplex</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/dallas-fort-worth-metroplex/pilot-point">Pilot Point</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/dallas-fort-worth-metroplex/pilot-point/mobberly-farms">Mobberly Farms</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/texas/dallas-fort-worth-metroplex/pilot-point/mobberly-farms/aster-plan">Aster</a>
+ <span class="seperator"> • </span>
+ <span>7720 Bent Gale Road</span>
+ </nav>
+ </div>
+ </div>
+ <script>var bar = document.querySelector('.breadcrumbs-bar'); bar.setAttribute('style', 'height:' + bar.getBoundingClientRect().height + 'px');</script>
+<script type="application/ld+json">
+{
+"@context": "https://schema.org",
+"@type": "BreadcrumbList",
+"itemListElement":[
+{
+"@type":"ListItem",
+"position":1,
+"name":"Texas",
+"item":"https://www.mihomes.com/new-homes/texas/communities"
+},
+{
+"@type":"ListItem",
+"position":2,
+"name":"Dallas / Fort Worth Metroplex",
+"item":"https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/communities"
+},
+{
+"@type":"ListItem",
+"position":3,
+"name":"Pilot Point",
+"item":"https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/pilot-point"
+},
+{
+"@type":"ListItem",
+"position":4,
+"name":"Mobberly Farms",
+"item":"https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/pilot-point/mobberly-farms"
+},
+{
+"@type":"ListItem",
+"position":5,
+"name":"Aster",
+"item":"https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/pilot-point/mobberly-farms/aster-plan"
+},
+{
+"@type":"ListItem",
+"position":6,
+"name":"7720 Bent Gale Road",
+
+}
+]
+}
+</script>
+
+
+ <div class="page-notice-wrapper" id="page-notification"></div>
+ <main class="main-content" id="content" tabindex="0">
+
+<ul class="product-flags">
+ <li>
+ <a href="https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/incentives/lower-payments" data-is="me">
+
+
+<div class="product-flag " style="color: #35603d">
+ <span class="product-flag-text">Lower Payments with 2/1 Buydown</span>
+</div>
+ </a>
+ </li>
+</ul>
+<div class="image-banner">
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <img data-dam-generated alt="Aster Elevation B3" height="1600" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/2688271/50421.jpeg?timestamp=2025-01-15T23%3A00%3A26.0475208" srcset="https://dam.mihomes.com/media/2688271/50398.jpeg?timestamp=2025-01-15T23%3A00%3A24.3276484 300w, https://dam.mihomes.com/media/2688271/50397.jpeg?timestamp=2025-01-15T23%3A00%3A23.1364233 600w, https://dam.mihomes.com/media/2688271/50423.jpeg?timestamp=2025-01-15T23%3A00%3A22.4722266 900w, https://dam.mihomes.com/media/2688271/50396.jpeg?timestamp=2025-01-15T23%3A00%3A25.0436086 1200w, https://dam.mihomes.com/media/2688271/50421.jpeg?timestamp=2025-01-15T23%3A00%3A26.0475208 1800w, https://dam.mihomes.com/media/2688271/50422.jpeg?timestamp=2025-01-15T23%3A00%3A24.3538416 2400w" title="DFW-Aster-ElevationB3-Gen3-elev_DSK" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </a>
+ <div class="image-banner-more">
+ <a href="#product-gallery"
+ data-goto-slide="1"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="1"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Front Exterior" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/3410577/50421.jpeg?timestamp=2025-07-18T03%3A29%3A33.5093805" srcset="https://dam.mihomes.com/media/3410577/50398.jpeg?timestamp=2025-07-18T03%3A29%3A30.2139279 300w, https://dam.mihomes.com/media/3410577/50397.jpeg?timestamp=2025-07-18T03%3A29%3A28.8795912 600w, https://dam.mihomes.com/media/3410577/50423.jpeg?timestamp=2025-07-18T03%3A29%3A35.2407086 900w, https://dam.mihomes.com/media/3410577/50396.jpeg?timestamp=2025-07-18T03%3A29%3A27.3024552 1200w, https://dam.mihomes.com/media/3410577/50421.jpeg?timestamp=2025-07-18T03%3A29%3A33.5093805 1800w, https://dam.mihomes.com/media/3410577/50422.jpeg?timestamp=2025-07-18T03%3A29%3A34.3010852 2400w" title="[L1916-z025]Exterior" width="1800" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="2"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="2"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Kitchen" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/3410565/50421.jpeg?timestamp=2025-07-18T03%3A28%3A45.0074459" srcset="https://dam.mihomes.com/media/3410565/50398.jpeg?timestamp=2025-07-18T03%3A28%3A35.1274475 300w, https://dam.mihomes.com/media/3410565/50397.jpeg?timestamp=2025-07-18T03%3A28%3A26.5971872 600w, https://dam.mihomes.com/media/3410565/50423.jpeg?timestamp=2025-07-18T03%3A28%3A49.5908815 900w, https://dam.mihomes.com/media/3410565/50396.jpeg?timestamp=2025-07-18T03%3A28%3A28.5130639 1200w, https://dam.mihomes.com/media/3410565/50421.jpeg?timestamp=2025-07-18T03%3A28%3A45.0074459 1800w, https://dam.mihomes.com/media/3410565/50422.jpeg?timestamp=2025-07-18T03%3A28%3A47.2831662 2400w" title="[L1916-z008]Kitchen" width="1800" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="3"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="3"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Kitchen" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/3410563/50421.jpeg?timestamp=2025-07-18T03%3A28%3A41.2447735" srcset="https://dam.mihomes.com/media/3410563/50398.jpeg?timestamp=2025-07-18T03%3A28%3A30.8885271 300w, https://dam.mihomes.com/media/3410563/50397.jpeg?timestamp=2025-07-18T03%3A28%3A30.1571765 600w, https://dam.mihomes.com/media/3410563/50423.jpeg?timestamp=2025-07-18T03%3A28%3A48.4243992 900w, https://dam.mihomes.com/media/3410563/50396.jpeg?timestamp=2025-07-18T03%3A28%3A23.9760497 1200w, https://dam.mihomes.com/media/3410563/50421.jpeg?timestamp=2025-07-18T03%3A28%3A41.2447735 1800w, https://dam.mihomes.com/media/3410563/50422.jpeg?timestamp=2025-07-18T03%3A28%3A46.4803719 2400w" title="[L1916-z006]Kitchen" width="1800" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="4"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="4"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Family Room" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/3410569/50421.jpeg?timestamp=2025-07-18T03%3A29%3A05.6231538" srcset="https://dam.mihomes.com/media/3410569/50398.jpeg?timestamp=2025-07-18T03%3A28%3A56.4214811 300w, https://dam.mihomes.com/media/3410569/50397.jpeg?timestamp=2025-07-18T03%3A28%3A54.6283369 600w, https://dam.mihomes.com/media/3410569/50423.jpeg?timestamp=2025-07-18T03%3A29%3A10.2034482 900w, https://dam.mihomes.com/media/3410569/50396.jpeg?timestamp=2025-07-18T03%3A28%3A53.8010335 1200w, https://dam.mihomes.com/media/3410569/50421.jpeg?timestamp=2025-07-18T03%3A29%3A05.6231538 1800w, https://dam.mihomes.com/media/3410569/50422.jpeg?timestamp=2025-07-18T03%3A29%3A07.3099209 2400w" title="[L1916-z016]FamilyRoom" width="1800" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="third event-click image-banner-total gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <span class="button button-transparent">
+ View 11 Photos
+ </span>
+ </a>
+ </div>
+</div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Aster Elevation B3" height="1600" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/2688271/50421.jpeg?timestamp=2025-01-15T23%3A00%3A26.0475208" srcset="https://dam.mihomes.com/media/2688271/50398.jpeg?timestamp=2025-01-15T23%3A00%3A24.3276484 300w, https://dam.mihomes.com/media/2688271/50397.jpeg?timestamp=2025-01-15T23%3A00%3A23.1364233 600w, https://dam.mihomes.com/media/2688271/50423.jpeg?timestamp=2025-01-15T23%3A00%3A22.4722266 900w, https://dam.mihomes.com/media/2688271/50396.jpeg?timestamp=2025-01-15T23%3A00%3A25.0436086 1200w, https://dam.mihomes.com/media/2688271/50421.jpeg?timestamp=2025-01-15T23%3A00%3A26.0475208 1800w, https://dam.mihomes.com/media/2688271/50422.jpeg?timestamp=2025-01-15T23%3A00%3A24.3538416 2400w" title="DFW-Aster-ElevationB3-Gen3-elev_DSK" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Front Exterior" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/3410577/50421.jpeg?timestamp=2025-07-18T03%3A29%3A33.5093805" srcset="https://dam.mihomes.com/media/3410577/50398.jpeg?timestamp=2025-07-18T03%3A29%3A30.2139279 300w, https://dam.mihomes.com/media/3410577/50397.jpeg?timestamp=2025-07-18T03%3A29%3A28.8795912 600w, https://dam.mihomes.com/media/3410577/50423.jpeg?timestamp=2025-07-18T03%3A29%3A35.2407086 900w, https://dam.mihomes.com/media/3410577/50396.jpeg?timestamp=2025-07-18T03%3A29%3A27.3024552 1200w, https://dam.mihomes.com/media/3410577/50421.jpeg?timestamp=2025-07-18T03%3A29%3A33.5093805 1800w, https://dam.mihomes.com/media/3410577/50422.jpeg?timestamp=2025-07-18T03%3A29%3A34.3010852 2400w" title="[L1916-z025]Exterior" width="1800" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Kitchen" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/3410565/50421.jpeg?timestamp=2025-07-18T03%3A28%3A45.0074459" srcset="https://dam.mihomes.com/media/3410565/50398.jpeg?timestamp=2025-07-18T03%3A28%3A35.1274475 300w, https://dam.mihomes.com/media/3410565/50397.jpeg?timestamp=2025-07-18T03%3A28%3A26.5971872 600w, https://dam.mihomes.com/media/3410565/50423.jpeg?timestamp=2025-07-18T03%3A28%3A49.5908815 900w, https://dam.mihomes.com/media/3410565/50396.jpeg?timestamp=2025-07-18T03%3A28%3A28.5130639 1200w, https://dam.mihomes.com/media/3410565/50421.jpeg?timestamp=2025-07-18T03%3A28%3A45.0074459 1800w, https://dam.mihomes.com/media/3410565/50422.jpeg?timestamp=2025-07-18T03%3A28%3A47.2831662 2400w" title="[L1916-z008]Kitchen" width="1800" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Kitchen" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/3410563/50421.jpeg?timestamp=2025-07-18T03%3A28%3A41.2447735" srcset="https://dam.mihomes.com/media/3410563/50398.jpeg?timestamp=2025-07-18T03%3A28%3A30.8885271 300w, https://dam.mihomes.com/media/3410563/50397.jpeg?timestamp=2025-07-18T03%3A28%3A30.1571765 600w, https://dam.mihomes.com/media/3410563/50423.jpeg?timestamp=2025-07-18T03%3A28%3A48.4243992 900w, https://dam.mihomes.com/media/3410563/50396.jpeg?timestamp=2025-07-18T03%3A28%3A23.9760497 1200w, https://dam.mihomes.com/media/3410563/50421.jpeg?timestamp=2025-07-18T03%3A28%3A41.2447735 1800w, https://dam.mihomes.com/media/3410563/50422.jpeg?timestamp=2025-07-18T03%3A28%3A46.4803719 2400w" title="[L1916-z006]Kitchen" width="1800" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Family Room" height="1200" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/3410569/50421.jpeg?timestamp=2025-07-18T03%3A29%3A05.6231538" srcset="https://dam.mihomes.com/media/3410569/50398.jpeg?timestamp=2025-07-18T03%3A28%3A56.4214811 300w, https://dam.mihomes.com/media/3410569/50397.jpeg?timestamp=2025-07-18T03%3A28%3A54.6283369 600w, https://dam.mihomes.com/media/3410569/50423.jpeg?timestamp=2025-07-18T03%3A29%3A10.2034482 900w, https://dam.mihomes.com/media/3410569/50396.jpeg?timestamp=2025-07-18T03%3A28%3A53.8010335 1200w, https://dam.mihomes.com/media/3410569/50421.jpeg?timestamp=2025-07-18T03%3A29%3A05.6231538 1800w, https://dam.mihomes.com/media/3410569/50422.jpeg?timestamp=2025-07-18T03%3A29%3A07.3099209 2400w" title="[L1916-z016]FamilyRoom" width="1800" class="image-banner-item-more" />
+ </span>
+ </div>
+
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <div class="modal fullscreen-modal gallery-modal gallery-modal--simple" data-modal="" id="simple-gallery-modal" data-track-views="">
+ <div class="gallery-modal__list-container">
+ <div class="gallery-modal__controls">
+ <button class="close-icon" data-modal-close>
+ <svg class="icon icon-close-gallery" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close-gallery"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__list-container-arrows">
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="prev" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="10" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="next" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="0" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__controls gallery-modal__controls__zoom">
+ <button class="close-icon" data-gallery="simple-gallery-modal" data-zoom>
+ <svg class="icon icon-zoom" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#zoom"></use>
+</svg>
+ </button>
+ </div>
+ <ul class="gallery-modal__list no-transition" style="transform: translateX(-200%);">
+
+ <li class="gallery-slide-container" data-slide-id="0" data-image="https://dam.mihomes.com/media/2688271/50398.jpeg?timestamp=2025-01-15T23%3A00%3A24.3276484 300w, https://dam.mihomes.com/media/2688271/50397.jpeg?timestamp=2025-01-15T23%3A00%3A23.1364233 600w, https://dam.mihomes.com/media/2688271/50423.jpeg?timestamp=2025-01-15T23%3A00%3A22.4722266 900w, https://dam.mihomes.com/media/2688271/50396.jpeg?timestamp=2025-01-15T23%3A00%3A25.0436086 1200w, https://dam.mihomes.com/media/2688271/50421.jpeg?timestamp=2025-01-15T23%3A00%3A26.0475208 1800w, https://dam.mihomes.com/media/2688271/50422.jpeg?timestamp=2025-01-15T23%3A00%3A24.3538416 2400w" data-caption="Aster Elevation B3" data-count="<strong>1</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Aster Elevation B3" height="1600" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/2688271/50421.jpeg?timestamp=2025-01-15T23%3A00%3A26.0475208" srcset="https://dam.mihomes.com/media/2688271/50398.jpeg?timestamp=2025-01-15T23%3A00%3A24.3276484 300w, https://dam.mihomes.com/media/2688271/50397.jpeg?timestamp=2025-01-15T23%3A00%3A23.1364233 600w, https://dam.mihomes.com/media/2688271/50423.jpeg?timestamp=2025-01-15T23%3A00%3A22.4722266 900w, https://dam.mihomes.com/media/2688271/50396.jpeg?timestamp=2025-01-15T23%3A00%3A25.0436086 1200w, https://dam.mihomes.com/media/2688271/50421.jpeg?timestamp=2025-01-15T23%3A00%3A26.0475208 1800w, https://dam.mihomes.com/media/2688271/50422.jpeg?timestamp=2025-01-15T23%3A00%3A24.3538416 2400w" title="DFW-Aster-ElevationB3-Gen3-elev_DSK" width="2400" class="image-banner-item-gallery" fetchpriority="high" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="1" data-image="https://dam.mihomes.com/media/3410577/50398.jpeg?timestamp=2025-07-18T03%3A29%3A30.2139279 300w, https://dam.mihomes.com/media/3410577/50397.jpeg?timestamp=2025-07-18T03%3A29%3A28.8795912 600w, https://dam.mihomes.com/media/3410577/50423.jpeg?timestamp=2025-07-18T03%3A29%3A35.2407086 900w, https://dam.mihomes.com/media/3410577/50396.jpeg?timestamp=2025-07-18T03%3A29%3A27.3024552 1200w, https://dam.mihomes.com/media/3410577/50421.jpeg?timestamp=2025-07-18T03%3A29%3A33.5093805 1800w, https://dam.mihomes.com/media/3410577/50422.jpeg?timestamp=2025-07-18T03%3A29%3A34.3010852 2400w" data-caption="Front Exterior - Representational Photo" data-count="<strong>2</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Front Exterior" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/3410577/50421.jpeg?timestamp=2025-07-18T03%3A29%3A33.5093805" srcset="https://dam.mihomes.com/media/3410577/50398.jpeg?timestamp=2025-07-18T03%3A29%3A30.2139279 300w, https://dam.mihomes.com/media/3410577/50397.jpeg?timestamp=2025-07-18T03%3A29%3A28.8795912 600w, https://dam.mihomes.com/media/3410577/50423.jpeg?timestamp=2025-07-18T03%3A29%3A35.2407086 900w, https://dam.mihomes.com/media/3410577/50396.jpeg?timestamp=2025-07-18T03%3A29%3A27.3024552 1200w, https://dam.mihomes.com/media/3410577/50421.jpeg?timestamp=2025-07-18T03%3A29%3A33.5093805 1800w, https://dam.mihomes.com/media/3410577/50422.jpeg?timestamp=2025-07-18T03%3A29%3A34.3010852 2400w" title="[L1916-z025]Exterior" width="1800" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="2" data-image="https://dam.mihomes.com/media/3410565/50398.jpeg?timestamp=2025-07-18T03%3A28%3A35.1274475 300w, https://dam.mihomes.com/media/3410565/50397.jpeg?timestamp=2025-07-18T03%3A28%3A26.5971872 600w, https://dam.mihomes.com/media/3410565/50423.jpeg?timestamp=2025-07-18T03%3A28%3A49.5908815 900w, https://dam.mihomes.com/media/3410565/50396.jpeg?timestamp=2025-07-18T03%3A28%3A28.5130639 1200w, https://dam.mihomes.com/media/3410565/50421.jpeg?timestamp=2025-07-18T03%3A28%3A45.0074459 1800w, https://dam.mihomes.com/media/3410565/50422.jpeg?timestamp=2025-07-18T03%3A28%3A47.2831662 2400w" data-caption="Kitchen - Representational Photo" data-count="<strong>3</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/3410565/50421.jpeg?timestamp=2025-07-18T03%3A28%3A45.0074459" srcset="https://dam.mihomes.com/media/3410565/50398.jpeg?timestamp=2025-07-18T03%3A28%3A35.1274475 300w, https://dam.mihomes.com/media/3410565/50397.jpeg?timestamp=2025-07-18T03%3A28%3A26.5971872 600w, https://dam.mihomes.com/media/3410565/50423.jpeg?timestamp=2025-07-18T03%3A28%3A49.5908815 900w, https://dam.mihomes.com/media/3410565/50396.jpeg?timestamp=2025-07-18T03%3A28%3A28.5130639 1200w, https://dam.mihomes.com/media/3410565/50421.jpeg?timestamp=2025-07-18T03%3A28%3A45.0074459 1800w, https://dam.mihomes.com/media/3410565/50422.jpeg?timestamp=2025-07-18T03%3A28%3A47.2831662 2400w" title="[L1916-z008]Kitchen" width="1800" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="3" data-image="https://dam.mihomes.com/media/3410563/50398.jpeg?timestamp=2025-07-18T03%3A28%3A30.8885271 300w, https://dam.mihomes.com/media/3410563/50397.jpeg?timestamp=2025-07-18T03%3A28%3A30.1571765 600w, https://dam.mihomes.com/media/3410563/50423.jpeg?timestamp=2025-07-18T03%3A28%3A48.4243992 900w, https://dam.mihomes.com/media/3410563/50396.jpeg?timestamp=2025-07-18T03%3A28%3A23.9760497 1200w, https://dam.mihomes.com/media/3410563/50421.jpeg?timestamp=2025-07-18T03%3A28%3A41.2447735 1800w, https://dam.mihomes.com/media/3410563/50422.jpeg?timestamp=2025-07-18T03%3A28%3A46.4803719 2400w" data-caption="Kitchen - Representational Photo" data-count="<strong>4</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/3410563/50421.jpeg?timestamp=2025-07-18T03%3A28%3A41.2447735" srcset="https://dam.mihomes.com/media/3410563/50398.jpeg?timestamp=2025-07-18T03%3A28%3A30.8885271 300w, https://dam.mihomes.com/media/3410563/50397.jpeg?timestamp=2025-07-18T03%3A28%3A30.1571765 600w, https://dam.mihomes.com/media/3410563/50423.jpeg?timestamp=2025-07-18T03%3A28%3A48.4243992 900w, https://dam.mihomes.com/media/3410563/50396.jpeg?timestamp=2025-07-18T03%3A28%3A23.9760497 1200w, https://dam.mihomes.com/media/3410563/50421.jpeg?timestamp=2025-07-18T03%3A28%3A41.2447735 1800w, https://dam.mihomes.com/media/3410563/50422.jpeg?timestamp=2025-07-18T03%3A28%3A46.4803719 2400w" title="[L1916-z006]Kitchen" width="1800" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="4" data-image="https://dam.mihomes.com/media/3410569/50398.jpeg?timestamp=2025-07-18T03%3A28%3A56.4214811 300w, https://dam.mihomes.com/media/3410569/50397.jpeg?timestamp=2025-07-18T03%3A28%3A54.6283369 600w, https://dam.mihomes.com/media/3410569/50423.jpeg?timestamp=2025-07-18T03%3A29%3A10.2034482 900w, https://dam.mihomes.com/media/3410569/50396.jpeg?timestamp=2025-07-18T03%3A28%3A53.8010335 1200w, https://dam.mihomes.com/media/3410569/50421.jpeg?timestamp=2025-07-18T03%3A29%3A05.6231538 1800w, https://dam.mihomes.com/media/3410569/50422.jpeg?timestamp=2025-07-18T03%3A29%3A07.3099209 2400w" data-caption="Family Room - Representational Photo" data-count="<strong>5</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Family Room" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/3410569/50421.jpeg?timestamp=2025-07-18T03%3A29%3A05.6231538" srcset="https://dam.mihomes.com/media/3410569/50398.jpeg?timestamp=2025-07-18T03%3A28%3A56.4214811 300w, https://dam.mihomes.com/media/3410569/50397.jpeg?timestamp=2025-07-18T03%3A28%3A54.6283369 600w, https://dam.mihomes.com/media/3410569/50423.jpeg?timestamp=2025-07-18T03%3A29%3A10.2034482 900w, https://dam.mihomes.com/media/3410569/50396.jpeg?timestamp=2025-07-18T03%3A28%3A53.8010335 1200w, https://dam.mihomes.com/media/3410569/50421.jpeg?timestamp=2025-07-18T03%3A29%3A05.6231538 1800w, https://dam.mihomes.com/media/3410569/50422.jpeg?timestamp=2025-07-18T03%3A29%3A07.3099209 2400w" title="[L1916-z016]FamilyRoom" width="1800" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="5" data-image="https://dam.mihomes.com/media/3410567/50398.jpeg 300w, https://dam.mihomes.com/media/3410567/50397.jpeg 600w, https://dam.mihomes.com/media/3410567/50423.jpeg 900w, https://dam.mihomes.com/media/3410567/50396.jpeg 1200w, https://dam.mihomes.com/media/3410567/50421.jpeg 1800w, https://dam.mihomes.com/media/3410567/50422.jpeg 2400w" data-caption="Family Room - Representational Photo" data-count="<strong>6</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Family Room" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/3410567/50421.jpeg?timestamp=2025-07-18T03%3A29%3A07.8246344" srcset="https://dam.mihomes.com/media/3410567/50398.jpeg 300w, https://dam.mihomes.com/media/3410567/50397.jpeg 600w, https://dam.mihomes.com/media/3410567/50423.jpeg 900w, https://dam.mihomes.com/media/3410567/50396.jpeg 1200w, https://dam.mihomes.com/media/3410567/50421.jpeg 1800w, https://dam.mihomes.com/media/3410567/50422.jpeg 2400w" title="[L1916-z015]FamilyRoom" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="6" data-image="https://dam.mihomes.com/media/3410571/50398.jpeg 300w, https://dam.mihomes.com/media/3410571/50397.jpeg 600w, https://dam.mihomes.com/media/3410571/50423.jpeg 900w, https://dam.mihomes.com/media/3410571/50396.jpeg 1200w, https://dam.mihomes.com/media/3410571/50421.jpeg 1800w, https://dam.mihomes.com/media/3410571/50422.jpeg 2400w" data-caption="Owner's Bedroom - Representational Photo" data-count="<strong>7</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owner's Bedroom" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/3410571/50421.jpeg?timestamp=2025-07-18T03%3A29%3A12.6921200" srcset="https://dam.mihomes.com/media/3410571/50398.jpeg 300w, https://dam.mihomes.com/media/3410571/50397.jpeg 600w, https://dam.mihomes.com/media/3410571/50423.jpeg 900w, https://dam.mihomes.com/media/3410571/50396.jpeg 1200w, https://dam.mihomes.com/media/3410571/50421.jpeg 1800w, https://dam.mihomes.com/media/3410571/50422.jpeg 2400w" title="[L1916-z020]Interior" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="7" data-image="https://dam.mihomes.com/media/3410578/50398.jpeg 300w, https://dam.mihomes.com/media/3410578/50397.jpeg 600w, https://dam.mihomes.com/media/3410578/50423.jpeg 900w, https://dam.mihomes.com/media/3410578/50396.jpeg 1200w, https://dam.mihomes.com/media/3410578/50421.jpeg 1800w, https://dam.mihomes.com/media/3410578/50422.jpeg 2400w" data-caption="Owner's Bathroom - Representational Photo" data-count="<strong>8</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owner's Bathroom" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/3410578/50421.jpeg?timestamp=2025-07-18T03%3A29%3A30.4045787" srcset="https://dam.mihomes.com/media/3410578/50398.jpeg 300w, https://dam.mihomes.com/media/3410578/50397.jpeg 600w, https://dam.mihomes.com/media/3410578/50423.jpeg 900w, https://dam.mihomes.com/media/3410578/50396.jpeg 1200w, https://dam.mihomes.com/media/3410578/50421.jpeg 1800w, https://dam.mihomes.com/media/3410578/50422.jpeg 2400w" title="[L1916-z021]Bathroom" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="8" data-image="https://dam.mihomes.com/media/3410556/50398.jpeg 300w, https://dam.mihomes.com/media/3410556/50397.jpeg 600w, https://dam.mihomes.com/media/3410556/50423.jpeg 900w, https://dam.mihomes.com/media/3410556/50396.jpeg 1200w, https://dam.mihomes.com/media/3410556/50421.jpeg 1800w, https://dam.mihomes.com/media/3410556/50422.jpeg 2400w" data-caption="Study - Representational Photo" data-count="<strong>9</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Study" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/3410556/50421.jpeg?timestamp=2025-07-18T03%3A28%3A21.5466968" srcset="https://dam.mihomes.com/media/3410556/50398.jpeg 300w, https://dam.mihomes.com/media/3410556/50397.jpeg 600w, https://dam.mihomes.com/media/3410556/50423.jpeg 900w, https://dam.mihomes.com/media/3410556/50396.jpeg 1200w, https://dam.mihomes.com/media/3410556/50421.jpeg 1800w, https://dam.mihomes.com/media/3410556/50422.jpeg 2400w" title="[L1916-z003]Interior" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="9" data-image="https://dam.mihomes.com/media/3410559/50398.jpeg 300w, https://dam.mihomes.com/media/3410559/50397.jpeg 600w, https://dam.mihomes.com/media/3410559/50423.jpeg 900w, https://dam.mihomes.com/media/3410559/50396.jpeg 1200w, https://dam.mihomes.com/media/3410559/50421.jpeg 1800w, https://dam.mihomes.com/media/3410559/50422.jpeg 2400w" data-caption="Bedroom - Representational Photo" data-count="<strong>10</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/3410559/50421.jpeg?timestamp=2025-07-18T03%3A28%3A39.8072989" srcset="https://dam.mihomes.com/media/3410559/50398.jpeg 300w, https://dam.mihomes.com/media/3410559/50397.jpeg 600w, https://dam.mihomes.com/media/3410559/50423.jpeg 900w, https://dam.mihomes.com/media/3410559/50396.jpeg 1200w, https://dam.mihomes.com/media/3410559/50421.jpeg 1800w, https://dam.mihomes.com/media/3410559/50422.jpeg 2400w" title="[L1916-z009]Bedroom" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="10" data-image="https://dam.mihomes.com/media/3410564/50398.jpeg 300w, https://dam.mihomes.com/media/3410564/50397.jpeg 600w, https://dam.mihomes.com/media/3410564/50423.jpeg 900w, https://dam.mihomes.com/media/3410564/50396.jpeg 1200w, https://dam.mihomes.com/media/3410564/50421.jpeg 1800w, https://dam.mihomes.com/media/3410564/50422.jpeg 2400w" data-caption="Bathroom - Representational Photo" data-count="<strong>11</strong> of <strong>11</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bathroom" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/3410564/50421.jpeg?timestamp=2025-07-18T03%3A28%3A44.1983628" srcset="https://dam.mihomes.com/media/3410564/50398.jpeg 300w, https://dam.mihomes.com/media/3410564/50397.jpeg 600w, https://dam.mihomes.com/media/3410564/50423.jpeg 900w, https://dam.mihomes.com/media/3410564/50396.jpeg 1200w, https://dam.mihomes.com/media/3410564/50421.jpeg 1800w, https://dam.mihomes.com/media/3410564/50422.jpeg 2400w" title="[L1916-z011]Bathroom" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ </ul>
+ <div class="gallery-slide__footer">
+ <span class="gallery-slide__title title-caption"></span>
+ <div class="gallery-slide__share-buttons">
+ <span class="count"></span>
+ </div>
+ </div>
+ </div>
+ </div>
+</div><script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Product",
+ "additionalType": "https://schema.org/SingleFamilyResidence",
+ "name": "7720 Bent Gale Road",
+ "sku": "lToaVCer4UiGeWCn0Une5w",
+ "description": "Experience the charm of 7720 Bent Gale Road in Pilot Point, Texas—a beautifully crafted new construction <strong>single-story home</strong> by M/I Homes designed for comfort and everyday ease. Offering 1,649 square feet of thoughtfully planned living space, this home features 3 bedrooms and 2 full bathrooms, making it ideal for modern living.",
+ "image": [
+ "https://dam.mihomes.com/media/2688271/50421.jpeg",
+ "https://dam.mihomes.com/media/3410577/50421.jpeg",
+ "https://dam.mihomes.com/media/3410565/50421.jpeg",
+ "https://dam.mihomes.com/media/3410563/50421.jpeg",
+ "https://dam.mihomes.com/media/3410569/50421.jpeg",
+ "https://dam.mihomes.com/media/3410567/50421.jpeg",
+ "https://dam.mihomes.com/media/3410571/50421.jpeg",
+ "https://dam.mihomes.com/media/3410578/50421.jpeg",
+ "https://dam.mihomes.com/media/3410556/50421.jpeg",
+ "https://dam.mihomes.com/media/3410559/50421.jpeg",
+ "https://dam.mihomes.com/media/3410564/50421.jpeg"
+ ],
+ "url": "https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/pilot-point/mobberly-farms/aster-plan/7720-bent-gale-road",
+ "brand": {
+ "@type": "Organization",
+ "parentOrganization": {
+ "@type": "Organization",
+ "name": "M/I Homes"
+ },
+ "name": "Mobberly Farms"
+ },
+ "address": {
+ "@type": "PostalAddress",
+ "streetAddress": "7720 Bent Gale Road",
+ "addressLocality": "Pilot Point",
+ "addressRegion": "TX",
+ "postalCode": "76258",
+ "addressCountry": "US"
+ },
+ "geo": {
+ "@type": "GeoCoordinates",
+ "latitude": 33.3055396178436,
+ "longitude": -96.8907292782519
+ },
+ "telephone": "+19726194200",
+ "offers": {
+ "@type": "Offer",
+ "url": "/new-homes/texas/dallas-fort-worth-metroplex/pilot-point/mobberly-farms/aster-plan/7720-bent-gale-road",
+ "price": "299990.00",
+ "priceCurrency": "USD",
+ "priceValidUntil": "08-12-2026",
+ "itemCondition": "https://schema.org/NewCondition",
+ "availability": "https://schema.org/InStock"
+ },
+ "model": "https://www.mihomes.com/new-homes/texas/dallas-fort-worth-metroplex/pilot-point/mobberly-farms/aster-plan",
+ "numberOfBedrooms": {
+ "@type": "Integer",
+ "value": 3
+ },
+ "numberOfFullBathrooms": {
+ "@type": "Integer",
+ "value": 2
+ },
+ "numberOfPartialBathrooms": {
+ "@type": "Integer",
+ "value": 0
+ },
+ "petsAllowed": true,
+ "yearBuilt": "2026",
+ "floorSize": {
+ "@type": "QuantitativeValue",
+ "value": 1649,
+ "unitCode": "FTK"
+ }
+}</script>
+<div class="modals" data-modal-container aria-hidden="true">
+ <div class="modal box" data-modal id="signup-modal">
+ <button class="modal-close" data-modal-close>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+
+ <h2 class="h1 alt">Sign up for an M/I Homes account</h2>
+ <p>Save your favorite home plans and communities, compare home plans and share your dream home with sales associates and real estate agents.</p>
+ <p>
+ Already a member?
+ <a class="button-plain" href="/account/login">Log In to your account »</a>
+ </p>
+ <a class="button button-wide" href="/account/register">
+ <span class="button-text">
+ Sign up with email
+ </span>
+ </a>
+ </div>
+</div>
+
+<div class="product-header" data-yes="true">
+
+ <div class="product-header-row product-header__top">
+
+ <div class="product-header-centered ">
+ <div>
+ <a href="/new-homes/texas/dallas-fort-worth-metroplex/pilot-point/mobberly-farms" class="button-plain">
+ Mobberly Farms
+ </a>
+
+ <h1 class="header-seo-h2">
+ 7720 Bent Gale Road, Pilot Point, TX 76258
+ <button class="aux-nav-link button-favorite-product gami-favorite-save" data-favorite-type="Home" data-favorite-id="541a3a95-ab27-48e1-8679-60a7d149dee7" data-favorite-fav-id="541a3a95-ab27-48e1-8679-60a7d149dee7" data-add-favorite>
+ <svg class="icon icon-favorite" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#favorite"></use>
+</svg>
+ <span class="aux-nav-link-action-text">
+ Favorite
+ </span>
+ </button>
+ </h1>
+ </div>
+
+ <div class="product-header__actions">
+ <a class="button button-mobile-link button-virtual-tour event-click" href="https://my.matterport.com/show/?m=5AFWqExyMne " target="_blank" data-event-category=VirtualTour
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <span class="button-text">Virtual Tour</span>
+ </a>
+ </div>
+ </div>
+ </div>
+
+ <div class="product-header-row">
+ <div class="product-header-centered tooptip-container">
+ <div>
+ <dl>
+ <dt>Ready date:</dt>
+ <dd>
+ <strong class="current-size">
+ September 22, 2026
+ </strong>
+ </dd>
+ </dl>
+ </div>
+ <div class="product-header-price">
+
+ Price:
+ <span class="home-card-price-old">$303,979</span>
+ <span class="product-header-price-new" content="299990">$299,990</span>
+
+ (
+ <span data-open-modal="mortgage-payment-calculator-modal" data-tooltip="Click estimate to see how we calculate this monthly payment" data-annualinsurance="2000" data-taxrate="1.8" data-interestrate="2.875" data-downpayment="4" data-price="299990" data-mortgage-monthly-payment tabindex="0" class="product-header-price-monthly"></span>
+ )
+
+
+ <span class="product-header-calculator">
+ <a class="button-plain button-plain-icon small button-icon-right gami-mortcalc-view" data-open-modal="mortgage-payment-calculator-modal">
+ <svg class="icon icon-calculator" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#calculator"></use>
+</svg>
+ Estimate Your Monthly Payment
+ </a>
+ </span>
+ </div>
+ </div>
+ </div>
+</div> <a rel="noopener" href="/new-homes/texas/dallas-fort-worth-metroplex/pilot-point/mobberly-farms/plat map?lot=267767001505" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=6517 Adderly Road, Pilot Point, TX 76258&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=th6aj7O5Gqq-wcEfkk-FnBCX1T0=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+<div class="product-header-centered product-header-centered--contact-card-only">
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Mobberly Farms Sales Office</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://www.google.com/maps/dir/?api=1&destination=33.3055396178436,-96.8907292782519">
+ 6517 Adderly Road<br>Pilot Point, TX 76258
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+</div><div class="product-header">
+ <div class="product-header product-header-navigation">
+ <nav class="product-header-subnav" data-subnav="">
+ <div class="product-header-subnav-wrapper">
+ <div class="product-header-subnav-mobile-bottom">
+ <a class="button button-contact-us" href="/support/sales">
+ <span class="button-text">
+ Contact Us
+ </span>
+ </a>
+ </div>
+
+
+ <a class="product-header-subnav-toggle subnav-link" data-subnav-toggle="">
+ <span class="text" data-subnav-text="">Overview</span>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </a>
+
+ <ul class="product-header-subnav-links" data-subnav-links=""></ul>
+ </div>
+ </nav>
+
+ <div class="product-header-subnav-spacer"></div>
+
+ <a href="#overview" class="product-header__back-to-top is-hidden" data-back-to-top>
+ <div class="arrow arrow--up"></div>
+ </a>
+ </div>
+</div><section class="content-inner-with-sidebar content-inner-with-sidebar-right">
+
+
+ <div class="content-inner-content">
+
+
+
+
+
+<section class="plan-specification">
+ <h2 class="plan-specification__header">
+ About 7720 Bent Gale Road
+ </h2>
+ <a class="plan-specification__get-directions button-plain button-plain-alt negative-top gami-directions-exit" target="_blank" href="https://www.google.com/maps/search/?api=1&query=33.3055396178436,-96.8907292782519">Get Directions</a>
+ <ul class="plan-specification__list">
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sq-ft" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sq-ft"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">square feet</span>
+ <strong class="plan-specification-item__value">
+ 1,649
+ </strong>
+ </div>
+ </li>
+ <li class="stories-specification">
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-homes" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#homes"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">stories</span>
+ <strong class="plan-specification-item__value">
+ 1
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-bed" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#bed"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">bedrooms</span>
+ <strong class="plan-specification-item__value">
+ 3
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-shower" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#shower"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">full bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 2
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sink" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sink"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">half bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 0
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-car" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#car"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">garages</span>
+ <strong class="plan-specification-item__value">
+ 2
+ <span data-tooltip="The most common approach to a home's garage, the front load garage incorporates the garage entry into a home's front elevation.">(Front Load)</span>
+
+ </strong>
+ </div>
+ </li>
+ </ul>
+</section>
+
+<div class="overview-table">
+ <div class="overview-table-table">
+ <dl>
+ <dt>City</dt>
+ <dd>Pilot Point, TX</dd>
+
+ <dt>Owner's Suite</dt>
+ <dd>First Floor</dd>
+
+ <dt>County</dt>
+ <dd>Denton</dd>
+
+ <dt>Home Type</dt>
+ <dd>Single Family Home</dd>
+
+ <dt>School District</dt>
+ <dd>Pilot Point ISD</dd>
+
+ <dt>Foundation Type</dt>
+ <dd>Slab</dd>
+
+ <dt>Home Plan</dt>
+ <dd>Aster</dd>
+
+
+ <dt>Homesite</dt>
+ <dd>1505</dd>
+
+ <dt> Base Plan Width & Depth</dt>
+ <dd>29'-11" x 71'-11" </dd>
+ </dl>
+ </div>
+</div>
+<article class="faq__question-item faq__question-item--mobile-only">
+ <button class="faq__question" data-expander="" aria-controls="community-series-teaser" aria-expanded="false">
+ <span class="faq__icon-wrapper">
+ <span class="faq__icon gami-directions-view">
+ <svg class="icon icon-arrow" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#arrow"></use>
+</svg>
+ </span>
+ </span>
+ Part of the 30' Smart Series
+ <span class="show-hide-text hidden-text">Hide</span>
+ </button>
+ <div class="faq__answer preview-box preview-box--series-tout" id="community-series-teaser" role="region" tabindex="-1">
+ <a class="preview-box__image preview-box__preview one-fourth" href="/new-homes/texas/dallas-fort-worth-metroplex/pilot-point/mobberly-farms/series/30-smart-series">
+ <img data-dam-generated alt="Preview image" height="1536" loading="lazy" sizes="(min-width: 48rem) 193px, 100vw" src="https://dam.mihomes.com/media/736483/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667" srcset="https://dam.mihomes.com/media/736483/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/736483/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/736483/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/736483/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/736483/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/736483/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="[L236-z003]FamilyRoom4" width="2304" class="cover-image" />
+ </a>
+ <div class="preview-box__content ">
+ <div class="preview-box__text__series-teaser">
+ <h3>Part of the 30' Smart Series</h3>
+ <p>
+ Slightly smaller in nature but still packed with thoughtfully selected finishes and energy-efficient features are what you'll find in these Pilot Point homes for sale.
+ </p>
+ </div>
+ <p>
+ <a class="button" href="/new-homes/texas/dallas-fort-worth-metroplex/pilot-point/mobberly-farms/series/30-smart-series">Learn More</a>
+ </p>
+ </div>
+ </div>
+</article> <h2>
+ New Construction Home in Pilot Point, TX | 3 Bedrooms & Versatile Flex Room
+ </h2>
+ <div class="content-inner-content__capped-mobile-content">
+ <div data-slate-type="paragraph">
+<div>
+<p>Experience the charm of 7720 Bent Gale Road in Pilot Point, Texas—a beautifully crafted new construction <strong>single-story home</strong> by M/I Homes designed for comfort and everyday ease. Offering 1,649 square feet of thoughtfully planned living space, this home features 3 bedrooms and 2 full bathrooms, making it ideal for modern living.</p>
+<p>Step inside to an inviting open-concept layout where the main gathering areas flow seamlessly together, creating a bright and functional space for both relaxing and entertaining. Thoughtful design details and carefully selected finishes enhance both style and livability throughout. The owner’s suite provides a comfortable retreat, complete with a private en-suite bathroom designed for relaxation at the end of the day.</p>
+<p>Step outside to the covered patio—an extension of your living space and a perfect place to unwind or host guests year-round.</p>
+<p><strong>Key Features:</strong></p>
+<ul>
+ <li>2-car garage</li>
+ <li>Covered front porch for a welcoming entry</li>
+ <li>Versatile flex room, ideal for a home office or additional living space</li>
+ <li>Boxed-out window in the dining room for added character and light</li>
+ <li>Additional windows in the family room, enhancing natural brightness</li>
+ <li>Double-bowl vanities in both full bathrooms for added convenience</li>
+</ul>
+<p>Located in the welcoming <strong>Mobberly Farms community in Pilot Point</strong>, this home offers convenient access to nearby parks and green spaces—perfect for outdoor recreation and enjoying the natural surroundings.</p>
+<p><strong></strong></p>
+<div>
+<p>Move-in ready and thoughtfully designed, <strong>7720 Bent Gale Road</strong> delivers the perfect blend of single-story convenience, modern comfort, and quality craftsmanship in a peaceful, connected setting.</p>
+</div>
+<p><br />
+</p>
+</div>
+</div>
+
+ <!-- and done -->
+ <h3>
+ About the Community
+ </h3>
+ <p>
+ Mobberly Farms is a new home community in Pilot Point, TX, offering a quiet, small‑town setting just northwest of Celina and within easy reach of Denton. Located north of Highway 380, the community provides a peaceful retreat with convenient access to nearby shopping, dining, and outdoor recreation throughout North Texas.
+
+The neighborhood features single‑family Smart Series homes with a mix of one‑ and two‑story floorplans. Open‑concept layouts, flexible living spaces, and designer‑curated interior finishes make these homes comfortable, functional, and easy to personalize without added complexity.
+
+Residents enjoy amenities designed for relaxed, everyday living, including a swimming pool, walking trails, and open green spaces ideal for evening strolls, picnics, or time outdoors with family and pets. The surrounding area adds even more to enjoy, from Lake Ray Roberts State Park to the historic charm of downtown Pilot Point.
+
+With its calm surroundings, thoughtfully designed homes, and proximity to growing nearby cities, Mobberly Farms offers a balanced lifestyle that blends rural character with everyday convenience and modern comfort.
+ <br />
+ <a class="button-plain button-plain-alt" href="/new-homes/texas/dallas-fort-worth-metroplex/pilot-point/mobberly-farms">Learn more about this community »</a>
+ </p>
+ </div>
+ <button class="faq__question color-aqua" aria-expanded="false" data-read-more="">
+ <span class="faq__icon-wrapper">
+ <span class="faq__icon">
+ <svg class="icon icon-arrow" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#arrow"></use>
+</svg>
+ </span>
+ </span>
+ <span data-read-more-collapsed="">Read More</span>
+ <span data-read-more-expanded="">Show Less</span>
+ <span class="show-hide-text hidden-text">Show</span>
+ </button>
+ <div class="matterport-wrapper">
+ <iframe loading="lazy" class="box-full" width="803" height="480" src="https://my.matterport.com/show/?m=5AFWqExyMne" frameborder="0" allowfullscreen allow="vr" style="align-self: center" data-subnav-page-link="3D Tour" id="3dTour"></iframe>
+ </div>
+
+
+ <h4>Upcoming Events</h4>
+ <article class="preview-box">
+ <div class="preview-box-link">
+ <div class="preview-box__image preview-box__preview one-fifth">
+ <a href="/new-homes/texas/dallas-fort-worth-metroplex/events/open-house-get-home-before-the-bell-rings">
+ <img data-dam-generated alt="RTG | A+ Opportunities" height="5000" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/5018835/50421.jpeg?timestamp=2026-07-17T17%3A41%3A43.1681871" srcset="https://dam.mihomes.com/media/5018835/50398.jpeg?timestamp=2026-07-17T17%3A41%3A53.5631550 300w, https://dam.mihomes.com/media/5018835/50397.jpeg?timestamp=2026-07-17T17%3A41%3A46.6762870 600w, https://dam.mihomes.com/media/5018835/50423.jpeg?timestamp=2026-07-17T17%3A41%3A59.8473079 900w" title="A+Opportunities-Card" width="7500" class="cover-image" maxwidth="900" />
+ </a>
+ </div>
+ <div class="preview-box__content -multiple-times">
+ <h3 class="h3 preview-box__header">
+ Open House: Get Home Before the Bell Rings 🏡🎒
+ </h3>
+ <time class="preview-box__time" datetime="2026-08-15T10:00:00">Aug 15, 2026, 10:00 AM - 6:00 PM</time>
+ <p class="preview-box__text"><p>School is almost back in session and the bell is ringing on our Quick Move-In homes! Join us this weekend and find a home that is ready for study sessions, family game night, and A+ celebrations. 🏡🎒</p>
+<p><strong><em>Contact our team to RSVP today! </em></strong></p></p>
+ <p>
+ <a class="button-plain button-plain-alt" href="/new-homes/texas/dallas-fort-worth-metroplex/events/open-house-get-home-before-the-bell-rings">RSVP for this event »</a>
+ </p>
+ </div>
+ </div>
+ </article>
+ <a class="button-plain button-plain-alt negative-top" href="/new-homes/texas/dallas-fort-worth-metroplex/events">RSVP for this event »</a>
+
+ </div>
+
+ <div class="content-sidebar-right">
+ <a rel="noopener" href="/new-homes/texas/dallas-fort-worth-metroplex/pilot-point/mobberly-farms/plat map?lot=267767001505" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=6517 Adderly Road, Pilot Point, TX 76258&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=th6aj7O5Gqq-wcEfkk-FnBCX1T0=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Mobberly Farms Sales Office</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://www.google.com/maps/dir/?api=1&destination=33.3055396178436,-96.8907292782519">
+ 6517 Adderly Road<br>Pilot Point, TX 76258
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">10:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">12:00PM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+
+
+ <figure class="lead-form lead-form-sidebar lead-form-sidebar--compact lead-form-sidebar-signup">
+ <div class="lead-form-container">
+ <div id="lead-sidebar-header" class="lead-form-sidebar-header lead-form-sidebar-header-image">
+ <div id="isa-information" data-sidebar-section="1">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="Headshot" height="600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4527384/50397.jpeg?timestamp=2026-03-17T14%3A40%3A26.7276996" srcset="https://dam.mihomes.com/media/4527384/50398.jpeg?timestamp=2026-03-17T14%3A40%3A26.7375435 300w, https://dam.mihomes.com/media/4527384/50397.jpeg?timestamp=2026-03-17T14%3A40%3A26.7276996 600w, https://dam.mihomes.com/media/4527384/50423.jpeg?timestamp=2026-03-17T14%3A40%3A28.7048958 900w, https://dam.mihomes.com/media/4527384/50396.jpeg?timestamp=2026-03-17T14%3A40%3A26.6747850 1200w, https://dam.mihomes.com/media/4527384/50421.jpeg?timestamp=2026-03-17T14%3A40%3A27.5566686 1800w, https://dam.mihomes.com/media/4527384/50422.jpeg?timestamp=2026-03-17T14%3A40%3A28.0977903 2400w" title="DFW-Headshot-ChandlerWall" width="600" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="Headshot" height="600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4527383/50397.jpeg?timestamp=2026-03-17T14%3A40%3A26.7308400" srcset="https://dam.mihomes.com/media/4527383/50398.jpeg?timestamp=2026-03-17T14%3A40%3A26.7901979 300w, https://dam.mihomes.com/media/4527383/50397.jpeg?timestamp=2026-03-17T14%3A40%3A26.7308400 600w, https://dam.mihomes.com/media/4527383/50423.jpeg?timestamp=2026-03-17T14%3A40%3A29.3188334 900w, https://dam.mihomes.com/media/4527383/50396.jpeg?timestamp=2026-03-17T14%3A40%3A26.7882196 1200w, https://dam.mihomes.com/media/4527383/50421.jpeg?timestamp=2026-03-17T14%3A40%3A28.1752043 1800w, https://dam.mihomes.com/media/4527383/50422.jpeg?timestamp=2026-03-17T14%3A40%3A28.7793584 2400w" title="DFW-Headshot-BeckyKim" width="600" class="cover-image" />
+ </div>
+ </div>
+ <h3 class="">Have questions for us?</h3>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=9726194200'>(972) 619-4200</a>
+ </p>
+ </div>
+ <div id="form-agent-header" class="lead-form-sidebar-section right" style="display: none;">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+
+ </div>
+ <div class="lead-form-sidebar-form" data-lead-form-sidebar="">
+ <div class="lead-form-sidebar-errors"></div>
+<form action="/api/LeadGenFormSidebar/LeadGenFormSidebar" data-gami-event="gami-form-question" data-parsley-validate="" data-sidebar-hidden-required="" data-sidebar-nav-check="visit_sidebar" method="post" name="basic_sidebar" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="8643aa76-9cb0-4933-8d13-a9f27fc9e5bc" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Inventory" /><input id="PostType" name="PostType" type="hidden" value="sidebar" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:28 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="ItemId" name="ItemId" type="hidden" value="541a3a95-ab27-48e1-8679-60a7d149dee7" /><input id="HomeType" name="HomeType" type="hidden" value="Single Family Home" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 443px;">
+ <div class="align-left center lead-form-sidebar-section" data-cta="Request Information" data-sidebar-section="0">
+ <div>
+
+ <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="">
+ </div>
+
+ <div class="form-field no-label-errors" style="margin-top: 1px">
+ <label for="fullname_sidebar"></label>
+ <input type="text"
+ name="FormFullName"
+ id="fullname_sidebar"
+ placeholder="Full Name"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required." data-parsley-trigger="blur"
+ maxlength="60"
+ data-parsley-filter-emoji=""
+ >
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormEmailAddress"
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="phone_sidebar">Phone Number</label>
+ <input class="gami-tel" type="tel"
+ autocomplete="tel-national"
+ name="FormPhoneNumber"
+ id="phone_sidebar"
+ placeholder="Phone Number" +
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ value=""
+
+ data-parsley-phone-number="" data-parsley-trigger="blur"
+ maxlength="25">
+ </div>
+
+ <div class="form-field no-label-errors">
+ <label for="comments_sidebar">Questions or Comments</label>
+ <textarea rows="5"
+ name="FormComments"
+ id="comments_sidebar"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000">Please send me information about 7720 Bent Gale Road</textarea>
+ </div>
+ </div>
+ <div>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox hide" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input data-parsley-multiple="visit_sidebar" name="visit_sidebar" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to plan a visit</span>
+ </label>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormEmailOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSAssociateCommunicationsOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" data-sidebar-section="1" tabindex="-1">
+ <div>
+ <h4>Plan a visit</h4>
+ <p>Select your preferred day and time and we’ll help set up the perfect visit.</p>
+ </div>
+ <div>
+ <div class="select no-label-errors">
+ <label for="tripday_sidebar"> </label>
+ <div class="select-wrap">
+<select data-nested-select="#select-triptime-block-sidebar" data-parsley-group="visit_sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+
+ <div class="select no-label-errors">
+ <label for="triptime_sidebar"> </label>
+ <div class="select-wrap">
+<select data-parsley-group="visit_sidebar" id="triptime_sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" dta-cta="Continue" data-sidebar-section="2" data-agent-section tabindex="-1">
+
+ <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0">
+ <div class="align-left center lead-form-sidebar-section" data-sidebar-section="0">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button form-submit">
+ <span class="button-text">Request Information</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-left lead-form-sidebar-section right" data-sidebar-section="1">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit" disabled tabindex="-1">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="2">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button" disabled tabindex="-1">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit" disabled tabindex="-1">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+ </div>
+ </div>
+</form> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 25px;">
+ <div class="align-center center lead-form-sidebar-section" data-sidebar-section="0">
+ <button class="button-plain small" data-open-modal="privacy-policy-modal" href="javascript:void()">Privacy Policy</button>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="1">
+ <button class="button-plain small" data-sidebar-nav="0" tabindex="-1">« Go Back</button>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <!-- THANK YOU MESSAGE -->
+ <div class="lead-form-container-success">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-success lead-form-sidebar-header-image">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" data-parsley-validate="" method="POST" name="thanksyou_sidebar" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+ <div>
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+ <div class="form-field form-field-password">
+ <label for="password"> </label>
+ <input data-parsley-required-message="Password is required." data-parsley-valid-password="" id="password" minlength="8" name="password" placeholder="Password" required="" type="password" data-parsley-filter-emoji="" data-parsley-trigger="blur">
+ <button class="password-input-change" data-input-change="" type="button">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)" tabindex="0">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">
+ Create Account
+ </span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ <h3 class="h3 preview-box__header">
+ Incentives
+ </h3>
+ <a class="incentive incentive__sidebar--simple" href="/new-homes/texas/dallas-fort-worth-metroplex/incentives/lower-payments">
+ <div class="incentive-background">
+ <img data-dam-generated alt="Lower Payments" height="1200" loading="eager" sizes="(min-width: 64rem) 328px, 100vw" src="https://dam.mihomes.com/media/3398695/50421.jpeg" srcset="https://dam.mihomes.com/media/3398695/50398.jpeg?timestamp=2025-07-15T17%3A06%3A54.6851490 300w, https://dam.mihomes.com/media/3398695/50397.jpeg?timestamp=2025-07-15T17%3A06%3A53.2195117 600w, https://dam.mihomes.com/media/3398695/50423.jpeg?timestamp=2025-07-15T17%3A07%3A01.3602581 900w, https://dam.mihomes.com/media/3398695/50396.jpeg?timestamp=2025-07-15T17%3A06%3A51.6143482 1200w, https://dam.mihomes.com/media/3398695/50421.jpeg?timestamp=2025-07-15T17%3A06%3A59.7040981 1800w, https://dam.mihomes.com/media/3398695/50422.jpeg?timestamp=2025-07-15T17%3A07%3A00.6417884 2400w" title="LowerPayments-Header-1800x430" width="1800" class="cover-image cover-image--abs" />
+ <div class="incentive__badge">
+<img data-dam-generated alt="Lower Payments" height="250" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3398693/50420.png?timestamp=2025-09-05T14%3A20%3A10.9917892" srcset="https://dam.mihomes.com/media/3398693/50399.png?timestamp=2025-07-15T17%3A09%3A05.6165736 300w, https://dam.mihomes.com/media/3398693/50420.png?timestamp=2025-09-05T14%3A20%3A10.9917892 600w" title="Low Payments Icon 250x250" width="250" class="incentive__badge-background" maxwidth="2400" /> </div>
+ </div>
+ <div class="incentive-inner">
+ <span class="incentive-title--wrapper">
+ <p class="incentive-title">Move In Now, Receive Lower Payments</p>
+ </span>
+ <p class="incentive-sub-headline">A high-quality home doesn't have to mean a higher payment. For a limited time, secure a 2/1 buydown with first-year rates as low as 2.875%* / 5.632% APR* on a 30-year fixed FHA loan through M/I Financial, LLC. Increase your home-buying power and lower your rate today.</p>
+ <p class="incentive-button--wrapper">
+ <span class="button button-small" href="/new-homes/texas/dallas-fort-worth-metroplex/incentives/lower-payments">
+ <span class="button-text uppercase">View Details</span>
+ </span>
+ </p>
+ </div>
+ </a>
+
+</div>
+</section>
+
+ <div id="design" class="box box-full box-no-padding-bottom" data-subnav-page-link="Design Options">
+ <div class="content-inner-centered">
+ <h2>Add the perfect finishing touch</h2>
+ <p class="subtitle content-inner-centered-narrow negative-top">
+ Put your personal touch on these Quick Move-In Homes with some selections from our Design Studio.
+ </p>
+ <div class="button-tooltip-wrapper">
+ <a class="button button-tooltip event-click" href="https://edc.envisionoptions.com/browser.aspx?NHTNumber=MIHOMES&Loc1=100&Lev1=CORP&Loc2=267&Lev2=DIV&HomeNumber=13D21E&Page=Confirmselection&utm_source=mihomes.com&utm_campaign=&utm_content=mobberly-farms-Aster-7720-Bent-Gale-Road&utm_term=" target="_blank" data-event-category=OptionsGallery
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ See This Home's Options
+ </a>
+
+
+ </div>
+ <a class="button" href="/design/design-studio">
+ <span class="button-text">
+ Visit a Design Studio
+ </span>
+ </a>
+ </div>
+ </div>
+ <div class="box box-full box-no-padding-top">
+ <div class="contained-width">
+ <hr class="hr-even">
+
+ <h4>Incentives</h4>
+ <article class="preview-box ">
+ <a class="preview-box-link" href="/new-homes/texas/dallas-fort-worth-metroplex/incentives/lower-payments">
+ <div class="preview-box__image preview-box__preview one-third">
+ <img data-dam-generated alt="Lower Payments" height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3398695/50421.jpeg" srcset="https://dam.mihomes.com/media/3398695/50398.jpeg?timestamp=2025-07-15T17%3A06%3A54.6851490 300w, https://dam.mihomes.com/media/3398695/50397.jpeg?timestamp=2025-07-15T17%3A06%3A53.2195117 600w, https://dam.mihomes.com/media/3398695/50423.jpeg?timestamp=2025-07-15T17%3A07%3A01.3602581 900w" title="LowerPayments-Header-1800x430" width="1800" class="cover-image" maxwidth="900" />
+ </div>
+ <div class="preview-box__content">
+ <h3 class="h3 preview-box__header">
+ Move In Now, Receive Lower Payments
+
+
+ </h3>
+ <p class="preview-box__text">A high-quality home doesn't have to mean a higher payment. For a limited time, secure a 2/1 buydown with first-year rates as low as 2.875%* / 5.632% APR* on a 30-year fixed FHA loan through M/I Financial, LLC. Increase your home-buying power and lower your rate today.</p>
+ <p>
+ <span class="button-plain button-plain-alt" href="/new-homes/texas/dallas-fort-worth-metroplex/incentives/lower-payments">View Details »</span>
+ </p>
+ </div>
+ </a>
+ </article>
+ </div>
+ </div>
+
+ <div id="floor" class="box box-full box-last event-inview" data-subnav-page-link="FloorPlan" data-event-category=Floorplan
+ data-event-action=scroll
+ data-event-label=view
+>
+ <div class="content-inner-centered content-inner-centered--mobile">
+<img data-dam-generated alt="Aster Floorplan" height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4733724/50421.jpeg?timestamp=2026-05-11T22%3A01%3A52.4308789" srcset="https://dam.mihomes.com/media/4733724/50398.jpeg?timestamp=2026-05-11T22%3A01%3A51.4075035 300w, https://dam.mihomes.com/media/4733724/50397.jpeg?timestamp=2026-05-11T22%3A01%3A50.9570927 600w, https://dam.mihomes.com/media/4733724/50423.jpeg?timestamp=2026-05-11T22%3A01%3A52.9778592 900w, https://dam.mihomes.com/media/4733724/50396.jpeg?timestamp=2026-05-11T22%3A01%3A50.9249791 1200w, https://dam.mihomes.com/media/4733724/50421.jpeg?timestamp=2026-05-11T22%3A01%3A52.4308789 1800w, https://dam.mihomes.com/media/4733724/50422.jpeg?timestamp=2026-05-11T22%3A01%3A52.4944990 2400w" title="DFW-aster-FGH-30smartseries-print" width="1800" class="cover-image cover-image--abs" /> <h2>Floorplan Options for Your New Home</h2>
+ <p class="content-inner-centered-narrow negative-top subtitle">The Aster accommodates a variety of household living arrangements with its highly desired flexibility and modern design. Explore the many possibilities in the popular Aster plan.</p>
+ <a target="_blank" class="button floor-plan-options__button event-click" href="https://rifp.ml3ds-icon.com/#/floorplan/525828?pcoLink=67289&pco=1455195%2c1455196&reverseFloorPlan=true" data-event-category=Floorplan
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <svg class="icon icon-fullscreen" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#fullscreen"></use>
+</svg>
+ <span class="button-text">
+ Show Floorplan
+ </span>
+ </a>
+ </div>
+ <section class="floor-plan-options">
+ <iframe loading="lazy" id="floor-plan" data-fullsize class="floor-plan-options__iframe" data-src="https://rifp.ml3ds-icon.com/#/floorplan/525828?pcoLink=67289&pco=1455195%2c1455196&reverseFloorPlan=true" scrolling="no" style="overflow: hidden">
+ <p>Your browser does not support iframes.</p>
+ </iframe>
+ </section>
+ </div>
+
+ <div class="box box-full box-no-padding-top-bottom " id="">
+ <div class="content-inner-centered">
+ <div class="leadgenTitleBlock">
+ <h2 class="h2">Ready to plan a visit? We can help</h2>
+ <p class="subtitle marginless">Send us your preferred time to stop by and a sales representative will take care of the rest</p>
+ </div>
+ <section class="lead-form">
+ <div id="lead-form-block-user-info" class="lead-form-container lead-form-block" data-lead-form-sidebar="">
+ <aside class="lead-form-block__details" style="">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="Headshot" height="600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4527384/50397.jpeg?timestamp=2026-03-17T14%3A40%3A26.7276996" srcset="https://dam.mihomes.com/media/4527384/50398.jpeg?timestamp=2026-03-17T14%3A40%3A26.7375435 300w, https://dam.mihomes.com/media/4527384/50397.jpeg?timestamp=2026-03-17T14%3A40%3A26.7276996 600w, https://dam.mihomes.com/media/4527384/50423.jpeg?timestamp=2026-03-17T14%3A40%3A28.7048958 900w, https://dam.mihomes.com/media/4527384/50396.jpeg?timestamp=2026-03-17T14%3A40%3A26.6747850 1200w, https://dam.mihomes.com/media/4527384/50421.jpeg?timestamp=2026-03-17T14%3A40%3A27.5566686 1800w, https://dam.mihomes.com/media/4527384/50422.jpeg?timestamp=2026-03-17T14%3A40%3A28.0977903 2400w" title="DFW-Headshot-ChandlerWall" width="600" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="Headshot" height="600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4527383/50397.jpeg?timestamp=2026-03-17T14%3A40%3A26.7308400" srcset="https://dam.mihomes.com/media/4527383/50398.jpeg?timestamp=2026-03-17T14%3A40%3A26.7901979 300w, https://dam.mihomes.com/media/4527383/50397.jpeg?timestamp=2026-03-17T14%3A40%3A26.7308400 600w, https://dam.mihomes.com/media/4527383/50423.jpeg?timestamp=2026-03-17T14%3A40%3A29.3188334 900w, https://dam.mihomes.com/media/4527383/50396.jpeg?timestamp=2026-03-17T14%3A40%3A26.7882196 1200w, https://dam.mihomes.com/media/4527383/50421.jpeg?timestamp=2026-03-17T14%3A40%3A28.1752043 1800w, https://dam.mihomes.com/media/4527383/50422.jpeg?timestamp=2026-03-17T14%3A40%3A28.7793584 2400w" title="DFW-Headshot-BeckyKim" width="600" class="cover-image" />
+ </div>
+ </div>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=9726194200'>(972) 619-4200</a>
+ </p>
+ </aside>
+<form action="/api/LeadGenFormBlock/LeadGenFormBlock" class="lead-form-block__form" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="8643aa76-9cb0-4933-8d13-a9f27fc9e5bc" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Model" /><input id="PostType" name="PostType" type="hidden" value="block" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:28 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="FormAgentEmailAddress" name="FormAgentEmailAddress" type="hidden" value="" /><input id="ItemId" name="ItemId" type="hidden" value="541a3a95-ab27-48e1-8679-60a7d149dee7" /><input id="HomeType" name="HomeType" type="hidden" value="Single Family Home" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="" hidden>
+ </div>
+ <div class="form-field">
+ <label for="fullname">Full Name </label>
+ <input type="text"
+ name="FormFullName"
+ placeholder="John Doe"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required."
+ maxlength="60"
+
+ data-parsley-filter-emoji=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="emailaddress">Email Address </label>
+ <input type="email"
+ name="FormEmailAddress" ,
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field">
+ <label for="phone">Phone Number </label>
+ <input class="gami-tel" type="tel"
+ name="FormPhoneNumber"
+ id="phone"
+ placeholder="5555555555"
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ maxlength="25"
+ value=""
+
+ data-parsley-phone-number=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="input">Questions or Comments </label>
+ <textarea rows="5"
+ name="FormComments"
+ id="input"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000"></textarea>
+ </div>
+ <div class="lead-form-block__contacts">
+ <div class="form-field select" {="">
+ <label for="tripday_block">Preferred Day <em> (Optional)</em></label>
+ <div class="select-wrap">
+ <div class="select-wrap">
+<select date-nested-select="#select-triptime-block-sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+
+ <div class="form-field select" {="">
+ <label for="triptime_block">Preferred Time <em> (Optional)</em></label>
+ <div class="select-wrap">
+
+<select id="select-triptime-block-sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-block__checkboxes-container">
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormEmailOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSAssociateCommunicationsOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ <div class="lead-form-block__submit">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+
+ <span class="align-center">
+ <a class="button-plain small" data-open-modal="privacy-policy-modal">Privacy Policy</a>
+ </span>
+ </div>
+</form> </div>
+ <div id="lead-form-block-agent-form" class="lead-form-container lead-form-block" data-lead-form-sidebar="" data-agent-section style="display: none;">
+ <figure class="lead-form lead-form-sidebar">
+ <div id="form-agent-header" class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+<form action="/new-homes/texas/dallas-fort-worth-metroplex/pilot-point/mobberly-farms/aster-plan/7720-bent-gale-road" class="lead-form-sidebar-section" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""> <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ id="block-agent-email"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+</form> </div>
+ </figure>
+ </div>
+
+
+
+ <div class="lead-form-container-success">
+ <figure class="lead-form lead-form-sidebar">
+ <div class="lead-form-container-success" style="display: block">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" method="POST" name="thanksyou_sidebar" data-parsley-validate="" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+
+ <div>
+ <div class="form-field form-field-password">
+ <label for="password"></label>
+ <input type="password"
+ name="password"
+ id="password"
+ placeholder="Password"
+ data-parsley-valid-password=""
+ minlength="8"
+ required=""
+ data-parsley-required-message="Password is required."
+ data-parsley-trigger="blur">
+
+ <button type="button" class="password-input-change" data-input-change="">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span tabindex="0"
+ data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">Create Account</span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ </div>
+ </section>
+ </div>
+ </div>
+
+ <div class="box box-centered box-full box-transparent" id="neraby">
+ <div class="box-full-inner">
+ <h3 class="h2">
+ Other Quick Move-In Homes
+ </h3>
+
+ <div class="featured-grid">
+ <div class="row">
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/texas/dallas-fort-worth-metroplex/pilot-point/mobberly-farms/primrose-plan/14253-zealand-drive">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Primrose A Elevation" height="1800" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/317722/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/317722/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/317722/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/317722/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/317722/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/317722/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/317722/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="DFW-Primrose-ElevationA3-elev_DSK" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Primrose</p>
+ <p class="featured-grid-middle">14253 Zealand Drive, Pilot Point, Texas</p>
+ <p class="featured-grid-subtitle">Listed at $257,990</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/texas/dallas-fort-worth-metroplex/pilot-point/mobberly-farms/boxwood-plan/14138-bacton-road">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Boxwood Elevation B" height="1600" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/931201/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/931201/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/931201/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/931201/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/931201/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/931201/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/931201/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="DFW-Boxwood-ElevationB3M-elev_DSK" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Boxwood</p>
+ <p class="featured-grid-middle">14138 Bacton Road, Pilot Point, Texas</p>
+ <p class="featured-grid-subtitle">Listed at $298,990</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/texas/dallas-fort-worth-metroplex/pilot-point/mobberly-farms/magnolia-plan/14163-nullah-street">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Magnolia Elevation C" height="1800" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/277133/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/277133/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/277133/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/277133/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/277133/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/277133/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/277133/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="DFW-Magnolia-ElevationC3-elev-DSK" width="2400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Magnolia</p>
+ <p class="featured-grid-middle">14163 Nullah Street, Pilot Point, Texas</p>
+ <p class="featured-grid-subtitle">Listed at $309,990</p>
+ </a>
+</div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ </main>
+
+
+<footer class="main-footer">
+ <div class="main-footer-inner">
+ <ul class="horizontal-list">
+ <li><a href="https://apply.workable.com/mi-homes/" target="_blank" rel="noopener noreferrer" >Careers</a></li>
+ <li><a href="/support/warranty" >Warranty</a></li>
+ <li><a href="https://investors.mihomes.com/" rel="noopener noreferrer" title="Investor Relations" target="_blank" >Investors</a></li>
+ <li><a href="/events" >Events</a></li>
+ <li><a href="/incentives" >Incentives</a></li>
+ <li><a href="/agent/agent-info" >Agents & Brokers</a></li>
+ <li><a href="/resources" >Home Buying Resources</a></li>
+ <li><a href="/why-mi/journey" >Journey</a></li>
+ <li><a href="/blog/" >Blog</a></li>
+ </ul>
+ <ul class="horizontal-list">
+ <li><a href="/policies/privacy-policy" >Privacy Policy</a></li>
+ <li><a href="/policies/terms-of-use" >Terms of Use</a></li>
+ <li><a href="/subscriptions" >Manage Subscriptions</a></li>
+ <li><a href="/support/ccpa" >CCPA</a></li>
+ </ul>
+ <ul class="icon-list">
+ <li>
+<a href="https://www.instagram.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Instagram" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704717/50399.png" srcset="https://dam.mihomes.com/media/4704717/50399.png?timestamp=2026-05-04T18%3A56%3A58.4036491 300w, https://dam.mihomes.com/media/4704717/50420.png 600w" title="instagram" width="24" /></a> </li>
+ <li>
+<a href="https://www.facebook.com/MIHomesInc/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Facebook" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57191/50399.png" srcset="https://dam.mihomes.com/media/57191/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57191/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="facebook" width="24" /></a> </li>
+ <li>
+<a href="https://www.youtube.com/MIHomesInc" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Youtube" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704715/50399.png" srcset="https://dam.mihomes.com/media/4704715/50399.png?timestamp=2026-05-04T18%3A34%3A30.5730196 300w, https://dam.mihomes.com/media/4704715/50420.png 600w" title="youtube" width="24" /></a> </li>
+ <li>
+<a href="https://www.pinterest.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Pinterest" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57192/50399.png" srcset="https://dam.mihomes.com/media/57192/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57192/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="pintrest" width="24" /></a> </li>
+ <li>
+<a href="http://www.houzz.com/pro/mi-homes/m-i-homes" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Houzz" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57193/50399.png" srcset="https://dam.mihomes.com/media/57193/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57193/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="houzz" width="24" /></a> </li>
+ <li>
+<a href="http://portal.hud.gov" class="" rel="me" target="_blank" ><img data-dam-generated alt="Equal Housing" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704718/50399.png" srcset="https://dam.mihomes.com/media/4704718/50399.png?timestamp=2026-05-04T19%3A02%3A51.2896193 300w, https://dam.mihomes.com/media/4704718/50420.png 600w" title="equal-housing" width="28" /></a> </li>
+ </ul>
+ <p class="main-footer-copyright">
+ Copyright 2026, M/I Homes, Inc. All rights reserved.
+ </p>
+ <p id="division-disclaimer" class="main-footer-copyright">
+
+
+ </p>
+ </div>
+</footer>
+</div>
+<div aria-label="Cookie Consent" role="dialog" id="ccpa-modal" class="ccpa-modal">
+ <p>By browsing, you accept our <a href="/policies/terms-of-use">terms of use</a> and <a href="/policies/privacy-policy">privacy policy</a>.</p>
+ <button class="button" type="button">OK</button>
+</div>
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/modals.css?ver=202608092245" rel="stylesheet" fetchpriority="low">
+ <div class="modal modal-wide box" data-modal="" id="privacy-policy-modal">
+ <button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div id="privacy-policy-text"></div>
+</div><div class="modal box box-wide box-paddingless" data-modal="" id="mortgage-payment-calculator-modal">
+<button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+</button>
+ <div id="mortgage-payment-calculator" data-price="299990" data-values="d96345ac-6d30-4864-8d05-71bbebc4cf06"></div>
+</div>
+ <div class="modal" data-modal id="search-modal">
+ <form action="/search" class="search-form ">
+ <input class="search-form-input" id="search-form-input" name="search" placeholder="Search M/I Homes"
+ type="search" />
+ <button class="button search-form-clear-button" type="button">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+
+ </button>
+ <button class="button search-form-submit" type="submit">
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ <div class="search-form-results">
+ <div class="search-form-results-list"></div>
+ </div>
+ </form>
+ </div>
+</div>
+
+<!-- toolkit scripts -->
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit_common.js?ver=202608092245"></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit.js?ver=202608092245"></script>
+ <script src="https://cdn.mihomes.com/assets/toolkit/js/product.js?ver=202608092245"></script>
+ <script defer src="https://cdn.mihomes.com/assets/toolkit/js/mortgage-calculator.js?ver=202608092245"></script>
+<script>window.jQuery = window.$ = window.JQUERY;</script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/common.js?ver=202608092245" defer></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/favorites.js?ver=202608092245" defer></script>
+
+
+<script>
+ var w = Math.max(
+ document.body.scrollWidth,
+ document.documentElement.scrollWidth,
+ document.body.offsetWidth,
+ document.documentElement.offsetWidth,
+ document.documentElement.clientWidth
+ );
+ window.setCookie('screen-width', encodeURIComponent(w), { expires: 14, path: "/" })
+ </script>
+
+<script>
+
+
+</script>
+<script type="text/javascript">
+ const millisecondsPerDay = 86400000;
+ const millisecondsPerHour = millisecondsPerDay / 24;
+ const millisecondsPerMinute = millisecondsPerHour / 60;
+ const millisecondsPerSecond = 1000;
+ function addLeadingZero(val) {
+ if(val.toString().length < 2) {
+ return '0'+val;
+ }
+ return val;
+ }
+ function change() {
+ const list = Array.from(document.querySelectorAll('[data-countdown]'));
+ const now = new Date().getTime();
+ list.forEach((el) => {
+ const d = new Date(el.getAttribute('data-countdown')).getTime();
+ let diff = d - now;
+ let days = 0;
+ let hours = 0;
+ let minutes = 0;
+ let seconds = 0;
+ if(diff > 0) {
+ days = Math.floor(diff / millisecondsPerDay);
+ diff = diff - (days * millisecondsPerDay)
+ hours = Math.floor(diff/millisecondsPerHour);
+ diff = diff - (hours * millisecondsPerHour)
+ minutes = Math.floor(diff/millisecondsPerMinute);
+ diff = diff - (minutes * millisecondsPerMinute);
+ seconds = Math.floor(diff/millisecondsPerSecond);
+ }
+ try {
+ el.querySelector('.days').innerText = addLeadingZero(Math.max(days, 0));
+
+ } catch (e) {}
+ try {
+ el.querySelector('.hours').innerText = addLeadingZero(Math.max(hours, 0));
+ } catch(e) {}
+ try {
+ el.querySelector('.minutes').innerText = addLeadingZero(Math.max(minutes, 0));
+ } catch (e) {}
+ try {
+ el.querySelector('.seconds').innerText = addLeadingZero(Math.max(seconds, 0));
+ } catch (e) {}
+
+ });
+ setTimeout(()=>requestAnimationFrame(change), millisecondsPerSecond);
+ }
+ requestAnimationFrame(change);
+</script>
+<script>(function(){function c(){var b=a.contentDocument||(a.contentWindow&&a.contentWindow.document);if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'a29495d26f66ad7f',t:'MTc4NjQyMzQ2Nw=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
+
+</html>
\ No newline at end of file
diff --git a/collectors/mi-homes/fixtures/homes/h9.html b/collectors/mi-homes/fixtures/homes/h9.html
new file mode 100644
index 00000000..f5e5b48d
--- /dev/null
+++ b/collectors/mi-homes/fixtures/homes/h9.html
@@ -0,0 +1,2388 @@
+
+
+<!doctype html>
+<html lang="en">
+
+<head>
+
+ <script>
+ var G = G || {};
+ G.pingForEmployee = true;
+ </script>
+
+
+<meta name="VIcurrentDateTime" content="639220202709095921" />
+<meta name="VirtualFolder" content="/" />
+<script type="text/javascript" src="/layouts/system/VisitorIdentification.js"></script>
+
+
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" name="viewport">
+ <title>MLS #7120112 - 673 Tulare Terrace Newport, MN 55055 - M/I Homes</title>
+ <!-- font -->
+ <link rel="preconnect" href="https://cdn.mihomes.com" crossorigin>
+ <link rel="preconnect" href="https://use.typekit.net" crossorigin>
+
+
+
+<!-- Google Tag Script -->
+
+ <script id="js-GTM-script">
+ window.dataLayer = window.dataLayer || [];
+ window.dataLayer.push({
+ "PageType": "Spec",
+ "MIAccount": "No",
+ "Division": "Minneapolis / St Paul"
+});
+
+(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=
+'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
+})(window,document,'script','dataLayer','GTM-M2JH3QJ');
+ </script>
+
+
+<!-- End Google Tag Script -->
+ <meta name="referrer" content="always" />
+
+ <link href="https://use.typekit.net/sgt3sit.css" rel="stylesheet" type="text/css" media="print" onload="this.media='all'" id="fonts-loaded" />
+
+<script>
+ try {
+ document.fonts.ready.then(() => {
+ document.body.classList.add('body--fonts-loaded');
+ if(window.setCookiie) {
+ window.setCookie('fonts-cached', 'true', { expires: 7, path: '/' });
+ }
+ });
+ } catch (e) { }
+</script>
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/toolkit.css?ver=202608092245" type="text/css" rel="stylesheet">
+ <!-- conditionally load css for blog -->
+
+ <script>
+ window.environment = "Prod";
+ window.googleApiKey = "REDACTED-THIRD-PARTY-PUBLIC-KEY";
+ </script>
+ <script>
+
+ window.maps =[];
+ window.AssetRootUrl = 'https://cdn.mihomes.com';
+
+ </script>
+
+ <meta name="twitter:card" content="summary" />
+<meta name="twitter:site" content="@mihomes" />
+<meta name="twitter:creator" content="@mihomes">
+
+<meta property="og:site_name" content="https://www.mihomes.com" />
+<meta property="og:type" content="article" />
+<meta property="og:url" content="https://www.mihomes.com/new-homes/minnesota/twin-cities/newport/cherrywood/hayward-plan/673-tulare-terrace" />
+
+
+ <meta property="og:title" content="673 Tulare Terrace" />
+ <meta name="twitter:title" content="673 Tulare Terrace" />
+
+
+
+ <meta property="og:description" content="Welcome to 673 Tulare Terrace in Newport, Minnesota—a beautifully designed new construction townhome by M/I Homes, offering modern comfort and low-maintenance living in a thoughtfully planned community. With 1,722 square feet across two stories, this home features 3 bedrooms and 2.5 bathrooms, providing the ideal balance of space and functionality." />
+ <meta name="twitter:description" content="Welcome to 673 Tulare Terrace in Newport, Minnesota—a beautifully designed new construction townhome by M/I Homes, offering modern comfort and low-maintenance living in a thoughtfully planned community. With 1,722 square feet across two stories, this home features 3 bedrooms and 2.5 bathrooms, providing the ideal balance of space and functionality." />
+ <meta name="description" content="Welcome to 673 Tulare Terrace in Newport, Minnesota—a beautifully designed new construction townhome by M/I Homes, offering modern comfort and low-maintenance living in a thoughtfully planned community. With 1,722 square feet across two stories, this home features 3 bedrooms and 2.5 bathrooms, providing the ideal balance of space and functionality." />
+
+
+
+ <link rel="canonical" href="https://www.mihomes.com/new-homes/minnesota/twin-cities/newport/cherrywood/hayward-plan/673-tulare-terrace">
+ <link defer href="https://dam.mihomes.com/media/4179716/50399.png" rel="icon" type="image/vnd.microsoft.icon" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="57x57"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-57x57.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="114x114"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-114x114.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="72x72"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-72x72.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="144x144"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-144x144.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="60x60"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-60x60.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="120x120"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-120x120.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="76x76"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-76x76.png" />
+ <link defer rel="apple-touch-icon-precomposed" sizes="152x152"
+ href="https://cdn.mihomes.com/assets/favicons/images/apple-touch-icon-152x152.png" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-196x196.png"
+ sizes="196x196" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-96x96.png"
+ sizes="96x96" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-32x32.png"
+ sizes="32x32" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-16x16.png"
+ sizes="16x16" />
+ <link defer rel="icon" type="image/png" href="https://cdn.mihomes.com/assets/favicons/images/favicon-128.png"
+ sizes="128x128" />
+ <meta name="application-name" content=" " />
+ <meta name="msapplication-TileColor" content="#FFFFFF" />
+ <meta name="msapplication-TileImage" content="https://cdn.mihomes.com/assets/favicons/images/mstile-144x144.png" />
+ <meta name="msapplication-square70x70logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-70x70.png" />
+ <meta name="msapplication-square150x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-150x150.png" />
+ <meta name="msapplication-wide310x150logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x150.png" />
+ <meta name="msapplication-square310x310logo"
+ content="https://cdn.mihomes.com/assets/favicons/images/mstile-310x310.png" />
+
+ <script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Organization",
+ "foundingDate": "1976",
+ "duns": "071649743",
+ "founders": [
+ {
+ "@type": "Person",
+ "name": "Melvin Schottenstein"
+ },
+ {
+ "@type": "Person",
+ "name": "Irving Schottenstein"
+ }
+ ],
+ "employees": [
+ {
+ "@type": "Person",
+ "name": "Robert H. Schottenstein",
+ "jobTitle": "Chairman, President, and CEO"
+ }
+ ],
+ "sameAs": [
+ "https://www.facebook.com/MIHomesInc",
+ "https://twitter.com/mihomes",
+ "https://www.instagram.com/mihomes/",
+ "https://www.youtube.com/MIHomesInc",
+ "https://www.houzz.com/pro/mi-homes/m-i-homes",
+ "https://www.pinterest.com/mihomes/"
+ ],
+ "logo": {
+ "@type": "ImageObject",
+ "name": "M/I Homes logo",
+ "contentUrl": "https://dam.mihomes.com/media/39664/50399.png"
+ },
+ "name": "M/I Homes",
+ "description": "M/I Homes, Inc. founded in 1976, M/I Homes is one of nation's leading builders of single family homes. M/I has established an exemplary reputation based on a strong commitment to superior customer service, innovative design, quality construction and premium locations. Listed on the New York Stock Exchange, M/I Homes serves a broad segment of the housing market including first-time, move-up, luxury and empty nester buyers.",
+ "url": "https://www.mihomes.com",
+ "isicv4": "4100"
+}</script>
+ <script defer src="https://www.youtube.com/iframe_api"></script>
+ <script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
+ <script>
+ window.addEventListener('load', () => {
+ const swUrl = "https://cdn.mihomes.com/assets/workers/product-page-service-worker.js"
+ navigator.serviceWorker
+ .register(swUrl, {
+ scope: '/'
+ })
+ .then(registration => {
+ console.log('Service Worker registered with scope:', registration.scope);
+ })
+ .catch(error => {
+ console.error('Error during service worker registration:', error);
+ });
+ });
+ </script>
+</head>
+
+<body class="no-js body--home-template">
+
+
+
+<!-- Google Tag Manager --><!-- Global site tag (gtag.js) - Google Analytics -->
+
+ <noscript>
+ <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M2JH3QJ"
+ height="0" width="0" style="display: none; visibility: hidden">
+ </iframe>
+ </noscript>
+
+<!-- End Google Tag Manager GTMM2JH3QJ -->
+<a class="skip-link" href="#content">Skip To Content</a>
+
+<div class="page-container">
+ <div id="overview" data-subnav-page-link="Overview"></div>
+
+
+<header class="main-header">
+ <div class="main-header-inner">
+<a href="/" class="main-header-logo" > <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png">
+<svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg></a> <meta itemprop="url" content="https://dam.mihomes.com/media/39664/50399.png" />
+ <button class="main-header-open-nav" data-open-nav="" title="Toggle Hamburger Navigation">
+ <svg class="icon icon-mi-logo-icon-only" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#mi-logo-icon-only"></use>
+</svg>
+ <svg class="icon icon-menu" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#menu"></use>
+</svg>
+ </button>
+ <div class="main-header-nav-items" data-a11y-focus data-nav-tray>
+ <nav class="main-nav">
+ <ul>
+ <li>
+
+ <a href="/" class="main-nav-link mobile-only" >Home</a>
+ </li>
+ <li>
+
+ <a href="/new-homes/minnesota/twin-cities" class="main-nav-link find-a-home-link" >Find a Home</a>
+ </li>
+ <li>
+
+ <a href="/about-us/overview" class="main-nav-link " >About</a>
+ </li>
+ <li>
+
+ <a href="/why-mi/overview" class="main-nav-link " >Why M/I</a>
+ </li>
+ <li>
+
+ <a href="/incentives" class="main-nav-link " >Incentives</a>
+ </li>
+ <li>
+
+ <a href="/financing" class="main-nav-link " >Financing</a>
+ </li>
+ <li>
+
+ <a href="/support/warranty" class="main-nav-link " >Warranty</a>
+ </li>
+ <li>
+
+ <a href="/support" class="main-nav-link " >Contact</a>
+ </li>
+ <li>
+
+ <a href="/resources" class="main-nav-link " >Resources</a>
+ </li>
+ </ul>
+ </nav>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ <div class="aux-nav">
+ <ul>
+ <li data-a11y-focus>
+ <a href="/account/register" class="main-nav-link" >Sign Up</a>
+ </li>
+ <li data-a11y-focus>
+ <a href="/account/login" class="main-nav-link" >Log In</a>
+ </li>
+ </ul>
+ </div>
+ </div>
+ <button class="main-header-close-nav" data-close-nav>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div class="search-trigger">
+ <button data-open-modal="search-modal" type="button" title="Open Search">
+ <span class="search-trigger-text">Search</span>
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ </div>
+ </div>
+</header>
+ <div class="breadcrumbs-bar">
+ <div class="breadcrumbs-wrapper">
+ <nav class="breadcrumbs">
+ <a class="button-plain" href="/">Home</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/minnesota/communities">Minnesota</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/minnesota/twin-cities/communities">Twin Cities</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/minnesota/twin-cities/newport">Newport</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/minnesota/twin-cities/newport/cherrywood">Cherrywood</a>
+ <span class="seperator"> • </span>
+ <a class="button-plain" href="/new-homes/minnesota/twin-cities/newport/cherrywood/hayward-plan">Hayward</a>
+ <span class="seperator"> • </span>
+ <span>673 Tulare Terrace</span>
+ </nav>
+ </div>
+ </div>
+ <script>var bar = document.querySelector('.breadcrumbs-bar'); bar.setAttribute('style', 'height:' + bar.getBoundingClientRect().height + 'px');</script>
+<script type="application/ld+json">
+{
+"@context": "https://schema.org",
+"@type": "BreadcrumbList",
+"itemListElement":[
+{
+"@type":"ListItem",
+"position":1,
+"name":"Minnesota",
+"item":"https://www.mihomes.com/new-homes/minnesota/communities"
+},
+{
+"@type":"ListItem",
+"position":2,
+"name":"Twin Cities",
+"item":"https://www.mihomes.com/new-homes/minnesota/twin-cities/communities"
+},
+{
+"@type":"ListItem",
+"position":3,
+"name":"Newport",
+"item":"https://www.mihomes.com/new-homes/minnesota/twin-cities/newport"
+},
+{
+"@type":"ListItem",
+"position":4,
+"name":"Cherrywood",
+"item":"https://www.mihomes.com/new-homes/minnesota/twin-cities/newport/cherrywood"
+},
+{
+"@type":"ListItem",
+"position":5,
+"name":"Hayward",
+"item":"https://www.mihomes.com/new-homes/minnesota/twin-cities/newport/cherrywood/hayward-plan"
+},
+{
+"@type":"ListItem",
+"position":6,
+"name":"673 Tulare Terrace",
+
+}
+]
+}
+</script>
+
+
+ <div class="page-notice-wrapper" id="page-notification"></div>
+ <main class="main-content" id="content" tabindex="0">
+
+<ul class="product-flags">
+ <li>
+
+
+<div class="product-flag product-flag-green " style="">
+ <span class="product-flag-text">Ready Now</span>
+</div> </li>
+ <li>
+ <a href="https://www.mihomes.com/new-homes/minnesota/twin-cities/incentives/2026-quick-move-in-rates" data-is="me">
+
+
+<div class="product-flag " style="color: #35603d">
+ <span class="product-flag-text">Move In Now, Pay Less</span>
+</div>
+ </a>
+ </li>
+</ul>
+<div class="image-banner">
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <img data-dam-generated alt="Front Exterior" height="1050" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/5127253/50422.jpeg?timestamp=2026-08-07T14%3A27%3A41.8430815" srcset="https://dam.mihomes.com/media/5127253/50398.jpeg?timestamp=2026-08-07T14%3A27%3A40.2879473 300w, https://dam.mihomes.com/media/5127253/50397.jpeg?timestamp=2026-08-07T14%3A27%3A39.6443115 600w, https://dam.mihomes.com/media/5127253/50423.jpeg?timestamp=2026-08-07T14%3A27%3A42.7052366 900w, https://dam.mihomes.com/media/5127253/50396.jpeg?timestamp=2026-08-07T14%3A27%3A37.2542798 1200w, https://dam.mihomes.com/media/5127253/50421.jpeg?timestamp=2026-08-07T14%3A27%3A40.5007237 1800w, https://dam.mihomes.com/media/5127253/50422.jpeg?timestamp=2026-08-07T14%3A27%3A41.8430815 2400w" title="[L105-Z001]Front Exterior.2" width="1400" class="image-banner-item-gallery" fetchpriority="high" />
+ </a>
+ <div class="image-banner-more">
+ <a href="#product-gallery"
+ data-goto-slide="1"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="1"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Kitchen" height="1365" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5068384/50422.jpeg?timestamp=2026-07-27T20%3A13%3A47.3610730" srcset="https://dam.mihomes.com/media/5068384/50398.jpeg?timestamp=2026-07-27T20%3A13%3A40.8686555 300w, https://dam.mihomes.com/media/5068384/50397.jpeg?timestamp=2026-07-27T20%3A13%3A40.6637459 600w, https://dam.mihomes.com/media/5068384/50423.jpeg?timestamp=2026-07-27T20%3A13%3A51.5388750 900w, https://dam.mihomes.com/media/5068384/50396.jpeg?timestamp=2026-07-27T20%3A13%3A40.2975816 1200w, https://dam.mihomes.com/media/5068384/50421.jpeg?timestamp=2026-07-27T20%3A13%3A46.3986125 1800w, https://dam.mihomes.com/media/5068384/50422.jpeg?timestamp=2026-07-27T20%3A13%3A47.3610730 2400w" title="[L105-Z024]Kitchen.4" width="2048" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="2"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="2"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Family Room" height="1365" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5068383/50422.jpeg?timestamp=2026-07-27T20%3A14%3A36.2687768" srcset="https://dam.mihomes.com/media/5068383/50398.jpeg?timestamp=2026-07-27T20%3A14%3A29.4175910 300w, https://dam.mihomes.com/media/5068383/50397.jpeg?timestamp=2026-07-27T20%3A14%3A27.5436545 600w, https://dam.mihomes.com/media/5068383/50423.jpeg?timestamp=2026-07-27T20%3A14%3A37.5905393 900w, https://dam.mihomes.com/media/5068383/50396.jpeg?timestamp=2026-07-27T20%3A14%3A26.5597416 1200w, https://dam.mihomes.com/media/5068383/50421.jpeg?timestamp=2026-07-27T20%3A14%3A35.2657624 1800w, https://dam.mihomes.com/media/5068383/50422.jpeg?timestamp=2026-07-27T20%3A14%3A36.2687768 2400w" title="[L105-Z032]Family Room.3" width="2048" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="3"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="3"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Dining Room" height="1365" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5068382/50422.jpeg?timestamp=2026-07-27T20%3A14%3A04.0755443" srcset="https://dam.mihomes.com/media/5068382/50398.jpeg?timestamp=2026-07-27T20%3A13%3A55.2491918 300w, https://dam.mihomes.com/media/5068382/50397.jpeg?timestamp=2026-07-27T20%3A13%3A53.3489757 600w, https://dam.mihomes.com/media/5068382/50423.jpeg?timestamp=2026-07-27T20%3A14%3A07.2182316 900w, https://dam.mihomes.com/media/5068382/50396.jpeg?timestamp=2026-07-27T20%3A13%3A48.9290373 1200w, https://dam.mihomes.com/media/5068382/50421.jpeg?timestamp=2026-07-27T20%3A14%3A01.8508112 1800w, https://dam.mihomes.com/media/5068382/50422.jpeg?timestamp=2026-07-27T20%3A14%3A04.0755443 2400w" title="[L105-Z027]Dining Room.1" width="2048" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="4"
+ class="event-click image-banner-item gami-image-view"
+ data-gallery-item=""
+ data-sw="1000"
+ data-raw=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="4"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+<img data-dam-generated alt="Back Exterior" height="1050" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5127254/50422.jpeg?timestamp=2026-08-07T14%3A27%3A41.8964168" srcset="https://dam.mihomes.com/media/5127254/50398.jpeg?timestamp=2026-08-07T14%3A27%3A36.3029475 300w, https://dam.mihomes.com/media/5127254/50397.jpeg?timestamp=2026-08-07T14%3A27%3A34.8200312 600w, https://dam.mihomes.com/media/5127254/50423.jpeg?timestamp=2026-08-07T14%3A27%3A41.1049700 900w, https://dam.mihomes.com/media/5127254/50396.jpeg?timestamp=2026-08-07T14%3A27%3A32.3648625 1200w, https://dam.mihomes.com/media/5127254/50421.jpeg?timestamp=2026-08-07T14%3A27%3A40.2517456 1800w, https://dam.mihomes.com/media/5127254/50422.jpeg?timestamp=2026-08-07T14%3A27%3A41.8964168 2400w" title="[L105-Z005]Back Exterior.6" width="1400" class="image-banner-item-more" />
+ </a>
+ <a href="#product-gallery"
+ data-goto-slide="0"
+ class="third event-click image-banner-total gami-image-view"
+ data-gallery-item=""
+ data-gallery="simple-gallery-modal"
+ data-set-slide="0"
+ data-open-modal="simple-gallery-modal"
+ data-event-category=image-gallery
+ data-event-action=open
+ data-event-label=fullscreen
+>
+ <span class="button button-transparent">
+ View 37 Photos
+ </span>
+ </a>
+ </div>
+</div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Front Exterior" height="1050" loading="lazy" sizes="(min-width: 64rem) 50vw, (min-width: 48rem) 67vw, 100vw" src="https://dam.mihomes.com/media/5127253/50422.jpeg?timestamp=2026-08-07T14%3A27%3A41.8430815" srcset="https://dam.mihomes.com/media/5127253/50398.jpeg?timestamp=2026-08-07T14%3A27%3A40.2879473 300w, https://dam.mihomes.com/media/5127253/50397.jpeg?timestamp=2026-08-07T14%3A27%3A39.6443115 600w, https://dam.mihomes.com/media/5127253/50423.jpeg?timestamp=2026-08-07T14%3A27%3A42.7052366 900w, https://dam.mihomes.com/media/5127253/50396.jpeg?timestamp=2026-08-07T14%3A27%3A37.2542798 1200w, https://dam.mihomes.com/media/5127253/50421.jpeg?timestamp=2026-08-07T14%3A27%3A40.5007237 1800w, https://dam.mihomes.com/media/5127253/50422.jpeg?timestamp=2026-08-07T14%3A27%3A41.8430815 2400w" title="[L105-Z001]Front Exterior.2" width="1400" class="image-banner-item-gallery" fetchpriority="high" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Kitchen" height="1365" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5068384/50422.jpeg?timestamp=2026-07-27T20%3A13%3A47.3610730" srcset="https://dam.mihomes.com/media/5068384/50398.jpeg?timestamp=2026-07-27T20%3A13%3A40.8686555 300w, https://dam.mihomes.com/media/5068384/50397.jpeg?timestamp=2026-07-27T20%3A13%3A40.6637459 600w, https://dam.mihomes.com/media/5068384/50423.jpeg?timestamp=2026-07-27T20%3A13%3A51.5388750 900w, https://dam.mihomes.com/media/5068384/50396.jpeg?timestamp=2026-07-27T20%3A13%3A40.2975816 1200w, https://dam.mihomes.com/media/5068384/50421.jpeg?timestamp=2026-07-27T20%3A13%3A46.3986125 1800w, https://dam.mihomes.com/media/5068384/50422.jpeg?timestamp=2026-07-27T20%3A13%3A47.3610730 2400w" title="[L105-Z024]Kitchen.4" width="2048" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Family Room" height="1365" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5068383/50422.jpeg?timestamp=2026-07-27T20%3A14%3A36.2687768" srcset="https://dam.mihomes.com/media/5068383/50398.jpeg?timestamp=2026-07-27T20%3A14%3A29.4175910 300w, https://dam.mihomes.com/media/5068383/50397.jpeg?timestamp=2026-07-27T20%3A14%3A27.5436545 600w, https://dam.mihomes.com/media/5068383/50423.jpeg?timestamp=2026-07-27T20%3A14%3A37.5905393 900w, https://dam.mihomes.com/media/5068383/50396.jpeg?timestamp=2026-07-27T20%3A14%3A26.5597416 1200w, https://dam.mihomes.com/media/5068383/50421.jpeg?timestamp=2026-07-27T20%3A14%3A35.2657624 1800w, https://dam.mihomes.com/media/5068383/50422.jpeg?timestamp=2026-07-27T20%3A14%3A36.2687768 2400w" title="[L105-Z032]Family Room.3" width="2048" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Dining Room" height="1365" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5068382/50422.jpeg?timestamp=2026-07-27T20%3A14%3A04.0755443" srcset="https://dam.mihomes.com/media/5068382/50398.jpeg?timestamp=2026-07-27T20%3A13%3A55.2491918 300w, https://dam.mihomes.com/media/5068382/50397.jpeg?timestamp=2026-07-27T20%3A13%3A53.3489757 600w, https://dam.mihomes.com/media/5068382/50423.jpeg?timestamp=2026-07-27T20%3A14%3A07.2182316 900w, https://dam.mihomes.com/media/5068382/50396.jpeg?timestamp=2026-07-27T20%3A13%3A48.9290373 1200w, https://dam.mihomes.com/media/5068382/50421.jpeg?timestamp=2026-07-27T20%3A14%3A01.8508112 1800w, https://dam.mihomes.com/media/5068382/50422.jpeg?timestamp=2026-07-27T20%3A14%3A04.0755443 2400w" title="[L105-Z027]Dining Room.1" width="2048" class="image-banner-item-more" />
+ </span>
+ </div>
+ <div class="image-banner--print">
+ <span>
+ <img data-dam-generated alt="Back Exterior" height="1050" loading="lazy" sizes="(min-width: 64rem) 25vw, (min-width: 48rem) 33vw, 100vw" src="https://dam.mihomes.com/media/5127254/50422.jpeg?timestamp=2026-08-07T14%3A27%3A41.8964168" srcset="https://dam.mihomes.com/media/5127254/50398.jpeg?timestamp=2026-08-07T14%3A27%3A36.3029475 300w, https://dam.mihomes.com/media/5127254/50397.jpeg?timestamp=2026-08-07T14%3A27%3A34.8200312 600w, https://dam.mihomes.com/media/5127254/50423.jpeg?timestamp=2026-08-07T14%3A27%3A41.1049700 900w, https://dam.mihomes.com/media/5127254/50396.jpeg?timestamp=2026-08-07T14%3A27%3A32.3648625 1200w, https://dam.mihomes.com/media/5127254/50421.jpeg?timestamp=2026-08-07T14%3A27%3A40.2517456 1800w, https://dam.mihomes.com/media/5127254/50422.jpeg?timestamp=2026-08-07T14%3A27%3A41.8964168 2400w" title="[L105-Z005]Back Exterior.6" width="1400" class="image-banner-item-more" />
+ </span>
+ </div>
+
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <div class="modal fullscreen-modal gallery-modal gallery-modal--simple" data-modal="" id="simple-gallery-modal" data-track-views="">
+ <div class="gallery-modal__list-container">
+ <div class="gallery-modal__controls">
+ <button class="close-icon" data-modal-close>
+ <svg class="icon icon-close-gallery" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close-gallery"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__list-container-arrows">
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="prev" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="36" tabindex="-1">
+ <svg class="icon icon-prev" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#prev"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="next" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ <button class="gallery-modal__arrow last gami-image-view" data-gallery="simple-gallery-modal" data-set-slide="0" tabindex="-1">
+ <svg class="icon icon-next" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#next"></use>
+</svg>
+ </button>
+ </div>
+ <div class="gallery-modal__controls gallery-modal__controls__zoom">
+ <button class="close-icon" data-gallery="simple-gallery-modal" data-zoom>
+ <svg class="icon icon-zoom" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#zoom"></use>
+</svg>
+ </button>
+ </div>
+ <ul class="gallery-modal__list no-transition" style="transform: translateX(-200%);">
+
+ <li class="gallery-slide-container" data-slide-id="0" data-image="https://dam.mihomes.com/media/5127253/50398.jpeg?timestamp=2026-08-07T14%3A27%3A40.2879473 300w, https://dam.mihomes.com/media/5127253/50397.jpeg?timestamp=2026-08-07T14%3A27%3A39.6443115 600w, https://dam.mihomes.com/media/5127253/50423.jpeg?timestamp=2026-08-07T14%3A27%3A42.7052366 900w, https://dam.mihomes.com/media/5127253/50396.jpeg?timestamp=2026-08-07T14%3A27%3A37.2542798 1200w, https://dam.mihomes.com/media/5127253/50421.jpeg?timestamp=2026-08-07T14%3A27%3A40.5007237 1800w, https://dam.mihomes.com/media/5127253/50422.jpeg?timestamp=2026-08-07T14%3A27%3A41.8430815 2400w" data-caption="Front Exterior" data-count="<strong>1</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Front Exterior" height="1050" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5127253/50422.jpeg?timestamp=2026-08-07T14%3A27%3A41.8430815" srcset="https://dam.mihomes.com/media/5127253/50398.jpeg?timestamp=2026-08-07T14%3A27%3A40.2879473 300w, https://dam.mihomes.com/media/5127253/50397.jpeg?timestamp=2026-08-07T14%3A27%3A39.6443115 600w, https://dam.mihomes.com/media/5127253/50423.jpeg?timestamp=2026-08-07T14%3A27%3A42.7052366 900w, https://dam.mihomes.com/media/5127253/50396.jpeg?timestamp=2026-08-07T14%3A27%3A37.2542798 1200w, https://dam.mihomes.com/media/5127253/50421.jpeg?timestamp=2026-08-07T14%3A27%3A40.5007237 1800w, https://dam.mihomes.com/media/5127253/50422.jpeg?timestamp=2026-08-07T14%3A27%3A41.8430815 2400w" title="[L105-Z001]Front Exterior.2" width="1400" class="image-banner-item-gallery" fetchpriority="high" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="1" data-image="https://dam.mihomes.com/media/5068384/50398.jpeg?timestamp=2026-07-27T20%3A13%3A40.8686555 300w, https://dam.mihomes.com/media/5068384/50397.jpeg?timestamp=2026-07-27T20%3A13%3A40.6637459 600w, https://dam.mihomes.com/media/5068384/50423.jpeg?timestamp=2026-07-27T20%3A13%3A51.5388750 900w, https://dam.mihomes.com/media/5068384/50396.jpeg?timestamp=2026-07-27T20%3A13%3A40.2975816 1200w, https://dam.mihomes.com/media/5068384/50421.jpeg?timestamp=2026-07-27T20%3A13%3A46.3986125 1800w, https://dam.mihomes.com/media/5068384/50422.jpeg?timestamp=2026-07-27T20%3A13%3A47.3610730 2400w" data-caption="Kitchen" data-count="<strong>2</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068384/50422.jpeg?timestamp=2026-07-27T20%3A13%3A47.3610730" srcset="https://dam.mihomes.com/media/5068384/50398.jpeg?timestamp=2026-07-27T20%3A13%3A40.8686555 300w, https://dam.mihomes.com/media/5068384/50397.jpeg?timestamp=2026-07-27T20%3A13%3A40.6637459 600w, https://dam.mihomes.com/media/5068384/50423.jpeg?timestamp=2026-07-27T20%3A13%3A51.5388750 900w, https://dam.mihomes.com/media/5068384/50396.jpeg?timestamp=2026-07-27T20%3A13%3A40.2975816 1200w, https://dam.mihomes.com/media/5068384/50421.jpeg?timestamp=2026-07-27T20%3A13%3A46.3986125 1800w, https://dam.mihomes.com/media/5068384/50422.jpeg?timestamp=2026-07-27T20%3A13%3A47.3610730 2400w" title="[L105-Z024]Kitchen.4" width="2048" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="2" data-image="https://dam.mihomes.com/media/5068383/50398.jpeg?timestamp=2026-07-27T20%3A14%3A29.4175910 300w, https://dam.mihomes.com/media/5068383/50397.jpeg?timestamp=2026-07-27T20%3A14%3A27.5436545 600w, https://dam.mihomes.com/media/5068383/50423.jpeg?timestamp=2026-07-27T20%3A14%3A37.5905393 900w, https://dam.mihomes.com/media/5068383/50396.jpeg?timestamp=2026-07-27T20%3A14%3A26.5597416 1200w, https://dam.mihomes.com/media/5068383/50421.jpeg?timestamp=2026-07-27T20%3A14%3A35.2657624 1800w, https://dam.mihomes.com/media/5068383/50422.jpeg?timestamp=2026-07-27T20%3A14%3A36.2687768 2400w" data-caption="Family Room" data-count="<strong>3</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Family Room" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068383/50422.jpeg?timestamp=2026-07-27T20%3A14%3A36.2687768" srcset="https://dam.mihomes.com/media/5068383/50398.jpeg?timestamp=2026-07-27T20%3A14%3A29.4175910 300w, https://dam.mihomes.com/media/5068383/50397.jpeg?timestamp=2026-07-27T20%3A14%3A27.5436545 600w, https://dam.mihomes.com/media/5068383/50423.jpeg?timestamp=2026-07-27T20%3A14%3A37.5905393 900w, https://dam.mihomes.com/media/5068383/50396.jpeg?timestamp=2026-07-27T20%3A14%3A26.5597416 1200w, https://dam.mihomes.com/media/5068383/50421.jpeg?timestamp=2026-07-27T20%3A14%3A35.2657624 1800w, https://dam.mihomes.com/media/5068383/50422.jpeg?timestamp=2026-07-27T20%3A14%3A36.2687768 2400w" title="[L105-Z032]Family Room.3" width="2048" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="3" data-image="https://dam.mihomes.com/media/5068382/50398.jpeg?timestamp=2026-07-27T20%3A13%3A55.2491918 300w, https://dam.mihomes.com/media/5068382/50397.jpeg?timestamp=2026-07-27T20%3A13%3A53.3489757 600w, https://dam.mihomes.com/media/5068382/50423.jpeg?timestamp=2026-07-27T20%3A14%3A07.2182316 900w, https://dam.mihomes.com/media/5068382/50396.jpeg?timestamp=2026-07-27T20%3A13%3A48.9290373 1200w, https://dam.mihomes.com/media/5068382/50421.jpeg?timestamp=2026-07-27T20%3A14%3A01.8508112 1800w, https://dam.mihomes.com/media/5068382/50422.jpeg?timestamp=2026-07-27T20%3A14%3A04.0755443 2400w" data-caption="Dining Room" data-count="<strong>4</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Dining Room" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068382/50422.jpeg?timestamp=2026-07-27T20%3A14%3A04.0755443" srcset="https://dam.mihomes.com/media/5068382/50398.jpeg?timestamp=2026-07-27T20%3A13%3A55.2491918 300w, https://dam.mihomes.com/media/5068382/50397.jpeg?timestamp=2026-07-27T20%3A13%3A53.3489757 600w, https://dam.mihomes.com/media/5068382/50423.jpeg?timestamp=2026-07-27T20%3A14%3A07.2182316 900w, https://dam.mihomes.com/media/5068382/50396.jpeg?timestamp=2026-07-27T20%3A13%3A48.9290373 1200w, https://dam.mihomes.com/media/5068382/50421.jpeg?timestamp=2026-07-27T20%3A14%3A01.8508112 1800w, https://dam.mihomes.com/media/5068382/50422.jpeg?timestamp=2026-07-27T20%3A14%3A04.0755443 2400w" title="[L105-Z027]Dining Room.1" width="2048" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="4" data-image="https://dam.mihomes.com/media/5127254/50398.jpeg?timestamp=2026-08-07T14%3A27%3A36.3029475 300w, https://dam.mihomes.com/media/5127254/50397.jpeg?timestamp=2026-08-07T14%3A27%3A34.8200312 600w, https://dam.mihomes.com/media/5127254/50423.jpeg?timestamp=2026-08-07T14%3A27%3A41.1049700 900w, https://dam.mihomes.com/media/5127254/50396.jpeg?timestamp=2026-08-07T14%3A27%3A32.3648625 1200w, https://dam.mihomes.com/media/5127254/50421.jpeg?timestamp=2026-08-07T14%3A27%3A40.2517456 1800w, https://dam.mihomes.com/media/5127254/50422.jpeg?timestamp=2026-08-07T14%3A27%3A41.8964168 2400w" data-caption="Back Exterior" data-count="<strong>5</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Back Exterior" height="1050" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5127254/50422.jpeg?timestamp=2026-08-07T14%3A27%3A41.8964168" srcset="https://dam.mihomes.com/media/5127254/50398.jpeg?timestamp=2026-08-07T14%3A27%3A36.3029475 300w, https://dam.mihomes.com/media/5127254/50397.jpeg?timestamp=2026-08-07T14%3A27%3A34.8200312 600w, https://dam.mihomes.com/media/5127254/50423.jpeg?timestamp=2026-08-07T14%3A27%3A41.1049700 900w, https://dam.mihomes.com/media/5127254/50396.jpeg?timestamp=2026-08-07T14%3A27%3A32.3648625 1200w, https://dam.mihomes.com/media/5127254/50421.jpeg?timestamp=2026-08-07T14%3A27%3A40.2517456 1800w, https://dam.mihomes.com/media/5127254/50422.jpeg?timestamp=2026-08-07T14%3A27%3A41.8964168 2400w" title="[L105-Z005]Back Exterior.6" width="1400" class="image-banner-item-more" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="5" data-image="https://dam.mihomes.com/media/5068386/50398.jpeg 300w, https://dam.mihomes.com/media/5068386/50397.jpeg 600w, https://dam.mihomes.com/media/5068386/50423.jpeg 900w, https://dam.mihomes.com/media/5068386/50396.jpeg 1200w, https://dam.mihomes.com/media/5068386/50421.jpeg 1800w, https://dam.mihomes.com/media/5068386/50422.jpeg 2400w" data-caption="Foyer" data-count="<strong>6</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Foyer" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068386/50422.jpeg?timestamp=2026-07-27T20%3A14%3A17.3755497" srcset="https://dam.mihomes.com/media/5068386/50398.jpeg 300w, https://dam.mihomes.com/media/5068386/50397.jpeg 600w, https://dam.mihomes.com/media/5068386/50423.jpeg 900w, https://dam.mihomes.com/media/5068386/50396.jpeg 1200w, https://dam.mihomes.com/media/5068386/50421.jpeg 1800w, https://dam.mihomes.com/media/5068386/50422.jpeg 2400w" title="[L105-Z019]Foyer.1" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="6" data-image="https://dam.mihomes.com/media/5068394/50398.jpeg 300w, https://dam.mihomes.com/media/5068394/50397.jpeg 600w, https://dam.mihomes.com/media/5068394/50423.jpeg 900w, https://dam.mihomes.com/media/5068394/50396.jpeg 1200w, https://dam.mihomes.com/media/5068394/50421.jpeg 1800w, https://dam.mihomes.com/media/5068394/50422.jpeg 2400w" data-caption="Foyer" data-count="<strong>7</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Foyer" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068394/50422.jpeg?timestamp=2026-07-27T20%3A14%3A49.2836669" srcset="https://dam.mihomes.com/media/5068394/50398.jpeg 300w, https://dam.mihomes.com/media/5068394/50397.jpeg 600w, https://dam.mihomes.com/media/5068394/50423.jpeg 900w, https://dam.mihomes.com/media/5068394/50396.jpeg 1200w, https://dam.mihomes.com/media/5068394/50421.jpeg 1800w, https://dam.mihomes.com/media/5068394/50422.jpeg 2400w" title="[L105-Z034]Foyer.3" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="7" data-image="https://dam.mihomes.com/media/5068377/50398.jpeg 300w, https://dam.mihomes.com/media/5068377/50397.jpeg 600w, https://dam.mihomes.com/media/5068377/50423.jpeg 900w, https://dam.mihomes.com/media/5068377/50396.jpeg 1200w, https://dam.mihomes.com/media/5068377/50421.jpeg 1800w, https://dam.mihomes.com/media/5068377/50422.jpeg 2400w" data-caption="Foyer" data-count="<strong>8</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Foyer" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068377/50422.jpeg?timestamp=2026-07-27T20%3A14%3A28.3812397" srcset="https://dam.mihomes.com/media/5068377/50398.jpeg 300w, https://dam.mihomes.com/media/5068377/50397.jpeg 600w, https://dam.mihomes.com/media/5068377/50423.jpeg 900w, https://dam.mihomes.com/media/5068377/50396.jpeg 1200w, https://dam.mihomes.com/media/5068377/50421.jpeg 1800w, https://dam.mihomes.com/media/5068377/50422.jpeg 2400w" title="[L105-Z020]Foyer.2" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="8" data-image="https://dam.mihomes.com/media/5068368/50398.jpeg 300w, https://dam.mihomes.com/media/5068368/50397.jpeg 600w, https://dam.mihomes.com/media/5068368/50423.jpeg 900w, https://dam.mihomes.com/media/5068368/50396.jpeg 1200w, https://dam.mihomes.com/media/5068368/50421.jpeg 1800w, https://dam.mihomes.com/media/5068368/50422.jpeg 2400w" data-caption="Kitchen" data-count="<strong>9</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068368/50422.jpeg?timestamp=2026-07-27T20%3A13%3A39.0265174" srcset="https://dam.mihomes.com/media/5068368/50398.jpeg 300w, https://dam.mihomes.com/media/5068368/50397.jpeg 600w, https://dam.mihomes.com/media/5068368/50423.jpeg 900w, https://dam.mihomes.com/media/5068368/50396.jpeg 1200w, https://dam.mihomes.com/media/5068368/50421.jpeg 1800w, https://dam.mihomes.com/media/5068368/50422.jpeg 2400w" title="[L105-Z022]Kitchen.2" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="9" data-image="https://dam.mihomes.com/media/5068388/50398.jpeg 300w, https://dam.mihomes.com/media/5068388/50397.jpeg 600w, https://dam.mihomes.com/media/5068388/50423.jpeg 900w, https://dam.mihomes.com/media/5068388/50396.jpeg 1200w, https://dam.mihomes.com/media/5068388/50421.jpeg 1800w, https://dam.mihomes.com/media/5068388/50422.jpeg 2400w" data-caption="Kitchen" data-count="<strong>10</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068388/50422.jpeg?timestamp=2026-07-27T20%3A14%3A08.4937466" srcset="https://dam.mihomes.com/media/5068388/50398.jpeg 300w, https://dam.mihomes.com/media/5068388/50397.jpeg 600w, https://dam.mihomes.com/media/5068388/50423.jpeg 900w, https://dam.mihomes.com/media/5068388/50396.jpeg 1200w, https://dam.mihomes.com/media/5068388/50421.jpeg 1800w, https://dam.mihomes.com/media/5068388/50422.jpeg 2400w" title="[L105-Z001]Kitchen.3" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="10" data-image="https://dam.mihomes.com/media/5068381/50398.jpeg 300w, https://dam.mihomes.com/media/5068381/50397.jpeg 600w, https://dam.mihomes.com/media/5068381/50423.jpeg 900w, https://dam.mihomes.com/media/5068381/50396.jpeg 1200w, https://dam.mihomes.com/media/5068381/50421.jpeg 1800w, https://dam.mihomes.com/media/5068381/50422.jpeg 2400w" data-caption="Kitchen " data-count="<strong>11</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen " height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068381/50422.jpeg?timestamp=2026-07-27T20%3A14%3A00.8218405" srcset="https://dam.mihomes.com/media/5068381/50398.jpeg 300w, https://dam.mihomes.com/media/5068381/50397.jpeg 600w, https://dam.mihomes.com/media/5068381/50423.jpeg 900w, https://dam.mihomes.com/media/5068381/50396.jpeg 1200w, https://dam.mihomes.com/media/5068381/50421.jpeg 1800w, https://dam.mihomes.com/media/5068381/50422.jpeg 2400w" title="[L105-Z025]Kitchen.5" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="11" data-image="https://dam.mihomes.com/media/5068396/50398.jpeg 300w, https://dam.mihomes.com/media/5068396/50397.jpeg 600w, https://dam.mihomes.com/media/5068396/50423.jpeg 900w, https://dam.mihomes.com/media/5068396/50396.jpeg 1200w, https://dam.mihomes.com/media/5068396/50421.jpeg 1800w, https://dam.mihomes.com/media/5068396/50422.jpeg 2400w" data-caption="Kitchen" data-count="<strong>12</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068396/50422.jpeg?timestamp=2026-07-27T20%3A14%3A42.7330920" srcset="https://dam.mihomes.com/media/5068396/50398.jpeg 300w, https://dam.mihomes.com/media/5068396/50397.jpeg 600w, https://dam.mihomes.com/media/5068396/50423.jpeg 900w, https://dam.mihomes.com/media/5068396/50396.jpeg 1200w, https://dam.mihomes.com/media/5068396/50421.jpeg 1800w, https://dam.mihomes.com/media/5068396/50422.jpeg 2400w" title="[L105-Z026]Kitchen.6" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="12" data-image="https://dam.mihomes.com/media/5068393/50398.jpeg 300w, https://dam.mihomes.com/media/5068393/50397.jpeg 600w, https://dam.mihomes.com/media/5068393/50423.jpeg 900w, https://dam.mihomes.com/media/5068393/50396.jpeg 1200w, https://dam.mihomes.com/media/5068393/50421.jpeg 1800w, https://dam.mihomes.com/media/5068393/50422.jpeg 2400w" data-caption="Kitchen" data-count="<strong>13</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Kitchen" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068393/50422.jpeg?timestamp=2026-07-27T20%3A14%3A38.6007892" srcset="https://dam.mihomes.com/media/5068393/50398.jpeg 300w, https://dam.mihomes.com/media/5068393/50397.jpeg 600w, https://dam.mihomes.com/media/5068393/50423.jpeg 900w, https://dam.mihomes.com/media/5068393/50396.jpeg 1200w, https://dam.mihomes.com/media/5068393/50421.jpeg 1800w, https://dam.mihomes.com/media/5068393/50422.jpeg 2400w" title="[L105-Z021]Kitchen.1" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="13" data-image="https://dam.mihomes.com/media/5068387/50398.jpeg 300w, https://dam.mihomes.com/media/5068387/50397.jpeg 600w, https://dam.mihomes.com/media/5068387/50423.jpeg 900w, https://dam.mihomes.com/media/5068387/50396.jpeg 1200w, https://dam.mihomes.com/media/5068387/50421.jpeg 1800w, https://dam.mihomes.com/media/5068387/50422.jpeg 2400w" data-caption="Dining Room" data-count="<strong>14</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Dining Room" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068387/50422.jpeg?timestamp=2026-07-27T20%3A14%3A48.2615443" srcset="https://dam.mihomes.com/media/5068387/50398.jpeg 300w, https://dam.mihomes.com/media/5068387/50397.jpeg 600w, https://dam.mihomes.com/media/5068387/50423.jpeg 900w, https://dam.mihomes.com/media/5068387/50396.jpeg 1200w, https://dam.mihomes.com/media/5068387/50421.jpeg 1800w, https://dam.mihomes.com/media/5068387/50422.jpeg 2400w" title="[L105-Z029]Dining Room.3" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="14" data-image="https://dam.mihomes.com/media/5068374/50398.jpeg 300w, https://dam.mihomes.com/media/5068374/50397.jpeg 600w, https://dam.mihomes.com/media/5068374/50423.jpeg 900w, https://dam.mihomes.com/media/5068374/50396.jpeg 1200w, https://dam.mihomes.com/media/5068374/50421.jpeg 1800w, https://dam.mihomes.com/media/5068374/50422.jpeg 2400w" data-caption="Dining Room" data-count="<strong>15</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Dining Room" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068374/50422.jpeg?timestamp=2026-07-27T20%3A13%3A29.3277925" srcset="https://dam.mihomes.com/media/5068374/50398.jpeg 300w, https://dam.mihomes.com/media/5068374/50397.jpeg 600w, https://dam.mihomes.com/media/5068374/50423.jpeg 900w, https://dam.mihomes.com/media/5068374/50396.jpeg 1200w, https://dam.mihomes.com/media/5068374/50421.jpeg 1800w, https://dam.mihomes.com/media/5068374/50422.jpeg 2400w" title="[L105-Z028]Dining Room.2" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="15" data-image="https://dam.mihomes.com/media/5068376/50398.jpeg 300w, https://dam.mihomes.com/media/5068376/50397.jpeg 600w, https://dam.mihomes.com/media/5068376/50423.jpeg 900w, https://dam.mihomes.com/media/5068376/50396.jpeg 1200w, https://dam.mihomes.com/media/5068376/50421.jpeg 1800w, https://dam.mihomes.com/media/5068376/50422.jpeg 2400w" data-caption="Family Room" data-count="<strong>16</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Family Room" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068376/50422.jpeg?timestamp=2026-07-27T20%3A14%3A03.9095452" srcset="https://dam.mihomes.com/media/5068376/50398.jpeg 300w, https://dam.mihomes.com/media/5068376/50397.jpeg 600w, https://dam.mihomes.com/media/5068376/50423.jpeg 900w, https://dam.mihomes.com/media/5068376/50396.jpeg 1200w, https://dam.mihomes.com/media/5068376/50421.jpeg 1800w, https://dam.mihomes.com/media/5068376/50422.jpeg 2400w" title="[L105-Z002]Family Room.2" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="16" data-image="https://dam.mihomes.com/media/5068372/50398.jpeg 300w, https://dam.mihomes.com/media/5068372/50397.jpeg 600w, https://dam.mihomes.com/media/5068372/50423.jpeg 900w, https://dam.mihomes.com/media/5068372/50396.jpeg 1200w, https://dam.mihomes.com/media/5068372/50421.jpeg 1800w, https://dam.mihomes.com/media/5068372/50422.jpeg 2400w" data-caption="Family Room" data-count="<strong>17</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Family Room" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068372/50422.jpeg?timestamp=2026-07-27T20%3A13%3A23.5835835" srcset="https://dam.mihomes.com/media/5068372/50398.jpeg 300w, https://dam.mihomes.com/media/5068372/50397.jpeg 600w, https://dam.mihomes.com/media/5068372/50423.jpeg 900w, https://dam.mihomes.com/media/5068372/50396.jpeg 1200w, https://dam.mihomes.com/media/5068372/50421.jpeg 1800w, https://dam.mihomes.com/media/5068372/50422.jpeg 2400w" title="[L105-Z033]Family Room.4" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="17" data-image="https://dam.mihomes.com/media/5068371/50398.jpeg 300w, https://dam.mihomes.com/media/5068371/50397.jpeg 600w, https://dam.mihomes.com/media/5068371/50423.jpeg 900w, https://dam.mihomes.com/media/5068371/50396.jpeg 1200w, https://dam.mihomes.com/media/5068371/50421.jpeg 1800w, https://dam.mihomes.com/media/5068371/50422.jpeg 2400w" data-caption="Family Room" data-count="<strong>18</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Family Room" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068371/50422.jpeg?timestamp=2026-07-27T20%3A13%3A13.3142452" srcset="https://dam.mihomes.com/media/5068371/50398.jpeg 300w, https://dam.mihomes.com/media/5068371/50397.jpeg 600w, https://dam.mihomes.com/media/5068371/50423.jpeg 900w, https://dam.mihomes.com/media/5068371/50396.jpeg 1200w, https://dam.mihomes.com/media/5068371/50421.jpeg 1800w, https://dam.mihomes.com/media/5068371/50422.jpeg 2400w" title="[L105-Z030]Family Room.1" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="18" data-image="https://dam.mihomes.com/media/5068385/50398.jpeg 300w, https://dam.mihomes.com/media/5068385/50397.jpeg 600w, https://dam.mihomes.com/media/5068385/50423.jpeg 900w, https://dam.mihomes.com/media/5068385/50396.jpeg 1200w, https://dam.mihomes.com/media/5068385/50421.jpeg 1800w, https://dam.mihomes.com/media/5068385/50422.jpeg 2400w" data-caption="Hallway " data-count="<strong>19</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Hallway " height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068385/50422.jpeg?timestamp=2026-07-27T20%3A14%3A04.0203764" srcset="https://dam.mihomes.com/media/5068385/50398.jpeg 300w, https://dam.mihomes.com/media/5068385/50397.jpeg 600w, https://dam.mihomes.com/media/5068385/50423.jpeg 900w, https://dam.mihomes.com/media/5068385/50396.jpeg 1200w, https://dam.mihomes.com/media/5068385/50421.jpeg 1800w, https://dam.mihomes.com/media/5068385/50422.jpeg 2400w" title="[L105-Z011]Hallway.1" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="19" data-image="https://dam.mihomes.com/media/5068367/50398.jpeg 300w, https://dam.mihomes.com/media/5068367/50397.jpeg 600w, https://dam.mihomes.com/media/5068367/50423.jpeg 900w, https://dam.mihomes.com/media/5068367/50396.jpeg 1200w, https://dam.mihomes.com/media/5068367/50421.jpeg 1800w, https://dam.mihomes.com/media/5068367/50422.jpeg 2400w" data-caption="Hallway" data-count="<strong>20</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Hallway" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068367/50422.jpeg?timestamp=2026-07-27T20%3A13%3A16.3756133" srcset="https://dam.mihomes.com/media/5068367/50398.jpeg 300w, https://dam.mihomes.com/media/5068367/50397.jpeg 600w, https://dam.mihomes.com/media/5068367/50423.jpeg 900w, https://dam.mihomes.com/media/5068367/50396.jpeg 1200w, https://dam.mihomes.com/media/5068367/50421.jpeg 1800w, https://dam.mihomes.com/media/5068367/50422.jpeg 2400w" title="[L105-Z017]Hallway.2" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="20" data-image="https://dam.mihomes.com/media/5068380/50398.jpeg 300w, https://dam.mihomes.com/media/5068380/50397.jpeg 600w, https://dam.mihomes.com/media/5068380/50423.jpeg 900w, https://dam.mihomes.com/media/5068380/50396.jpeg 1200w, https://dam.mihomes.com/media/5068380/50421.jpeg 1800w, https://dam.mihomes.com/media/5068380/50422.jpeg 2400w" data-caption="Loft" data-count="<strong>21</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Loft" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068380/50422.jpeg?timestamp=2026-07-27T20%3A13%3A55.5827479" srcset="https://dam.mihomes.com/media/5068380/50398.jpeg 300w, https://dam.mihomes.com/media/5068380/50397.jpeg 600w, https://dam.mihomes.com/media/5068380/50423.jpeg 900w, https://dam.mihomes.com/media/5068380/50396.jpeg 1200w, https://dam.mihomes.com/media/5068380/50421.jpeg 1800w, https://dam.mihomes.com/media/5068380/50422.jpeg 2400w" title="[L105-Z003]Loft.1" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="21" data-image="https://dam.mihomes.com/media/5068373/50398.jpeg 300w, https://dam.mihomes.com/media/5068373/50397.jpeg 600w, https://dam.mihomes.com/media/5068373/50423.jpeg 900w, https://dam.mihomes.com/media/5068373/50396.jpeg 1200w, https://dam.mihomes.com/media/5068373/50421.jpeg 1800w, https://dam.mihomes.com/media/5068373/50422.jpeg 2400w" data-caption="Owner's Bedroom" data-count="<strong>22</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owner's Bedroom" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068373/50422.jpeg?timestamp=2026-07-27T20%3A13%3A38.0239888" srcset="https://dam.mihomes.com/media/5068373/50398.jpeg 300w, https://dam.mihomes.com/media/5068373/50397.jpeg 600w, https://dam.mihomes.com/media/5068373/50423.jpeg 900w, https://dam.mihomes.com/media/5068373/50396.jpeg 1200w, https://dam.mihomes.com/media/5068373/50421.jpeg 1800w, https://dam.mihomes.com/media/5068373/50422.jpeg 2400w" title="[L105-Z004]Owner's Bedroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="22" data-image="https://dam.mihomes.com/media/5068391/50398.jpeg 300w, https://dam.mihomes.com/media/5068391/50397.jpeg 600w, https://dam.mihomes.com/media/5068391/50423.jpeg 900w, https://dam.mihomes.com/media/5068391/50396.jpeg 1200w, https://dam.mihomes.com/media/5068391/50421.jpeg 1800w, https://dam.mihomes.com/media/5068391/50422.jpeg 2400w" data-caption="Owner's Bedroom" data-count="<strong>23</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owner's Bedroom" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068391/50422.jpeg?timestamp=2026-07-27T20%3A14%3A58.9935557" srcset="https://dam.mihomes.com/media/5068391/50398.jpeg 300w, https://dam.mihomes.com/media/5068391/50397.jpeg 600w, https://dam.mihomes.com/media/5068391/50423.jpeg 900w, https://dam.mihomes.com/media/5068391/50396.jpeg 1200w, https://dam.mihomes.com/media/5068391/50421.jpeg 1800w, https://dam.mihomes.com/media/5068391/50422.jpeg 2400w" title="[L105-Z008]Owner's Bedroom" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="23" data-image="https://dam.mihomes.com/media/5068369/50398.jpeg 300w, https://dam.mihomes.com/media/5068369/50397.jpeg 600w, https://dam.mihomes.com/media/5068369/50423.jpeg 900w, https://dam.mihomes.com/media/5068369/50396.jpeg 1200w, https://dam.mihomes.com/media/5068369/50421.jpeg 1800w, https://dam.mihomes.com/media/5068369/50422.jpeg 2400w" data-caption="Owner's Bathroom" data-count="<strong>24</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owner's Bathroom" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068369/50422.jpeg?timestamp=2026-07-27T20%3A13%3A19.7351499" srcset="https://dam.mihomes.com/media/5068369/50398.jpeg 300w, https://dam.mihomes.com/media/5068369/50397.jpeg 600w, https://dam.mihomes.com/media/5068369/50423.jpeg 900w, https://dam.mihomes.com/media/5068369/50396.jpeg 1200w, https://dam.mihomes.com/media/5068369/50421.jpeg 1800w, https://dam.mihomes.com/media/5068369/50422.jpeg 2400w" title="[L105-Z009]Owner's Bathroom.1" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="24" data-image="https://dam.mihomes.com/media/5068375/50398.jpeg 300w, https://dam.mihomes.com/media/5068375/50397.jpeg 600w, https://dam.mihomes.com/media/5068375/50423.jpeg 900w, https://dam.mihomes.com/media/5068375/50396.jpeg 1200w, https://dam.mihomes.com/media/5068375/50421.jpeg 1800w, https://dam.mihomes.com/media/5068375/50422.jpeg 2400w" data-caption="Owner's Closet" data-count="<strong>25</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Owner's Closet" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068375/50422.jpeg?timestamp=2026-07-27T20%3A13%3A31.5190424" srcset="https://dam.mihomes.com/media/5068375/50398.jpeg 300w, https://dam.mihomes.com/media/5068375/50397.jpeg 600w, https://dam.mihomes.com/media/5068375/50423.jpeg 900w, https://dam.mihomes.com/media/5068375/50396.jpeg 1200w, https://dam.mihomes.com/media/5068375/50421.jpeg 1800w, https://dam.mihomes.com/media/5068375/50422.jpeg 2400w" title="[L105-Z018]Owner's Closet.1" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="25" data-image="https://dam.mihomes.com/media/5068379/50398.jpeg 300w, https://dam.mihomes.com/media/5068379/50397.jpeg 600w, https://dam.mihomes.com/media/5068379/50423.jpeg 900w, https://dam.mihomes.com/media/5068379/50396.jpeg 1200w, https://dam.mihomes.com/media/5068379/50421.jpeg 1800w, https://dam.mihomes.com/media/5068379/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>26</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068379/50422.jpeg?timestamp=2026-07-27T20%3A14%3A26.5340366" srcset="https://dam.mihomes.com/media/5068379/50398.jpeg 300w, https://dam.mihomes.com/media/5068379/50397.jpeg 600w, https://dam.mihomes.com/media/5068379/50423.jpeg 900w, https://dam.mihomes.com/media/5068379/50396.jpeg 1200w, https://dam.mihomes.com/media/5068379/50421.jpeg 1800w, https://dam.mihomes.com/media/5068379/50422.jpeg 2400w" title="[L105-Z013]Bedroom.1" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="26" data-image="https://dam.mihomes.com/media/5068395/50398.jpeg 300w, https://dam.mihomes.com/media/5068395/50397.jpeg 600w, https://dam.mihomes.com/media/5068395/50423.jpeg 900w, https://dam.mihomes.com/media/5068395/50396.jpeg 1200w, https://dam.mihomes.com/media/5068395/50421.jpeg 1800w, https://dam.mihomes.com/media/5068395/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>27</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068395/50422.jpeg?timestamp=2026-07-27T20%3A14%3A59.5313532" srcset="https://dam.mihomes.com/media/5068395/50398.jpeg 300w, https://dam.mihomes.com/media/5068395/50397.jpeg 600w, https://dam.mihomes.com/media/5068395/50423.jpeg 900w, https://dam.mihomes.com/media/5068395/50396.jpeg 1200w, https://dam.mihomes.com/media/5068395/50421.jpeg 1800w, https://dam.mihomes.com/media/5068395/50422.jpeg 2400w" title="[L105-Z014]Bedroom.2" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="27" data-image="https://dam.mihomes.com/media/5068397/50398.jpeg 300w, https://dam.mihomes.com/media/5068397/50397.jpeg 600w, https://dam.mihomes.com/media/5068397/50423.jpeg 900w, https://dam.mihomes.com/media/5068397/50396.jpeg 1200w, https://dam.mihomes.com/media/5068397/50421.jpeg 1800w, https://dam.mihomes.com/media/5068397/50422.jpeg 2400w" data-caption="Bathroom" data-count="<strong>28</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bathroom" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068397/50422.jpeg?timestamp=2026-07-27T20%3A15%3A04.0851142" srcset="https://dam.mihomes.com/media/5068397/50398.jpeg 300w, https://dam.mihomes.com/media/5068397/50397.jpeg 600w, https://dam.mihomes.com/media/5068397/50423.jpeg 900w, https://dam.mihomes.com/media/5068397/50396.jpeg 1200w, https://dam.mihomes.com/media/5068397/50421.jpeg 1800w, https://dam.mihomes.com/media/5068397/50422.jpeg 2400w" title="[L105-Z012]Bathroom.1" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="28" data-image="https://dam.mihomes.com/media/5068370/50398.jpeg 300w, https://dam.mihomes.com/media/5068370/50397.jpeg 600w, https://dam.mihomes.com/media/5068370/50423.jpeg 900w, https://dam.mihomes.com/media/5068370/50396.jpeg 1200w, https://dam.mihomes.com/media/5068370/50421.jpeg 1800w, https://dam.mihomes.com/media/5068370/50422.jpeg 2400w" data-caption="Bedroom" data-count="<strong>29</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068370/50422.jpeg?timestamp=2026-07-27T20%3A13%3A05.8362279" srcset="https://dam.mihomes.com/media/5068370/50398.jpeg 300w, https://dam.mihomes.com/media/5068370/50397.jpeg 600w, https://dam.mihomes.com/media/5068370/50423.jpeg 900w, https://dam.mihomes.com/media/5068370/50396.jpeg 1200w, https://dam.mihomes.com/media/5068370/50421.jpeg 1800w, https://dam.mihomes.com/media/5068370/50422.jpeg 2400w" title="[L105-Z015]Bedroom.3" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="29" data-image="https://dam.mihomes.com/media/5068389/50398.jpeg 300w, https://dam.mihomes.com/media/5068389/50397.jpeg 600w, https://dam.mihomes.com/media/5068389/50423.jpeg 900w, https://dam.mihomes.com/media/5068389/50396.jpeg 1200w, https://dam.mihomes.com/media/5068389/50421.jpeg 1800w, https://dam.mihomes.com/media/5068389/50422.jpeg 2400w" data-caption="Bedroom " data-count="<strong>30</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Bedroom " height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068389/50422.jpeg?timestamp=2026-07-27T20%3A14%3A50.5185760" srcset="https://dam.mihomes.com/media/5068389/50398.jpeg 300w, https://dam.mihomes.com/media/5068389/50397.jpeg 600w, https://dam.mihomes.com/media/5068389/50423.jpeg 900w, https://dam.mihomes.com/media/5068389/50396.jpeg 1200w, https://dam.mihomes.com/media/5068389/50421.jpeg 1800w, https://dam.mihomes.com/media/5068389/50422.jpeg 2400w" title="[L105-Z016]Bedroom.4" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="30" data-image="https://dam.mihomes.com/media/5068392/50398.jpeg 300w, https://dam.mihomes.com/media/5068392/50397.jpeg 600w, https://dam.mihomes.com/media/5068392/50423.jpeg 900w, https://dam.mihomes.com/media/5068392/50396.jpeg 1200w, https://dam.mihomes.com/media/5068392/50421.jpeg 1800w, https://dam.mihomes.com/media/5068392/50422.jpeg 2400w" data-caption="Laundry Room" data-count="<strong>31</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Laundry Room" height="1365" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5068392/50422.jpeg?timestamp=2026-07-27T20%3A14%3A34.1610966" srcset="https://dam.mihomes.com/media/5068392/50398.jpeg 300w, https://dam.mihomes.com/media/5068392/50397.jpeg 600w, https://dam.mihomes.com/media/5068392/50423.jpeg 900w, https://dam.mihomes.com/media/5068392/50396.jpeg 1200w, https://dam.mihomes.com/media/5068392/50421.jpeg 1800w, https://dam.mihomes.com/media/5068392/50422.jpeg 2400w" title="[L105-Z036]Laundry Room" width="2048" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="31" data-image="https://dam.mihomes.com/media/4570655/50398.jpeg 300w, https://dam.mihomes.com/media/4570655/50397.jpeg 600w, https://dam.mihomes.com/media/4570655/50423.jpeg 900w, https://dam.mihomes.com/media/4570655/50396.jpeg 1200w, https://dam.mihomes.com/media/4570655/50421.jpeg 1800w, https://dam.mihomes.com/media/4570655/50422.jpeg 2400w" data-caption="Hayward - Rendering" data-count="<strong>32</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Hayward - Rendering" height="3000" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/4570655/50422.jpeg?timestamp=2026-03-30T15%3A19%3A18.8789422" srcset="https://dam.mihomes.com/media/4570655/50398.jpeg 300w, https://dam.mihomes.com/media/4570655/50397.jpeg 600w, https://dam.mihomes.com/media/4570655/50423.jpeg 900w, https://dam.mihomes.com/media/4570655/50396.jpeg 1200w, https://dam.mihomes.com/media/4570655/50421.jpeg 1800w, https://dam.mihomes.com/media/4570655/50422.jpeg 2400w" title="Hayward" width="4000" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="32" data-image="https://dam.mihomes.com/media/5032612/50398.jpeg 300w, https://dam.mihomes.com/media/5032612/50397.jpeg 600w, https://dam.mihomes.com/media/5032612/50423.jpeg 900w, https://dam.mihomes.com/media/5032612/50396.jpeg 1200w, https://dam.mihomes.com/media/5032612/50421.jpeg 1800w, https://dam.mihomes.com/media/5032612/50422.jpeg 2400w" data-caption="Lifestyle - Representational Photo" data-count="<strong>33</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5032612/50422.jpeg?timestamp=2026-07-20T16%3A52%3A32.3397193" srcset="https://dam.mihomes.com/media/5032612/50398.jpeg 300w, https://dam.mihomes.com/media/5032612/50397.jpeg 600w, https://dam.mihomes.com/media/5032612/50423.jpeg 900w, https://dam.mihomes.com/media/5032612/50396.jpeg 1200w, https://dam.mihomes.com/media/5032612/50421.jpeg 1800w, https://dam.mihomes.com/media/5032612/50422.jpeg 2400w" title="DefaultImage1" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="33" data-image="https://dam.mihomes.com/media/5032615/50398.jpeg 300w, https://dam.mihomes.com/media/5032615/50397.jpeg 600w, https://dam.mihomes.com/media/5032615/50423.jpeg 900w, https://dam.mihomes.com/media/5032615/50396.jpeg 1200w, https://dam.mihomes.com/media/5032615/50421.jpeg 1800w, https://dam.mihomes.com/media/5032615/50422.jpeg 2400w" data-caption="Lifestyle - Representational Photo" data-count="<strong>34</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5032615/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.1681442" srcset="https://dam.mihomes.com/media/5032615/50398.jpeg 300w, https://dam.mihomes.com/media/5032615/50397.jpeg 600w, https://dam.mihomes.com/media/5032615/50423.jpeg 900w, https://dam.mihomes.com/media/5032615/50396.jpeg 1200w, https://dam.mihomes.com/media/5032615/50421.jpeg 1800w, https://dam.mihomes.com/media/5032615/50422.jpeg 2400w" title="DefaultImage4" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="34" data-image="https://dam.mihomes.com/media/5032611/50398.jpeg 300w, https://dam.mihomes.com/media/5032611/50397.jpeg 600w, https://dam.mihomes.com/media/5032611/50423.jpeg 900w, https://dam.mihomes.com/media/5032611/50396.jpeg 1200w, https://dam.mihomes.com/media/5032611/50421.jpeg 1800w, https://dam.mihomes.com/media/5032611/50422.jpeg 2400w" data-caption="Lifestyle - Representational Photo" data-count="<strong>35</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5032611/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.1317651" srcset="https://dam.mihomes.com/media/5032611/50398.jpeg 300w, https://dam.mihomes.com/media/5032611/50397.jpeg 600w, https://dam.mihomes.com/media/5032611/50423.jpeg 900w, https://dam.mihomes.com/media/5032611/50396.jpeg 1200w, https://dam.mihomes.com/media/5032611/50421.jpeg 1800w, https://dam.mihomes.com/media/5032611/50422.jpeg 2400w" title="DefaultImage2" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="35" data-image="https://dam.mihomes.com/media/5032614/50398.jpeg 300w, https://dam.mihomes.com/media/5032614/50397.jpeg 600w, https://dam.mihomes.com/media/5032614/50423.jpeg 900w, https://dam.mihomes.com/media/5032614/50396.jpeg 1200w, https://dam.mihomes.com/media/5032614/50421.jpeg 1800w, https://dam.mihomes.com/media/5032614/50422.jpeg 2400w" data-caption="Lifestyle - Representational Photo" data-count="<strong>36</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5032614/50422.jpeg?timestamp=2026-07-20T16%3A52%3A32.7348581" srcset="https://dam.mihomes.com/media/5032614/50398.jpeg 300w, https://dam.mihomes.com/media/5032614/50397.jpeg 600w, https://dam.mihomes.com/media/5032614/50423.jpeg 900w, https://dam.mihomes.com/media/5032614/50396.jpeg 1200w, https://dam.mihomes.com/media/5032614/50421.jpeg 1800w, https://dam.mihomes.com/media/5032614/50422.jpeg 2400w" title="DefaultImage3" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ <li class="gallery-slide-container" data-slide-id="36" data-image="https://dam.mihomes.com/media/5032613/50398.jpeg 300w, https://dam.mihomes.com/media/5032613/50397.jpeg 600w, https://dam.mihomes.com/media/5032613/50423.jpeg 900w, https://dam.mihomes.com/media/5032613/50396.jpeg 1200w, https://dam.mihomes.com/media/5032613/50421.jpeg 1800w, https://dam.mihomes.com/media/5032613/50422.jpeg 2400w" data-caption="Lifestyle - Representational Photo" data-count="<strong>37</strong> of <strong>37</strong>">
+ <div class="gallery-modal__slide gallery-slide">
+ <div class="gallery-slide__image">
+ <div class="container-meta">
+ <img data-dam-generated alt="Lifestyle" height="1200" loading="lazy" sizes="(min-width: 87.5rem) 1200px, 100vw" src="https://dam.mihomes.com/media/5032613/50422.jpeg?timestamp=2026-07-20T16%3A52%3A42.8027102" srcset="https://dam.mihomes.com/media/5032613/50398.jpeg 300w, https://dam.mihomes.com/media/5032613/50397.jpeg 600w, https://dam.mihomes.com/media/5032613/50423.jpeg 900w, https://dam.mihomes.com/media/5032613/50396.jpeg 1200w, https://dam.mihomes.com/media/5032613/50421.jpeg 1800w, https://dam.mihomes.com/media/5032613/50422.jpeg 2400w" title="DefaultImage5" width="1800" />
+ </div>
+ </div>
+ </div>
+ </li>
+ </ul>
+ <div class="gallery-slide__footer">
+ <span class="gallery-slide__title title-caption"></span>
+ <div class="gallery-slide__share-buttons">
+ <span class="count"></span>
+ </div>
+ </div>
+ </div>
+ </div>
+</div><script type="application/ld+json">{
+ "@context": "https://schema.org",
+ "@type": "Product",
+ "additionalType": "https://schema.org/SingleFamilyResidence",
+ "name": "673 Tulare Terrace",
+ "sku": "Rtx7X8BK8UGI7sCc-HxTVQ",
+ "description": "Welcome to <strong>673 Tulare Terrace in Newport, Minnesota</strong>—a beautifully designed new construction townhome by M/I Homes, offering modern comfort and low-maintenance living in a thoughtfully planned community. With 1,722 square feet across two stories, this home features 3 bedrooms and 2.5 bathrooms, providing the ideal balance of space and functionality.",
+ "image": [
+ "https://dam.mihomes.com/media/5127253/50422.jpeg",
+ "https://dam.mihomes.com/media/5068384/50422.jpeg",
+ "https://dam.mihomes.com/media/5068383/50422.jpeg",
+ "https://dam.mihomes.com/media/5068382/50422.jpeg",
+ "https://dam.mihomes.com/media/5127254/50422.jpeg",
+ "https://dam.mihomes.com/media/5068386/50422.jpeg",
+ "https://dam.mihomes.com/media/5068394/50422.jpeg",
+ "https://dam.mihomes.com/media/5068377/50422.jpeg",
+ "https://dam.mihomes.com/media/5068368/50422.jpeg",
+ "https://dam.mihomes.com/media/5068388/50422.jpeg",
+ "https://dam.mihomes.com/media/5068381/50422.jpeg",
+ "https://dam.mihomes.com/media/5068396/50422.jpeg",
+ "https://dam.mihomes.com/media/5068393/50422.jpeg",
+ "https://dam.mihomes.com/media/5068387/50422.jpeg",
+ "https://dam.mihomes.com/media/5068374/50422.jpeg",
+ "https://dam.mihomes.com/media/5068376/50422.jpeg",
+ "https://dam.mihomes.com/media/5068372/50422.jpeg",
+ "https://dam.mihomes.com/media/5068371/50422.jpeg",
+ "https://dam.mihomes.com/media/5068385/50422.jpeg",
+ "https://dam.mihomes.com/media/5068367/50422.jpeg",
+ "https://dam.mihomes.com/media/5068380/50422.jpeg",
+ "https://dam.mihomes.com/media/5068373/50422.jpeg",
+ "https://dam.mihomes.com/media/5068391/50422.jpeg",
+ "https://dam.mihomes.com/media/5068369/50422.jpeg",
+ "https://dam.mihomes.com/media/5068375/50422.jpeg",
+ "https://dam.mihomes.com/media/5068379/50422.jpeg",
+ "https://dam.mihomes.com/media/5068395/50422.jpeg",
+ "https://dam.mihomes.com/media/5068397/50422.jpeg",
+ "https://dam.mihomes.com/media/5068370/50422.jpeg",
+ "https://dam.mihomes.com/media/5068389/50422.jpeg",
+ "https://dam.mihomes.com/media/5068392/50422.jpeg",
+ "https://dam.mihomes.com/media/4570655/50422.jpeg",
+ "https://dam.mihomes.com/media/5032612/50422.jpeg",
+ "https://dam.mihomes.com/media/5032615/50422.jpeg",
+ "https://dam.mihomes.com/media/5032611/50422.jpeg",
+ "https://dam.mihomes.com/media/5032614/50422.jpeg",
+ "https://dam.mihomes.com/media/5032613/50422.jpeg"
+ ],
+ "url": "https://www.mihomes.com/new-homes/minnesota/twin-cities/newport/cherrywood/hayward-plan/673-tulare-terrace",
+ "brand": {
+ "@type": "Organization",
+ "parentOrganization": {
+ "@type": "Organization",
+ "name": "M/I Homes"
+ },
+ "name": "Cherrywood"
+ },
+ "address": {
+ "@type": "PostalAddress",
+ "streetAddress": "673 Tulare Terrace",
+ "addressLocality": "Newport",
+ "addressRegion": "MN",
+ "postalCode": "55055",
+ "addressCountry": "US"
+ },
+ "geo": {
+ "@type": "GeoCoordinates",
+ "latitude": 44.8631,
+ "longitude": -92.98438
+ },
+ "telephone": "+17635867275",
+ "offers": {
+ "@type": "Offer",
+ "url": "/new-homes/minnesota/twin-cities/newport/cherrywood/hayward-plan/673-tulare-terrace",
+ "price": "384000.00",
+ "priceCurrency": "USD",
+ "priceValidUntil": "08-12-2026",
+ "itemCondition": "https://schema.org/NewCondition",
+ "availability": "https://schema.org/InStock"
+ },
+ "model": "https://www.mihomes.com/new-homes/minnesota/twin-cities/newport/cherrywood/hayward-plan",
+ "numberOfBedrooms": {
+ "@type": "Integer",
+ "value": 3
+ },
+ "numberOfFullBathrooms": {
+ "@type": "Integer",
+ "value": 2
+ },
+ "numberOfPartialBathrooms": {
+ "@type": "Integer",
+ "value": 1
+ },
+ "petsAllowed": true,
+ "yearBuilt": "2026",
+ "floorSize": {
+ "@type": "QuantitativeValue",
+ "value": 1722,
+ "unitCode": "FTK"
+ }
+}</script>
+<div class="modals" data-modal-container aria-hidden="true">
+ <div class="modal box" data-modal id="signup-modal">
+ <button class="modal-close" data-modal-close>
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+
+ <h2 class="h1 alt">Sign up for an M/I Homes account</h2>
+ <p>Save your favorite home plans and communities, compare home plans and share your dream home with sales associates and real estate agents.</p>
+ <p>
+ Already a member?
+ <a class="button-plain" href="/account/login">Log In to your account »</a>
+ </p>
+ <a class="button button-wide" href="/account/register">
+ <span class="button-text">
+ Sign up with email
+ </span>
+ </a>
+ </div>
+</div>
+
+<div class="product-header" data-yes="true">
+
+ <div class="product-header-row product-header__top">
+
+ <div class="product-header-centered ">
+ <div>
+ <a href="/new-homes/minnesota/twin-cities/newport/cherrywood" class="button-plain">
+ Cherrywood
+ </a>
+
+ <h1 class="header-seo-h2">
+ 673 Tulare Terrace, Newport, MN 55055
+ <button class="aux-nav-link button-favorite-product gami-favorite-save" data-favorite-type="Home" data-favorite-id="5f7bdc46-4ac0-41f1-88ee-c09cf87c5355" data-favorite-fav-id="5f7bdc46-4ac0-41f1-88ee-c09cf87c5355" data-add-favorite>
+ <svg class="icon icon-favorite" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#favorite"></use>
+</svg>
+ <span class="aux-nav-link-action-text">
+ Favorite
+ </span>
+ </button>
+ </h1>
+ </div>
+
+ <div class="product-header__actions">
+ <a class="button button-mobile-link button-virtual-tour event-click" href="https://www.zillow.com/view-imx/ed0b4316-b9b1-4466-8c48-7037d28fa180?setAttribution=mls&wl=true&initialViewType=pano&utm_source=dashboard" target="_blank" data-event-category=VirtualTour
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <span class="button-text">Virtual Tour</span>
+ </a>
+ </div>
+ </div>
+ </div>
+
+ <div class="product-header-row">
+ <div class="product-header-centered tooptip-container">
+ <div>
+ <dl>
+ <dt>Ready date:</dt>
+ <dd>
+ <strong class="current-size">
+ Ready Now
+ </strong>
+ </dd>
+ </dl>
+ </div>
+ <div class="product-header-price">
+
+ Price:
+ <span class="home-card-price-old">$389,015</span>
+ <span class="product-header-price-new" content="384000">$384,000</span>
+
+ <span class="product-header-calculator">
+ <a class="button-plain button-plain-icon small button-icon-right gami-mortcalc-view" data-open-modal="mortgage-payment-calculator-modal">
+ <svg class="icon icon-calculator" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#calculator"></use>
+</svg>
+ Estimate Your Monthly Payment
+ </a>
+ </span>
+ </div>
+ </div>
+ </div>
+</div> <a rel="noopener" href="/new-homes/minnesota/twin-cities/newport/cherrywood/plat map?lot=236778000105" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=533 Tulare Terrace, Newport, MN 55055&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=WHwnuc11sekr2B4Sivl2Vny4uwo=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+<div class="product-header-centered product-header-centered--contact-card-only">
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Cherrywood</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://maps.google.com/maps?q=533+Tulare+Terrace%3cbr%3eNewport%2c+MN+55055">
+ 533 Tulare Terrace<br>Newport, MN 55055
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+</div><div class="product-header">
+ <div class="product-header product-header-navigation">
+ <nav class="product-header-subnav" data-subnav="">
+ <div class="product-header-subnav-wrapper">
+ <div class="product-header-subnav-mobile-bottom">
+ <a class="button button-contact-us" href="/support/sales">
+ <span class="button-text">
+ Contact Us
+ </span>
+ </a>
+ </div>
+
+
+ <a class="product-header-subnav-toggle subnav-link" data-subnav-toggle="">
+ <span class="text" data-subnav-text="">Overview</span>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </a>
+
+ <ul class="product-header-subnav-links" data-subnav-links=""></ul>
+ </div>
+ </nav>
+
+ <div class="product-header-subnav-spacer"></div>
+
+ <a href="#overview" class="product-header__back-to-top is-hidden" data-back-to-top>
+ <div class="arrow arrow--up"></div>
+ </a>
+ </div>
+</div><section class="content-inner-with-sidebar content-inner-with-sidebar-right">
+
+
+ <div class="content-inner-content">
+
+
+
+
+
+<section class="plan-specification">
+ <h2 class="plan-specification__header">
+ About 673 Tulare Terrace
+ </h2>
+ <a class="plan-specification__get-directions button-plain button-plain-alt negative-top gami-directions-exit" target="_blank" href="https://www.google.com/maps/search/?api=1&query=44.8631,-92.98438">Get Directions</a>
+ <ul class="plan-specification__list">
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sq-ft" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sq-ft"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">square feet</span>
+ <strong class="plan-specification-item__value">
+ 1,722
+ </strong>
+ </div>
+ </li>
+ <li class="stories-specification">
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-homes" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#homes"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">stories</span>
+ <strong class="plan-specification-item__value">
+ 2
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-bed" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#bed"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">bedrooms</span>
+ <strong class="plan-specification-item__value">
+ 3
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-shower" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#shower"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">full bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 2
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-sink" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#sink"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">half bathrooms</span>
+ <strong class="plan-specification-item__value">
+ 1
+ </strong>
+ </div>
+ </li>
+ <li>
+ <div class="plan-specification-item">
+ <span class="plan-specification-item__icon">
+ <svg class="icon icon-car" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#car"></use>
+</svg>
+ </span>
+ <span class="plan-specification-item__label">garages</span>
+ <strong class="plan-specification-item__value">
+ 2
+ <span data-tooltip="The most common approach to a home's garage, the front load garage incorporates the garage entry into a home's front elevation.">(Front Load)</span>
+
+ </strong>
+ </div>
+ </li>
+ </ul>
+</section>
+
+<div class="overview-table">
+ <div class="overview-table-table">
+ <dl>
+ <dt>City</dt>
+ <dd>Newport, MN</dd>
+
+ <dt>Owner's Suite</dt>
+ <dd>First Floor</dd>
+
+ <dt>County</dt>
+ <dd>Washington</dd>
+
+ <dt>Home Type</dt>
+ <dd>Townhome</dd>
+
+ <dt>School District</dt>
+ <dd>South Washington County Sd</dd>
+
+ <dt>Foundation Type</dt>
+ <dd>Slab</dd>
+
+ <dt>Home Plan</dt>
+ <dd>Hayward</dd>
+
+ <dt>MLS Number</dt>
+ <dd>7120112</dd>
+
+ <dt>Homesite</dt>
+ <dd>105</dd>
+
+ <dt> Base Plan Width & Depth</dt>
+ <dd>24 x 49.5 </dd>
+ </dl>
+ </div>
+</div>
+<article class="faq__question-item faq__question-item--mobile-only">
+ <button class="faq__question" data-expander="" aria-controls="community-series-teaser" aria-expanded="false">
+ <span class="faq__icon-wrapper">
+ <span class="faq__icon gami-directions-view">
+ <svg class="icon icon-arrow" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#arrow"></use>
+</svg>
+ </span>
+ </span>
+ Part of the Carriage Collection
+ <span class="show-hide-text hidden-text">Hide</span>
+ </button>
+ <div class="faq__answer preview-box preview-box--series-tout" id="community-series-teaser" role="region" tabindex="-1">
+ <a class="preview-box__image preview-box__preview one-fourth" href="/new-homes/minnesota/twin-cities/newport/cherrywood/series/carriage-collection">
+ <img data-dam-generated alt="Preview image" height="3000" loading="lazy" sizes="(min-width: 48rem) 193px, 100vw" src="https://dam.mihomes.com/media/4570653/50421.jpeg?timestamp=2026-03-30T15%3A18%3A57.9901214" srcset="https://dam.mihomes.com/media/4570653/50398.jpeg?timestamp=2026-03-30T15%3A18%3A53.0103702 300w, https://dam.mihomes.com/media/4570653/50397.jpeg?timestamp=2026-03-30T15%3A18%3A50.1069282 600w, https://dam.mihomes.com/media/4570653/50423.jpeg?timestamp=2026-03-30T15%3A19%3A01.1426567 900w, https://dam.mihomes.com/media/4570653/50396.jpeg?timestamp=2026-03-30T15%3A18%3A47.1246228 1200w, https://dam.mihomes.com/media/4570653/50421.jpeg?timestamp=2026-03-30T15%3A18%3A57.9901214 1800w, https://dam.mihomes.com/media/4570653/50422.jpeg?timestamp=2026-03-30T15%3A18%3A59.0255609 2400w" title="Bayfield" width="4000" class="cover-image" />
+ </a>
+ <div class="preview-box__content ">
+ <div class="preview-box__text__series-teaser">
+ <h3>Part of the Carriage Collection</h3>
+ <p>
+ The Carriage Collection features 2-story townhomes with thoughtfully designed layouts that emphasize connection and everyday convenience. Choose from four floorplan options, each offering 3 bedrooms and 3–4 bathrooms, finished with refined exterior details like front-load garages, James Hardie® siding, and striking black-framed windows.
+ </p>
+ </div>
+ <p>
+ <a class="button" href="/new-homes/minnesota/twin-cities/newport/cherrywood/series/carriage-collection">Learn More</a>
+ </p>
+ </div>
+ </div>
+</article> <h2>
+ New Construction Townhome in Newport, MN | 3 Bedrooms, Loft & 2-Car Garage
+ </h2>
+ <div class="content-inner-content__capped-mobile-content">
+ <div data-slate-type="paragraph">
+<div>
+<p>Welcome to <strong>673 Tulare Terrace in Newport, Minnesota</strong>—a beautifully designed new construction townhome by M/I Homes, offering modern comfort and low-maintenance living in a thoughtfully planned community. With 1,722 square feet across two stories, this home features 3 bedrooms and 2.5 bathrooms, providing the ideal balance of space and functionality.</p>
+<p>Step inside to an inviting open-concept main level where the living, dining, and gathering spaces flow seamlessly together—perfect for both everyday living and entertaining. Carefully selected finishes and a well-designed floorplan create a sense of comfort and cohesion throughout the home. A GE® stainless steel appliance package adds both style and modern convenience to the kitchen.</p>
+<p><strong>Key Features:</strong></p>
+<ul>
+ <li>2-car front-load garage</li>
+ <li>Covered front porch for a warm welcome</li>
+ <li>Private patio for outdoor relaxation and entertaining</li>
+ <li>Functional mud room for everyday organization</li>
+ <li>Spacious upstairs loft offering flexible living space</li>
+ <li>Electric fireplace in the family room for added warmth and ambiance</li>
+</ul>
+<p>Upstairs, the owner’s suite provides a private retreat with an en-suite bathroom designed for comfort and convenience. Additional bedrooms offer flexibility for family, guests, or a home office, while the loft creates a versatile secondary living area.</p>
+<p>Located in the peaceful <strong>Cherrywood community in Newport</strong>, this townhome offers convenient access to nearby parks, green spaces, and outdoor recreation. Well-maintained surroundings and a welcoming atmosphere add to the home’s overall appeal.</p>
+<p>Thoughtfully designed and move-in ready, 673 Tulare Terrace delivers stylish, low-maintenance living with the quality craftsmanship M/I Homes is known for.</p>
+</div>
+</div>
+
+ <!-- and done -->
+ <h3>
+ About the Community
+ </h3>
+ <p>
+ Cherrywood is a thoughtfully planned home community in Newport, MN, offering a peaceful setting just 20 minutes from Downtown St. Paul and with easy access to Highways 10 and 494. The location places residents close to Inver Grove Heights, Cottage Grove, and Minneapolis–St. Paul International Airport, while still feeling tucked into a quieter, more natural environment near the Mississippi River.
+
+The community features both villa homes and townhomes designed for low‑maintenance living. Open, functional floorplans emphasize main‑level comfort, flexible gathering spaces, and modern layouts that support everyday routines without added complexity. Homes are arranged to feel welcoming and easy to maintain.
+
+Cherrywood provides an association‑maintained lifestyle with lawn care and snow removal included, allowing more time to enjoy nearby parks, trails, and outdoor recreation. The wooded backdrop and neighborhood layout create a calm, connected atmosphere that feels removed without being isolated.
+
+Cherrywood is served by South Washington County Schools (ISD 833). With its blend of convenience, natural surroundings, and easy‑living home designs, the community offers a relaxed lifestyle that balances comfort, access, and long‑term livability.
+ <br />
+ <a class="button-plain button-plain-alt" href="/new-homes/minnesota/twin-cities/newport/cherrywood">Learn more about this community »</a>
+ </p>
+ </div>
+ <button class="faq__question color-aqua" aria-expanded="false" data-read-more="">
+ <span class="faq__icon-wrapper">
+ <span class="faq__icon">
+ <svg class="icon icon-arrow" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#arrow"></use>
+</svg>
+ </span>
+ </span>
+ <span data-read-more-collapsed="">Read More</span>
+ <span data-read-more-expanded="">Show Less</span>
+ <span class="show-hide-text hidden-text">Show</span>
+ </button>
+ <div class="matterport-wrapper">
+ <iframe loading="lazy" class="box-full" width="803" height="480" src="https://my.matterport.com/show/?m=qy1yHW5EpHP&mls=1" frameborder="0" allowfullscreen allow="vr" style="align-self: center" data-subnav-page-link="3D Tour" id="3dTour"></iframe>
+ </div>
+
+
+
+ </div>
+
+ <div class="content-sidebar-right">
+ <a rel="noopener" href="/new-homes/minnesota/twin-cities/newport/cherrywood/plat map?lot=236778000105" target="_blank" class="platmap-teaser">
+ <img width="326" height="175" class="platmap-teaser__map-image" alt="" src="https://maps.googleapis.com/maps/api/staticmap?size=652x280&center=533 Tulare Terrace, Newport, MN 55055&zoom=20&sensor=false&visual_refresh=true&scale=2&key=REDACTED-GOOGLE-KEY&signature=WHwnuc11sekr2B4Sivl2Vny4uwo=" />
+ <img class="platmap-teaser__map-controls" src="/assets/toolkit/images/controls.png" alt="" />
+ <img class="platmap-teaser__map-toggles" src="/assets/toolkit/images/toggles.png" alt="" />
+ <img class="platmap-teaser__map-compass" src="/assets/toolkit/images/compass.png" alt="" />
+ <img class="platmap-teaser__map-pin" alt="" src="https://cdn.mihomes.com/-/media/Images/MIHomes/PlatMaps/Interactive/POIs/POI%20Pins%20Turquiose%20Model.png" />
+ <span class="button platmap-teaser__map-button">Interactive Map</span>
+ </a>
+
+ <address class="contact-card">
+ <div class="contact-card__lid lid_closed">closed now</div>
+
+ <div class="contact-card__main-information">
+ <h6 class="strong large">Cherrywood</h6>
+
+ <button class="contact-card__expander" onclick="(function(e){var card = e.target.parentElement.parentElement;card.classList.toggle('contact-card--expanded');return false;})(arguments[0]);return false;">Show Hours</button>
+ <div class="contact-card__schedule-wrapper">
+ <a target="_blank" href="https://maps.google.com/maps?q=533+Tulare+Terrace%3cbr%3eNewport%2c+MN+55055">
+ 533 Tulare Terrace<br>Newport, MN 55055
+ </a>
+
+ <ul class="contact-card__schedule">
+ <li>
+ <span>Mon:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Tue:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Wed:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Thu:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Fri:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sat:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ <li>
+ <span>Sun:</span>
+ <span class="contact-card__time">11:00AM - 6:00PM</span>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </address>
+
+
+
+ <figure class="lead-form lead-form-sidebar lead-form-sidebar--compact lead-form-sidebar-signup">
+ <div class="lead-form-container">
+ <div id="lead-sidebar-header" class="lead-form-sidebar-header lead-form-sidebar-header-image">
+ <div id="isa-information" data-sidebar-section="1">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="zhassing@mihomes.com-0811202407.jpg" height="128" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/2181136/50421.jpeg?timestamp=2024-08-11T11%3A09%3A09.5132974" srcset="https://dam.mihomes.com/media/2181136/50398.jpeg?timestamp=2024-08-11T11%3A09%3A08.9430182 300w, https://dam.mihomes.com/media/2181136/50397.jpeg?timestamp=2024-08-11T11%3A09%3A08.3945113 600w, https://dam.mihomes.com/media/2181136/50423.jpeg?timestamp=2024-08-11T11%3A09%3A06.2986706 900w, https://dam.mihomes.com/media/2181136/50396.jpeg?timestamp=2024-08-11T11%3A09%3A05.2296897 1200w, https://dam.mihomes.com/media/2181136/50421.jpeg?timestamp=2024-08-11T11%3A09%3A09.5132974 1800w, https://dam.mihomes.com/media/2181136/50422.jpeg?timestamp=2024-08-11T11%3A09%3A07.8945354 2400w" title="zhassing@mihomes.com-0811202407" width="128" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="chamilton@MIHOMES.com-0217202606.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4419752/50421.jpeg?timestamp=2026-02-17T11%3A58%3A33.8940544" srcset="https://dam.mihomes.com/media/4419752/50398.jpeg?timestamp=2026-02-17T11%3A58%3A32.4287515 300w, https://dam.mihomes.com/media/4419752/50397.jpeg?timestamp=2026-02-17T11%3A58%3A31.8932682 600w, https://dam.mihomes.com/media/4419752/50423.jpeg?timestamp=2026-02-17T11%3A58%3A32.6845671 900w, https://dam.mihomes.com/media/4419752/50396.jpeg?timestamp=2026-02-17T11%3A58%3A31.3594776 1200w, https://dam.mihomes.com/media/4419752/50421.jpeg?timestamp=2026-02-17T11%3A58%3A33.8940544 1800w, https://dam.mihomes.com/media/4419752/50422.jpeg?timestamp=2026-02-17T11%3A58%3A32.9638973 2400w" title="chamilton@MIHOMES.com-0217202606" width="96" class="cover-image" />
+ </div>
+ </div>
+ <h3 class="">Have questions for us?</h3>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=7635867275'>(763) 586-7275</a>
+ </p>
+ </div>
+ <div id="form-agent-header" class="lead-form-sidebar-section right" style="display: none;">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+
+ </div>
+ <div class="lead-form-sidebar-form" data-lead-form-sidebar="">
+ <div class="lead-form-sidebar-errors"></div>
+<form action="/api/LeadGenFormSidebar/LeadGenFormSidebar" data-gami-event="gami-form-question" data-parsley-validate="" data-sidebar-hidden-required="" data-sidebar-nav-check="visit_sidebar" method="post" name="basic_sidebar" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="7a111fd4-a756-4406-8178-0460bcbe8576" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Inventory" /><input id="PostType" name="PostType" type="hidden" value="sidebar" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:32 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="ItemId" name="ItemId" type="hidden" value="5f7bdc46-4ac0-41f1-88ee-c09cf87c5355" /><input id="HomeType" name="HomeType" type="hidden" value="Townhome" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 443px;">
+ <div class="align-left center lead-form-sidebar-section" data-cta="Request Information" data-sidebar-section="0">
+ <div>
+
+ <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="">
+ </div>
+
+ <div class="form-field no-label-errors" style="margin-top: 1px">
+ <label for="fullname_sidebar"></label>
+ <input type="text"
+ name="FormFullName"
+ id="fullname_sidebar"
+ placeholder="Full Name"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required." data-parsley-trigger="blur"
+ maxlength="60"
+ data-parsley-filter-emoji=""
+ >
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormEmailAddress"
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="phone_sidebar">Phone Number</label>
+ <input class="gami-tel" type="tel"
+ autocomplete="tel-national"
+ name="FormPhoneNumber"
+ id="phone_sidebar"
+ placeholder="Phone Number" +
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ value=""
+
+ data-parsley-phone-number="" data-parsley-trigger="blur"
+ maxlength="25">
+ </div>
+
+ <div class="form-field no-label-errors">
+ <label for="comments_sidebar">Questions or Comments</label>
+ <textarea rows="5"
+ name="FormComments"
+ id="comments_sidebar"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000">Please send me information about 673 Tulare Terrace</textarea>
+ </div>
+ </div>
+ <div>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox hide" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input data-parsley-multiple="visit_sidebar" name="visit_sidebar" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to plan a visit</span>
+ </label>
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormEmailOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+ <input checked data-parsley-multiple="visit_sidebar" name="FormSMSAssociateCommunicationsOptIn" type="checkbox" value="true">
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" data-sidebar-section="1" tabindex="-1">
+ <div>
+ <h4>Plan a visit</h4>
+ <p>Select your preferred day and time and we’ll help set up the perfect visit.</p>
+ </div>
+ <div>
+ <div class="select no-label-errors">
+ <label for="tripday_sidebar"> </label>
+ <div class="select-wrap">
+<select data-nested-select="#select-triptime-block-sidebar" data-parsley-group="visit_sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+
+ <div class="select no-label-errors">
+ <label for="triptime_sidebar"> </label>
+ <div class="select-wrap">
+<select data-parsley-group="visit_sidebar" id="triptime_sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ </div>
+ <div aria-hidden="true" class="align-center lead-form-sidebar-section right" dta-cta="Continue" data-sidebar-section="2" data-agent-section tabindex="-1">
+
+ <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0">
+ <div class="align-left center lead-form-sidebar-section" data-sidebar-section="0">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button form-submit">
+ <span class="button-text">Request Information</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-left lead-form-sidebar-section right" data-sidebar-section="1">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit" disabled tabindex="-1">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="2">
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button" disabled tabindex="-1">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit" disabled tabindex="-1">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+ </div>
+ </div>
+</form> <div class="lead-form-sidebar-carousel" data-sidebar-section-shown="0" style="height: 25px;">
+ <div class="align-center center lead-form-sidebar-section" data-sidebar-section="0">
+ <button class="button-plain small" data-open-modal="privacy-policy-modal" href="javascript:void()">Privacy Policy</button>
+ </div>
+ <div class="align-center lead-form-sidebar-section right" data-sidebar-section="1">
+ <button class="button-plain small" data-sidebar-nav="0" tabindex="-1">« Go Back</button>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <!-- THANK YOU MESSAGE -->
+ <div class="lead-form-container-success">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-success lead-form-sidebar-header-image">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" data-parsley-validate="" method="POST" name="thanksyou_sidebar" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+ <div>
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+ <div class="form-field form-field-password">
+ <label for="password"> </label>
+ <input data-parsley-required-message="Password is required." data-parsley-valid-password="" id="password" minlength="8" name="password" placeholder="Password" required="" type="password" data-parsley-filter-emoji="" data-parsley-trigger="blur">
+ <button class="password-input-change" data-input-change="" type="button">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)" tabindex="0">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">
+ Create Account
+ </span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ <h3 class="h3 preview-box__header">
+ Incentives
+ </h3>
+ <a class="incentive incentive__sidebar--simple" href="/new-homes/minnesota/twin-cities/incentives/2026-quick-move-in-rates">
+ <div class="incentive-background">
+ <img data-dam-generated alt="Lower Payments" height="1200" loading="eager" sizes="(min-width: 64rem) 328px, 100vw" src="https://dam.mihomes.com/media/3398695/50421.jpeg" srcset="https://dam.mihomes.com/media/3398695/50398.jpeg?timestamp=2025-07-15T17%3A06%3A54.6851490 300w, https://dam.mihomes.com/media/3398695/50397.jpeg?timestamp=2025-07-15T17%3A06%3A53.2195117 600w, https://dam.mihomes.com/media/3398695/50423.jpeg?timestamp=2025-07-15T17%3A07%3A01.3602581 900w, https://dam.mihomes.com/media/3398695/50396.jpeg?timestamp=2025-07-15T17%3A06%3A51.6143482 1200w, https://dam.mihomes.com/media/3398695/50421.jpeg?timestamp=2025-07-15T17%3A06%3A59.7040981 1800w, https://dam.mihomes.com/media/3398695/50422.jpeg?timestamp=2025-07-15T17%3A07%3A00.6417884 2400w" title="LowerPayments-Header-1800x430" width="1800" class="cover-image cover-image--abs" />
+ <div class="incentive__badge">
+<img data-dam-generated alt="Lower Payments" height="250" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3398693/50421.jpeg?timestamp=2025-07-15T17%3A07%3A00.4627689" srcset="https://dam.mihomes.com/media/3398693/50398.jpeg?timestamp=2025-07-15T17%3A06%3A56.7887259 300w, https://dam.mihomes.com/media/3398693/50397.jpeg?timestamp=2025-07-15T17%3A06%3A53.7611340 600w, https://dam.mihomes.com/media/3398693/50423.jpeg?timestamp=2025-07-15T17%3A07%3A00.9731584 900w, https://dam.mihomes.com/media/3398693/50396.jpeg?timestamp=2025-07-15T17%3A06%3A50.6414775 1200w, https://dam.mihomes.com/media/3398693/50421.jpeg?timestamp=2025-07-15T17%3A07%3A00.4627689 1800w, https://dam.mihomes.com/media/3398693/50422.jpeg?timestamp=2025-07-15T17%3A07%3A01.1883498 2400w" title="Low Payments Icon 250x250" width="250" class="incentive__badge-background" maxwidth="2400" /> </div>
+ </div>
+ <div class="incentive-inner">
+ <span class="incentive-title--wrapper">
+ <p class="incentive-title">Move in Now, Pay Less</p>
+ </span>
+ <p class="incentive-sub-headline">For a limited time, secure a 2/1 buydown with first-year rates as low as 3.5% Rate**/ 5.659% APR**on a 30-year fixed conventional loan through M/I Financial, LLC. Learn more about how you can increase your home buying power today!</p>
+ <p class="incentive-button--wrapper">
+ <span class="button button-small" href="/new-homes/minnesota/twin-cities/incentives/2026-quick-move-in-rates">
+ <span class="button-text uppercase">View Details</span>
+ </span>
+ </p>
+ </div>
+ </a>
+
+</div>
+</section>
+
+ <div id="design" class="box box-full box-no-padding-bottom" data-subnav-page-link="Design Options">
+ <div class="content-inner-centered">
+ <h2>Add the perfect finishing touch</h2>
+ <p class="subtitle content-inner-centered-narrow negative-top">
+ Put your personal touch on these Quick Move-In Homes with some selections from our Design Studio.
+ </p>
+ <div class="button-tooltip-wrapper">
+ <a class="button button-tooltip event-click" href="https://edc.envisionoptions.com/browser.aspx?NHTNumber=MIHOMES&Loc1=100&Lev1=CORP&Loc2=236&Lev2=DIV&HomeNumber=131947&Page=Confirmselection&utm_source=mihomes.com&utm_campaign=&utm_content=cherrywood-Hayward-673-Tulare-Terrace&utm_term=" target="_blank" data-event-category=OptionsGallery
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ See This Home's Options
+ </a>
+
+
+ </div>
+ <a class="button" href="/design/design-studio">
+ <span class="button-text">
+ Visit a Design Studio
+ </span>
+ </a>
+ </div>
+ </div>
+ <div class="box box-full box-no-padding-top">
+ <div class="contained-width">
+ <hr class="hr-even">
+
+ <h4>Incentives</h4>
+ <article class="preview-box ">
+ <a class="preview-box-link" href="/new-homes/minnesota/twin-cities/incentives/2026-fair-savings">
+ <div class="preview-box__image preview-box__preview one-third">
+ <img data-dam-generated alt="RTG | Fair Savings" height="5000" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4861992/50421.jpeg" srcset="https://dam.mihomes.com/media/4861992/50398.jpeg?timestamp=2026-06-11T14%3A44%3A58.2553589 300w, https://dam.mihomes.com/media/4861992/50397.jpeg?timestamp=2026-06-11T14%3A44%3A52.4050967 600w, https://dam.mihomes.com/media/4861992/50423.jpeg?timestamp=2026-06-11T14%3A45%3A13.7503130 900w" title="FairSavings-Card" width="7500" class="cover-image" maxwidth="900" />
+ </div>
+ <div class="preview-box__content">
+ <h3 class="h3 preview-box__header">
+ Step Right Up to Savings Fair for You
+
+
+ </h3>
+ <p class="preview-box__text">The fair's in town and so are the deals. Purchase your new M/I Home now and win big on savings.</p>
+ <p>
+ <span class="button-plain button-plain-alt" href="/new-homes/minnesota/twin-cities/incentives/2026-fair-savings">View Details »</span>
+ </p>
+ </div>
+ </a>
+ </article>
+ <article class="preview-box ">
+ <a class="preview-box-link" href="/new-homes/minnesota/twin-cities/incentives/2026-quick-move-in-rates">
+ <div class="preview-box__image preview-box__preview one-third">
+ <img data-dam-generated alt="Lower Payments" height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/3398695/50421.jpeg" srcset="https://dam.mihomes.com/media/3398695/50398.jpeg?timestamp=2025-07-15T17%3A06%3A54.6851490 300w, https://dam.mihomes.com/media/3398695/50397.jpeg?timestamp=2025-07-15T17%3A06%3A53.2195117 600w, https://dam.mihomes.com/media/3398695/50423.jpeg?timestamp=2025-07-15T17%3A07%3A01.3602581 900w" title="LowerPayments-Header-1800x430" width="1800" class="cover-image" maxwidth="900" />
+ </div>
+ <div class="preview-box__content">
+ <h3 class="h3 preview-box__header">
+ Move in Now, Pay Less
+
+
+ </h3>
+ <p class="preview-box__text">For a limited time, secure a 2/1 buydown with first-year rates as low as 3.5% Rate**/ 5.659% APR**on a 30-year fixed conventional loan through M/I Financial, LLC. Learn more about how you can increase your home buying power today!</p>
+ <p>
+ <span class="button-plain button-plain-alt" href="/new-homes/minnesota/twin-cities/incentives/2026-quick-move-in-rates">View Details »</span>
+ </p>
+ </div>
+ </a>
+ </article>
+ </div>
+ </div>
+
+ <div id="floor" class="box box-full box-last event-inview" data-subnav-page-link="FloorPlan" data-event-category=Floorplan
+ data-event-action=scroll
+ data-event-label=view
+>
+ <div class="content-inner-centered content-inner-centered--mobile">
+<img data-dam-generated alt="Hayward Floorplan" height="1200" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/1806504/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000" srcset="https://dam.mihomes.com/media/1806504/50398.jpg?timestamp=2024-05-21T06%3A45%3A50.8866667 300w, https://dam.mihomes.com/media/1806504/50397.jpg?timestamp=2024-05-21T06%3A41%3A37.5066667 600w, https://dam.mihomes.com/media/1806504/50423.jpg?timestamp=2024-05-21T07%3A32%3A10.2100000 900w, https://dam.mihomes.com/media/1806504/50396.jpg?timestamp=2024-05-21T06%3A37%3A15.4633333 1200w, https://dam.mihomes.com/media/1806504/50421.jpg?timestamp=2024-05-21T07%3A19%3A20.9800000 1800w, https://dam.mihomes.com/media/1806504/50422.jpg?timestamp=2024-05-21T07%3A24%3A24.0466667 2400w" title="MINN-Hayward-Firstfloor" width="1800" class="cover-image cover-image--abs" /> <h2>Floorplan Options for Your New Home</h2>
+ <p class="content-inner-centered-narrow negative-top subtitle">The Hayward accommodates a variety of household living arrangements with its highly desired flexibility and modern design. Explore the many possibilities in the popular Hayward plan.</p>
+ <a target="_blank" class="button floor-plan-options__button event-click" href="https://rifp.ml3ds-icon.com/#/floorplan/501024?pcoLink=65173&pco=1350797&reverseFloorPlan=false" data-event-category=Floorplan
+ data-event-action=click
+ data-event-label=fullscreen
+>
+ <svg class="icon icon-fullscreen" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#fullscreen"></use>
+</svg>
+ <span class="button-text">
+ Show Floorplan
+ </span>
+ </a>
+ </div>
+ <section class="floor-plan-options">
+ <iframe loading="lazy" id="floor-plan" data-fullsize class="floor-plan-options__iframe" data-src="https://rifp.ml3ds-icon.com/#/floorplan/501024?pcoLink=65173&pco=1350797&reverseFloorPlan=false" scrolling="no" style="overflow: hidden">
+ <p>Your browser does not support iframes.</p>
+ </iframe>
+ </section>
+ </div>
+
+ <div class="box box-full box-no-padding-top-bottom " id="">
+ <div class="content-inner-centered">
+ <div class="leadgenTitleBlock">
+ <h2 class="h2">Ready to plan a visit? We can help</h2>
+ <p class="subtitle marginless">Send us your preferred time to stop by and a sales representative will take care of the rest</p>
+ </div>
+ <section class="lead-form">
+ <div id="lead-form-block-user-info" class="lead-form-container lead-form-block" data-lead-form-sidebar="">
+ <aside class="lead-form-block__details" style="">
+ <div class="lead-form-isa__images">
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="zhassing@mihomes.com-0811202407.jpg" height="128" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/2181136/50421.jpeg?timestamp=2024-08-11T11%3A09%3A09.5132974" srcset="https://dam.mihomes.com/media/2181136/50398.jpeg?timestamp=2024-08-11T11%3A09%3A08.9430182 300w, https://dam.mihomes.com/media/2181136/50397.jpeg?timestamp=2024-08-11T11%3A09%3A08.3945113 600w, https://dam.mihomes.com/media/2181136/50423.jpeg?timestamp=2024-08-11T11%3A09%3A06.2986706 900w, https://dam.mihomes.com/media/2181136/50396.jpeg?timestamp=2024-08-11T11%3A09%3A05.2296897 1200w, https://dam.mihomes.com/media/2181136/50421.jpeg?timestamp=2024-08-11T11%3A09%3A09.5132974 1800w, https://dam.mihomes.com/media/2181136/50422.jpeg?timestamp=2024-08-11T11%3A09%3A07.8945354 2400w" title="zhassing@mihomes.com-0811202407" width="128" class="cover-image" />
+ </div>
+ <div class="lead-form-isa__image lead-form-isa__image--of-2">
+ <img data-dam-generated alt="chamilton@MIHOMES.com-0217202606.jpg" height="96" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4419752/50421.jpeg?timestamp=2026-02-17T11%3A58%3A33.8940544" srcset="https://dam.mihomes.com/media/4419752/50398.jpeg?timestamp=2026-02-17T11%3A58%3A32.4287515 300w, https://dam.mihomes.com/media/4419752/50397.jpeg?timestamp=2026-02-17T11%3A58%3A31.8932682 600w, https://dam.mihomes.com/media/4419752/50423.jpeg?timestamp=2026-02-17T11%3A58%3A32.6845671 900w, https://dam.mihomes.com/media/4419752/50396.jpeg?timestamp=2026-02-17T11%3A58%3A31.3594776 1200w, https://dam.mihomes.com/media/4419752/50421.jpeg?timestamp=2026-02-17T11%3A58%3A33.8940544 1800w, https://dam.mihomes.com/media/4419752/50422.jpeg?timestamp=2026-02-17T11%3A58%3A32.9638973 2400w" title="chamilton@MIHOMES.com-0217202606" width="96" class="cover-image" />
+ </div>
+ </div>
+ <p>
+ Ask about current offers or more details about this property, or call <a class='button-plain button-plain-inline gami-tel' href='/api/Inquiry/RegisterPhoneClickGoal?linkUrl=7635867275'>(763) 586-7275</a>
+ </p>
+ </aside>
+<form action="/api/LeadGenFormBlock/LeadGenFormBlock" class="lead-form-block__form" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""><input id="IsmId" name="IsmId" type="hidden" value="7a111fd4-a756-4406-8178-0460bcbe8576" /><input id="LeadGenFormType" name="LeadGenFormType" type="hidden" value="Model" /><input id="PostType" name="PostType" type="hidden" value="block" /><input id="PageRequestTime" name="PageRequestTime" type="hidden" value="8/11/2026 4:44:32 AM" /><input id="ShouldShowDivision" name="ShouldShowDivision" type="hidden" value="False" /><input id="ShouldShowAddress" name="ShouldShowAddress" type="hidden" value="False" /><input id="ShowAgentQuestion" name="ShowAgentQuestion" type="hidden" value="True" /><input id="FormAgentEmailAddress" name="FormAgentEmailAddress" type="hidden" value="" /><input id="ItemId" name="ItemId" type="hidden" value="5f7bdc46-4ac0-41f1-88ee-c09cf87c5355" /><input id="HomeType" name="HomeType" type="hidden" value="Townhome" /><input id="UserSubmit" name="UserSubmit" type="hidden" value="True" /> <div class="form-field no-label-errors first-form-field">
+ <input type="text"
+ name="FormLastName"
+ id="lastName_sidebar"
+ placeholder="LastName"
+ value=""
+ maxlength="30"
+ data-parsley-filter-emoji="" hidden>
+ </div>
+ <div class="form-field">
+ <label for="fullname">Full Name </label>
+ <input type="text"
+ name="FormFullName"
+ placeholder="John Doe"
+ value=""
+ required='required'
+ data-parsley-required-message="Full Name is required."
+ maxlength="60"
+
+ data-parsley-filter-emoji=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="emailaddress">Email Address </label>
+ <input type="email"
+ name="FormEmailAddress" ,
+ id="emailaddress"
+ placeholder="you@example.com"
+ value=""
+
+ required='required'
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ data-parsley-remote-reverse="false" data-parsley-remote-options="{ "data": { "token": "value" } }"
+ maxlength="50">
+ </div>
+ <div class="form-field">
+ <label for="phone">Phone Number </label>
+ <input class="gami-tel" type="tel"
+ name="FormPhoneNumber"
+ id="phone"
+ placeholder="5555555555"
+ required='required'
+ data-parsley-required-if="SMS" data-parsley-required-if-message="Phone Number is needed for SMS communications"
+ data-parsley-required-message="Phone Number is required."
+ maxlength="25"
+ value=""
+
+ data-parsley-phone-number=""
+ data-parsley-trigger="blur">
+ </div>
+ <div class="form-field">
+ <label for="input">Questions or Comments </label>
+ <textarea rows="5"
+ name="FormComments"
+ id="input"
+ placeholder="Add any questions or comments"
+ required='required'
+ data-parsley-trigger="blur"
+ data-parsley-filter-emoji=""
+ maxlength="1000"></textarea>
+ </div>
+ <div class="lead-form-block__contacts">
+ <div class="form-field select" {="">
+ <label for="tripday_block">Preferred Day <em> (Optional)</em></label>
+ <div class="select-wrap">
+ <div class="select-wrap">
+<select date-nested-select="#select-triptime-block-sidebar" id="tripday_sidebar" name="PreferredDay"><option value="">Select a Day</option>
+<option value="Monday">Monday</option>
+<option value="Tuesday">Tuesday</option>
+<option value="Wednesday">Wednesday</option>
+<option value="Thursday">Thursday</option>
+<option value="Friday">Friday</option>
+<option value="Saturday">Saturday</option>
+<option value="Sunday">Sunday</option>
+</select> <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+
+ <div class="form-field select" {="">
+ <label for="triptime_block">Preferred Time <em> (Optional)</em></label>
+ <div class="select-wrap">
+
+<select id="select-triptime-block-sidebar" name="PreferredTime"><option value="">Select a Time</option>
+<option value="Morning">Morning</option>
+<option value="Afternoon">Afternoon</option>
+<option value="Evening">Evening</option>
+</select>
+ <svg class="icon icon-triangle" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#triangle"></use>
+</svg>
+ </div>
+ </div>
+ </div>
+ <div class="lead-form-block__checkboxes-container">
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input
+ data-parsley-multiple="visit_sidebar"
+ name="FormIsLicensedAgent"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I am a licensed real estate agent.</span>
+ </label>
+
+
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormEmailOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Email me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">Text me about featured products, events and promotions in my area</span>
+ </label>
+ <label class="checkbox" data-a11y-focus="">
+ <span class="checkbox-check">
+
+ <input checked
+ data-parsley-multiple="visit_sidebar"
+ name="FormSMSAssociateCommunicationsOptIn"
+ type="checkbox"
+ value="true">
+
+ <span class="checkbox-check-dot"></span>
+ </span>
+ <span class="checkbox-label">I would like to communicate with M/I Homes associates via text</span>
+ </label>
+ <div class="lead-form-block__submit">
+ <div class="form-field form-field-no-label">
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+
+ <button class="button">
+ <span class="button-text">Plan my visit</span>
+ </button>
+ </div>
+ </div>
+
+ <span class="align-center">
+ <a class="button-plain small" data-open-modal="privacy-policy-modal">Privacy Policy</a>
+ </span>
+ </div>
+</form> </div>
+ <div id="lead-form-block-agent-form" class="lead-form-container lead-form-block" data-lead-form-sidebar="" data-agent-section style="display: none;">
+ <figure class="lead-form lead-form-sidebar">
+ <div id="form-agent-header" class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank you</h3>
+ <p> We'll be in touch shortly to answer your questions </p>
+ </div>
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+<form action="/new-homes/minnesota/twin-cities/newport/cherrywood/hayward-plan/673-tulare-terrace" class="lead-form-sidebar-section" data-from-query="" data-gami-event="gami-form-question" data-parsley-focus="first" data-parsley-validate="" data-save-form-value="SendThankYouEmail" method="post" name="leadgenblock" novalidate=""> <div>
+ <h4>Are you working with a REALTOR® or licensed real estate agent?</h4>
+ <label class="checkbox " data-a11y-focus="">
+ <span class="checkbox-label">It's not necessary, but we can keep them up-to-date on your home search if you are.</span>
+ </label>
+ </div>
+ <div class="form-field no-label-errors">
+ <label for="emailaddress">Email Address</label>
+ <input type="email"
+ name="FormAgentEmailAddress"
+ class="email-agent-address"
+ id="block-agent-email"
+ placeholder="Your Agent's Email"
+
+ data-parsley-type-message="Please enter a valid Email Address."
+ data-parsley-required-message="Email Address is required."
+ data-parsley-trigger="blur"
+ data-parsley-remote-validator="emailAvailable"
+ maxlength="50">
+ </div>
+ <div class="cf-turnstile" data-sitekey="0x4AAAAAAABVYXzBcy3Kb7_4"></div>
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit continue-button">
+ <span class="button-text">Continue</span>
+ </button>
+ </div>
+ <div class="form-field form-field-no-label">
+ <button id="NotAgent" class="button button-light form-submit">
+ <span class="button-text">I do not have an Agent</span>
+ </button>
+ </div>
+</form> </div>
+ </figure>
+ </div>
+
+
+
+ <div class="lead-form-container-success">
+ <figure class="lead-form lead-form-sidebar">
+ <div class="lead-form-container-success" style="display: block">
+ <div class="lead-form-sidebar-header lead-form-sidebar-header lead-form-sidebar-header-image lead-form-sidebar-header-success">
+ <div class="lead-form-isa__image lead-form-isa__image-success">
+ <svg class="icon icon-checkmark" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#checkmark"></use>
+</svg>
+ </div>
+ <h3 class="">Thank You</h3>
+ <p> Our sales representative will be in touch with you shortly to confirm appointment details </p>
+ </div>
+
+ <div class="lead-form-sidebar-form lead-form-sidebar-form-success" data-lead-form="">
+ <form class="lead-form-sidebar-section" method="POST" name="thanksyou_sidebar" data-parsley-validate="" novalidate="">
+ <div>
+ <h4>Create an account in 30 seconds</h4>
+ <p>Save your favorite communities, homes, and searches to help you find the home of your dreams. All you need is a password.</p>
+ </div>
+
+ <input id="scController" name="scController" type="hidden" value="MIHomes.Feature.Accounts.Controllers.AccountsController, MIHomes.Feature.Accounts" />
+ <input id="scAction" name="scAction" type="hidden" value="RegisterCurrentContact" />
+
+ <div>
+ <div class="form-field form-field-password">
+ <label for="password"></label>
+ <input type="password"
+ name="password"
+ id="password"
+ placeholder="Password"
+ data-parsley-valid-password=""
+ minlength="8"
+ required=""
+ data-parsley-required-message="Password is required."
+ data-parsley-trigger="blur">
+
+ <button type="button" class="password-input-change" data-input-change="">
+ <span class="password-input-change-hide">Hide</span>
+ <span class="password-input-change-show">Show</span>
+ </button>
+
+ <p class="input-note">
+ Password must be at least 8 characters and contain
+ <span tabindex="0"
+ data-tooltip="Lowercase Letters (a-z)
+ Uppercase Letters (A-Z)
+ Numbers (0-9)
+ Special Characters(&^%$#@!)">
+ at least 3 of these character types.
+ </span>
+ </p>
+ </div>
+ </div>
+
+ <div class="form-field form-field-no-label">
+ <button class="button form-submit">
+ <span class="button-text">Create Account</span>
+ </button>
+ </div>
+ </form>
+ </div>
+ </div>
+ </figure>
+ </div>
+ </section>
+ </div>
+ </div>
+
+ <div class="box box-centered box-full box-transparent" id="neraby">
+ <div class="box-full-inner">
+ <h3 class="h2">
+ Other Quick Move-In Homes
+ </h3>
+
+ <div class="featured-grid">
+ <div class="row">
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/minnesota/twin-cities/newport/cherrywood/hayward-plan/677-tulare-terrace">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Front Exterior" height="1050" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/5127200/50422.jpeg?timestamp=2026-08-07T13%3A37%3A20.9575044" srcset="https://dam.mihomes.com/media/5127200/50398.jpeg?timestamp=2026-08-07T13%3A37%3A17.1726387 300w, https://dam.mihomes.com/media/5127200/50397.jpeg?timestamp=2026-08-07T13%3A37%3A16.3569493 600w, https://dam.mihomes.com/media/5127200/50423.jpeg?timestamp=2026-08-07T13%3A37%3A21.8915380 900w, https://dam.mihomes.com/media/5127200/50396.jpeg?timestamp=2026-08-07T13%3A37%3A22.8804312 1200w, https://dam.mihomes.com/media/5127200/50421.jpeg?timestamp=2026-08-07T13%3A37%3A20.1617708 1800w, https://dam.mihomes.com/media/5127200/50422.jpeg?timestamp=2026-08-07T13%3A37%3A20.9575044 2400w" title="[L103-Z001]Front Exterior.1" width="1400" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Hayward</p>
+ <p class="featured-grid-middle">677 Tulare Terrace, Newport, Minnesota</p>
+ <p class="featured-grid-subtitle">Listed at $369,990</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/minnesota/twin-cities/newport/cherrywood/hayward-plan/679-tulare-terrace">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Kitchen " height="1365" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/5014472/50422.jpeg?timestamp=2026-07-16T12%3A21%3A28.8985465" srcset="https://dam.mihomes.com/media/5014472/50398.jpeg?timestamp=2026-07-16T12%3A21%3A26.4364338 300w, https://dam.mihomes.com/media/5014472/50397.jpeg?timestamp=2026-07-16T12%3A21%3A26.1299331 600w, https://dam.mihomes.com/media/5014472/50423.jpeg?timestamp=2026-07-16T12%3A21%3A30.0465607 900w, https://dam.mihomes.com/media/5014472/50396.jpeg?timestamp=2026-07-16T12%3A21%3A25.4461820 1200w, https://dam.mihomes.com/media/5014472/50421.jpeg?timestamp=2026-07-16T12%3A21%3A28.7105783 1800w, https://dam.mihomes.com/media/5014472/50422.jpeg?timestamp=2026-07-16T12%3A21%3A28.8985465 2400w" title="[L102-Z008]Kitchen.3" width="2046" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Hayward</p>
+ <p class="featured-grid-middle">679 Tulare Terrace, Newport, Minnesota</p>
+ <p class="featured-grid-subtitle">Listed at $374,990</p>
+ </a>
+</div>
+ </div>
+ <div class="col">
+ <div class="featured-grid-item featured-grid-item--mobile-slider">
+
+
+
+ <a class="featured-grid-item-content featured-grid-item-content--mobile-slider " href="/new-homes/minnesota/twin-cities/newport/cherrywood/hayward-plan/675-tulare-terrace">
+ <div class="featured-grid-item-thumbnail">
+ <img data-dam-generated alt="Kitchen" height="1365" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/5014540/50422.jpeg?timestamp=2026-07-16T13%3A08%3A40.4808574" srcset="https://dam.mihomes.com/media/5014540/50398.jpeg?timestamp=2026-07-16T13%3A08%3A28.5228588 300w, https://dam.mihomes.com/media/5014540/50397.jpeg?timestamp=2026-07-16T13%3A08%3A27.5503022 600w, https://dam.mihomes.com/media/5014540/50423.jpeg?timestamp=2026-07-16T13%3A08%3A48.1734611 900w, https://dam.mihomes.com/media/5014540/50396.jpeg?timestamp=2026-07-16T13%3A08%3A22.3419483 1200w, https://dam.mihomes.com/media/5014540/50421.jpeg?timestamp=2026-07-16T13%3A08%3A35.7271305 1800w, https://dam.mihomes.com/media/5014540/50422.jpeg?timestamp=2026-07-16T13%3A08%3A40.4808574 2400w" title="[L104-Z001]Kitchen.1" width="2046" class="cover-image" />
+ </div>
+ <p class="featured-grid-title">Hayward</p>
+ <p class="featured-grid-middle">675 Tulare Terrace, Newport, Minnesota</p>
+ <p class="featured-grid-subtitle">Listed at $386,000</p>
+ </a>
+</div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ </main>
+
+
+<footer class="main-footer">
+ <div class="main-footer-inner">
+ <ul class="horizontal-list">
+ <li><a href="https://apply.workable.com/mi-homes/" target="_blank" rel="noopener noreferrer" >Careers</a></li>
+ <li><a href="/support/warranty" >Warranty</a></li>
+ <li><a href="https://investors.mihomes.com/" rel="noopener noreferrer" title="Investor Relations" target="_blank" >Investors</a></li>
+ <li><a href="/events" >Events</a></li>
+ <li><a href="/incentives" >Incentives</a></li>
+ <li><a href="/agent/agent-info" >Agents & Brokers</a></li>
+ <li><a href="/resources" >Home Buying Resources</a></li>
+ <li><a href="/why-mi/journey" >Journey</a></li>
+ <li><a href="/blog/" >Blog</a></li>
+ </ul>
+ <ul class="horizontal-list">
+ <li><a href="/policies/privacy-policy" >Privacy Policy</a></li>
+ <li><a href="/policies/terms-of-use" >Terms of Use</a></li>
+ <li><a href="/subscriptions" >Manage Subscriptions</a></li>
+ <li><a href="/support/ccpa" >CCPA</a></li>
+ </ul>
+ <ul class="icon-list">
+ <li>
+<a href="https://www.instagram.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Instagram" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704717/50399.png" srcset="https://dam.mihomes.com/media/4704717/50399.png?timestamp=2026-05-04T18%3A56%3A58.4036491 300w, https://dam.mihomes.com/media/4704717/50420.png 600w" title="instagram" width="24" /></a> </li>
+ <li>
+<a href="https://www.facebook.com/MIHomesInc/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Facebook" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57191/50399.png" srcset="https://dam.mihomes.com/media/57191/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57191/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="facebook" width="24" /></a> </li>
+ <li>
+<a href="https://www.youtube.com/MIHomesInc" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Youtube" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704715/50399.png" srcset="https://dam.mihomes.com/media/4704715/50399.png?timestamp=2026-05-04T18%3A34%3A30.5730196 300w, https://dam.mihomes.com/media/4704715/50420.png 600w" title="youtube" width="24" /></a> </li>
+ <li>
+<a href="https://www.pinterest.com/mihomes/" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Pinterest" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57192/50399.png" srcset="https://dam.mihomes.com/media/57192/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57192/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="pintrest" width="24" /></a> </li>
+ <li>
+<a href="http://www.houzz.com/pro/mi-homes/m-i-homes" class="gami-social-exit" rel="me" target="_blank" ><img data-dam-generated alt="Houzz" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/57193/50399.png" srcset="https://dam.mihomes.com/media/57193/50399.png?timestamp=2024-05-21T06%3A50%3A39.7066667 300w, https://dam.mihomes.com/media/57193/50420.png?timestamp=2024-05-21T07%3A12%3A01.2866667 600w" title="houzz" width="24" /></a> </li>
+ <li>
+<a href="http://portal.hud.gov" class="" rel="me" target="_blank" ><img data-dam-generated alt="Equal Housing" height="24" loading="lazy" sizes="auto, 100vw" src="https://dam.mihomes.com/media/4704718/50399.png" srcset="https://dam.mihomes.com/media/4704718/50399.png?timestamp=2026-05-04T19%3A02%3A51.2896193 300w, https://dam.mihomes.com/media/4704718/50420.png 600w" title="equal-housing" width="28" /></a> </li>
+ </ul>
+ <p class="main-footer-copyright">
+ Copyright 2026, M/I Homes, Inc. All rights reserved.
+ </p>
+ <p id="division-disclaimer" class="main-footer-copyright">
+
+
+ </p>
+ </div>
+</footer>
+</div>
+<div aria-label="Cookie Consent" role="dialog" id="ccpa-modal" class="ccpa-modal">
+ <p>By browsing, you accept our <a href="/policies/terms-of-use">terms of use</a> and <a href="/policies/privacy-policy">privacy policy</a>.</p>
+ <button class="button" type="button">OK</button>
+</div>
+<div aria-hidden="true" class="modals" data-modal-container="">
+ <link href="https://cdn.mihomes.com/assets/toolkit/css/modals.css?ver=202608092245" rel="stylesheet" fetchpriority="low">
+ <div class="modal modal-wide box" data-modal="" id="privacy-policy-modal">
+ <button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+ </button>
+ <div id="privacy-policy-text"></div>
+</div><div class="modal box box-wide box-paddingless" data-modal="" id="mortgage-payment-calculator-modal">
+<button class="modal-close" data-modal-close="">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+</button>
+ <div id="mortgage-payment-calculator" data-price="384000" data-values="ec13e317-5929-4fa2-b1e6-06027fc37db3"></div>
+</div>
+ <div class="modal" data-modal id="search-modal">
+ <form action="/search" class="search-form ">
+ <input class="search-form-input" id="search-form-input" name="search" placeholder="Search M/I Homes"
+ type="search" />
+ <button class="button search-form-clear-button" type="button">
+ <svg class="icon icon-close" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#close"></use>
+</svg>
+
+ </button>
+ <button class="button search-form-submit" type="submit">
+ <svg class="icon icon-search" role="img" aria-hidden="true">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.mihomes.com/assets/svg/general.svg#search"></use>
+</svg>
+ </button>
+ <div class="search-form-results">
+ <div class="search-form-results-list"></div>
+ </div>
+ </form>
+ </div>
+</div>
+
+<!-- toolkit scripts -->
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit_common.js?ver=202608092245"></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/toolkit.js?ver=202608092245"></script>
+ <script src="https://cdn.mihomes.com/assets/toolkit/js/product.js?ver=202608092245"></script>
+ <script defer src="https://cdn.mihomes.com/assets/toolkit/js/mortgage-calculator.js?ver=202608092245"></script>
+<script>window.jQuery = window.$ = window.JQUERY;</script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/common.js?ver=202608092245" defer></script>
+<script src="https://cdn.mihomes.com/assets/toolkit/js/favorites.js?ver=202608092245" defer></script>
+
+
+<script>
+ var w = Math.max(
+ document.body.scrollWidth,
+ document.documentElement.scrollWidth,
+ document.body.offsetWidth,
+ document.documentElement.offsetWidth,
+ document.documentElement.clientWidth
+ );
+ window.setCookie('screen-width', encodeURIComponent(w), { expires: 14, path: "/" })
+ </script>
+
+<script>
+
+
+</script>
+<script type="text/javascript">
+ const millisecondsPerDay = 86400000;
+ const millisecondsPerHour = millisecondsPerDay / 24;
+ const millisecondsPerMinute = millisecondsPerHour / 60;
+ const millisecondsPerSecond = 1000;
+ function addLeadingZero(val) {
+ if(val.toString().length < 2) {
+ return '0'+val;
+ }
+ return val;
+ }
+ function change() {
+ const list = Array.from(document.querySelectorAll('[data-countdown]'));
+ const now = new Date().getTime();
+ list.forEach((el) => {
+ const d = new Date(el.getAttribute('data-countdown')).getTime();
+ let diff = d - now;
+ let days = 0;
+ let hours = 0;
+ let minutes = 0;
+ let seconds = 0;
+ if(diff > 0) {
+ days = Math.floor(diff / millisecondsPerDay);
+ diff = diff - (days * millisecondsPerDay)
+ hours = Math.floor(diff/millisecondsPerHour);
+ diff = diff - (hours * millisecondsPerHour)
+ minutes = Math.floor(diff/millisecondsPerMinute);
+ diff = diff - (minutes * millisecondsPerMinute);
+ seconds = Math.floor(diff/millisecondsPerSecond);
+ }
+ try {
+ el.querySelector('.days').innerText = addLeadingZero(Math.max(days, 0));
+
+ } catch (e) {}
+ try {
+ el.querySelector('.hours').innerText = addLeadingZero(Math.max(hours, 0));
+ } catch(e) {}
+ try {
+ el.querySelector('.minutes').innerText = addLeadingZero(Math.max(minutes, 0));
+ } catch (e) {}
+ try {
+ el.querySelector('.seconds').innerText = addLeadingZero(Math.max(seconds, 0));
+ } catch (e) {}
+
+ });
+ setTimeout(()=>requestAnimationFrame(change), millisecondsPerSecond);
+ }
+ requestAnimationFrame(change);
+</script>
+<script>(function(){function c(){var b=a.contentDocument||(a.contentWindow&&a.contentWindow.document);if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'a29495e41cdc08b2',t:'MTc4NjQyMzQ3MA=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
+
+</html>
\ No newline at end of file
diff --git a/collectors/mi-homes/src/index.ts b/collectors/mi-homes/src/index.ts
new file mode 100644
index 00000000..7a117e64
--- /dev/null
+++ b/collectors/mi-homes/src/index.ts
@@ -0,0 +1,353 @@
+import type { ExtractedRecord, FieldValue } from "@homesonspec/schemas";
+import { normalizeStateCode } from "@homesonspec/shared";
+import {
+ fetchFixtures,
+ LiveFetcher,
+ type ExtractionOutput,
+ type FetchContext,
+ type RawPage,
+ type SourceAdapter,
+} from "@homesonspec/collectors-common";
+
+/**
+ * M/I Homes adapter — national builder (recon 2026-08-10, TK-10001; BUILDERS.md
+ * hint "data-price cards, diff-2/3"). mihomes.com is a Sitecore/ASP.NET site
+ * behind Cloudflare that is FULLY server-rendered — a plain honest-UA GET of a
+ * per-home page returns ~150–200 KB of complete HTML. NO browser, NO bot-wall on
+ * the honest UA, NO Turnstile/CHEQ challenge on the per-home detail pages.
+ *
+ * robots.txt (mihomes.com) = `User-agent: *` `Allow: /`, disallowing only
+ * /AjaxServices/, /App_Browsers/, /App_Data/, /bin/, /Builder/, /Admin/,
+ * /DocuSign/, /support/blf, /mobile/, /contactdump — the /new-homes/... per-home
+ * pages we read are ALLOWED. robots also declares the sitemap we crawl.
+ *
+ * Sitemap (flat, ~6,586 URLs) https://www.mihomes.com/Sitemap/sitemap.xml
+ * -> per-home inventory URLs are the 7-segment
+ * `/new-homes/{state}/{metro}/{city}/{community}/{plan}-plan/{street-address}`
+ * (~2,707 of them). Shorter /new-homes/... URLs are community/plan/QMI
+ * aggregate pages and are skipped by the URL shape filter.
+ *
+ * Each per-home page carries TWO complementary structured sources:
+ *
+ * (1) A per-home `Product` JSON-LD block (additionalType SingleFamilyResidence):
+ * name (= street), sku (-> builderInventoryId), address{streetAddress,
+ * addressLocality, addressRegion, postalCode}, geo{latitude,longitude}
+ * (PER-HOME lat/lon), telephone, offers{price, priceCurrency,
+ * availability (schema.org/InStock)}, brand.name (= community).
+ * This block is present on for-sale spec homes and ABSENT on model homes
+ * (which have no sale price) — a real distinction, kept as price=null.
+ *
+ * (2) A `plan-specification__list` <ul> of icon+label+value items carrying the
+ * facts NOT in the JSON-LD: `square feet`, `stories`, `bedrooms`,
+ * `full bathrooms`, `half bathrooms`, `garages`.
+ *
+ * (3) A `Ready date:` <dl> — "Ready Now" -> MOVE_IN_READY, else a future date
+ * -> UNDER_CONSTRUCTION + estCompletionDate (ISO).
+ *
+ * Facts-only: images OMITTED (the Product block DOES list dam.mihomes.com photos,
+ * but v1 stays images-off / mediaRights=NONE per HomesOnSpec policy). Per-home
+ * geo IS captured (homes appear on the map). Plain HTTP; one page == one
+ * inventory_home. The `data-price` attribute on the mortgage calculator is a
+ * calculator DEFAULT, NOT the listed sale price, and is deliberately NOT used —
+ * the authoritative price is offers.price from the Product JSON-LD.
+ *
+ * Batch control: MI_PAGE_LIMIT caps how many per-home pages are fetched per run
+ * (default 40). Optional MI_STATE filters the sitemap URL list by `/{state}/`
+ * slug (e.g. "texas", "ohio").
+ */
+const BUILDER_SLUG = "mi-homes";
+const SITEMAP = "https://www.mihomes.com/Sitemap/sitemap.xml";
+const STATE_SEG = (process.env.MI_STATE ?? "").toLowerCase().trim();
+const PAGE_LIMIT = Number(process.env.MI_PAGE_LIMIT ?? "40");
+
+/** A per-home URL = /new-homes/{state}/{metro}/{city}/{community}/{plan}-plan/{street}. */
+const HOME_URL_RE = /^https:\/\/www\.mihomes\.com\/new-homes\/[a-z0-9-]+\/[a-z0-9-]+\/[a-z0-9-]+\/[a-z0-9-]+\/[a-z0-9-]+-plan\/[a-z0-9-]+$/;
+
+function fv<T>(value: T | null, raw: string | null, sourceUrl: string, evidenceText?: string | null): FieldValue<T> {
+ return { value, raw, evidenceText: evidenceText ?? raw, sourceUrl, confidence: value === null ? 0 : 1 };
+}
+
+// A positive finite number, or null. Never guesses; 0 / negative / NaN -> null.
+const posNum = (v: unknown): number | null => {
+ const n = typeof v === "number" ? v : typeof v === "string" ? Number(String(v).replace(/[^0-9.]/g, "")) : NaN;
+ return Number.isFinite(n) && n > 0 ? n : null;
+};
+// A non-negative integer (garages / half-baths may legitimately be 0), or null.
+const nonNegInt = (v: unknown): number | null => {
+ const n = typeof v === "number" ? v : typeof v === "string" ? Number(String(v).replace(/[^0-9.]/g, "")) : NaN;
+ return Number.isFinite(n) && n >= 0 ? Math.trunc(n) : null;
+};
+// A signed decimal (geo lat/lon may be negative — must NOT strip the minus).
+const coord = (v: unknown): number | null => {
+ const n = typeof v === "number" ? v : typeof v === "string" ? Number(String(v).replace(/[^0-9.\-]/g, "")) : NaN;
+ return Number.isFinite(n) && n !== 0 ? n : null;
+};
+const clean = (v: unknown): string | null => {
+ if (v == null) return null;
+ const s = String(v).replace(/\s+/g, " ").trim();
+ return s || null;
+};
+
+/** Minimal HTML-entity decode for the handful of entities the pages emit. */
+function decodeEntities(s: string): string {
+ return s
+ .replace(/"/g, '"')
+ .replace(/'/gi, "'")
+ .replace(/'/g, "'")
+ .replace(/—/g, "—")
+ .replace(/ /g, " ")
+ .replace(/&/g, "&")
+ .trim();
+}
+
+interface MiHome {
+ url: string;
+ street: string | null;
+ city: string | null;
+ state: string | null;
+ zip: string | null;
+ community: string | null;
+ planName: string | null;
+ sqft: number | null;
+ stories: number | null;
+ beds: number | null;
+ fullBaths: number | null;
+ halfBaths: number | null;
+ garages: number | null;
+ lat: number | null;
+ lon: number | null;
+ phone: string | null;
+ price: number | null;
+ available: boolean;
+ status: "MOVE_IN_READY" | "UNDER_CONSTRUCTION";
+ estCompletion: string | null; // ISO date
+ builderInventoryId: string | null;
+}
+
+/** Pull the parsed `Product` JSON-LD object out of the page HTML, or null. */
+function productLd(html: string): Record<string, unknown> | null {
+ const blocks = [...html.matchAll(/<script[^>]*type="application\/ld\+json"[^>]*>([\s\S]*?)<\/script>/gi)];
+ for (const b of blocks) {
+ let data: unknown;
+ try {
+ data = JSON.parse(b[1]!.trim());
+ } catch {
+ continue; // e.g. the BreadcrumbList block ships a trailing comma — ignore it
+ }
+ for (const it of Array.isArray(data) ? data : [data]) {
+ if (it && typeof it === "object" && (it as Record<string, unknown>)["@type"] === "Product") {
+ return it as Record<string, unknown>;
+ }
+ }
+ }
+ return null;
+}
+
+/** Map plan-specification__list label -> value (numeric string, commas stripped). */
+function specItems(html: string): Record<string, string> {
+ const listMatch = html.match(/plan-specification__list[\s\S]*?<\/ul>/i);
+ const scope = listMatch ? listMatch[0] : "";
+ const out: Record<string, string> = {};
+ for (const m of scope.matchAll(
+ /__label">\s*([^<]+?)\s*<\/span>\s*<strong[^>]*>\s*([0-9,]+)/gi,
+ )) {
+ out[m[1]!.trim().toLowerCase()] = m[2]!.replace(/,/g, "");
+ }
+ return out;
+}
+
+/** Parse the h1 "STREET, City, ST ZIP" into parts (facts-only fallback for address). */
+function parseH1Address(html: string): { street: string | null; city: string | null; state: string | null; zip: string | null } {
+ const h1 = html.match(/<h1[^>]*>([\s\S]*?)<\/h1>/i)?.[1] ?? "";
+ const text = decodeEntities(h1.replace(/<[^>]+>/g, " ")).replace(/\s+/g, " ").trim();
+ // "12004 Dillon Falls Drive, Austin, TX 78747"
+ const m = text.match(/^(.+?),\s*(.+?),\s*([A-Za-z]{2})\s*(\d{5})/);
+ if (!m) return { street: null, city: null, state: null, zip: null };
+ return {
+ street: clean(m[1]),
+ city: clean(m[2]),
+ state: normalizeStateCode(m[3] ?? null),
+ zip: m[4] ?? null,
+ };
+}
+
+/** "September 28, 2026" -> "2026-09-28" (ISO). Non-date / "Ready Now" -> null. */
+function toIsoDate(raw: string | null): string | null {
+ if (!raw) return null;
+ const t = raw.trim();
+ if (/ready\s*now/i.test(t)) return null;
+ const d = new Date(t);
+ if (Number.isNaN(d.getTime())) return null;
+ const iso = d.toISOString().slice(0, 10);
+ return /^\d{4}-\d{2}-\d{2}$/.test(iso) ? iso : null;
+}
+
+/** Parse ONE M/I Homes per-home page into a home, or null if not a home page. */
+export function parseHome(html: string, pageUrl: string): MiHome | null {
+ const prod = productLd(html);
+ const specs = specItems(html);
+ const h1 = parseH1Address(html);
+
+ // Address: prefer the Product JSON-LD PostalAddress, fall back to the h1.
+ const addr = ((prod?.address ?? {}) as Record<string, unknown>) || {};
+ const street = clean(addr.streetAddress) ?? h1.street;
+ if (!street) return null; // not a resolvable per-home listing
+
+ const geo = ((prod?.geo ?? {}) as Record<string, unknown>) || {};
+ const offers = ((prod?.offers ?? {}) as Record<string, unknown>) || {};
+ const brand = ((prod?.brand ?? {}) as Record<string, unknown>) || {};
+ const availStr = String(offers.availability ?? "");
+
+ // Ready date drives the construction-status distinction.
+ const readyRaw = clean(html.match(/Ready date:[\s\S]*?<strong[^>]*>\s*([^<]+?)\s*<\/strong>/i)?.[1]);
+ const isReadyNow = readyRaw ? /ready\s*now/i.test(readyRaw) : false;
+ const estCompletion = toIsoDate(readyRaw);
+ // Ready Now -> MOVE_IN_READY. A future ready date -> UNDER_CONSTRUCTION. No
+ // ready date at all (model homes) -> MOVE_IN_READY (it's a standing listing).
+ const status: MiHome["status"] = estCompletion && !isReadyNow ? "UNDER_CONSTRUCTION" : "MOVE_IN_READY";
+
+ // plan name from the URL `/{plan}-plan/` segment (kept human where possible).
+ const planSlug = pageUrl.match(/\/([a-z0-9-]+)-plan\//)?.[1] ?? null;
+ const planName = planSlug ? planSlug.replace(/-/g, " ").replace(/\b\w/g, (c) => c.toUpperCase()) : null;
+
+ return {
+ url: clean(prod?.url) ?? pageUrl,
+ street,
+ city: clean(addr.addressLocality) ?? h1.city,
+ state: normalizeStateCode(clean(addr.addressRegion) ?? h1.state),
+ zip: (clean(addr.postalCode) ?? h1.zip ?? "").match(/\d{5}/)?.[0] ?? null,
+ community: clean(brand.name),
+ planName,
+ sqft: nonNegInt(specs["square feet"] ?? null),
+ stories: nonNegInt(specs["stories"] ?? null),
+ beds: posNum(specs["bedrooms"] ?? null),
+ fullBaths: nonNegInt(specs["full bathrooms"] ?? null),
+ halfBaths: nonNegInt(specs["half bathrooms"] ?? null),
+ garages: nonNegInt(specs["garages"] ?? null),
+ lat: coord(geo.latitude),
+ lon: coord(geo.longitude),
+ phone: clean(prod?.telephone),
+ // Price ONLY from the authoritative Product offer; the mortgage data-price
+ // attribute is a calculator default and is never used as the sale price.
+ price: posNum(offers.price),
+ available: /InStock|LimitedAvailability|PreOrder|BackOrder/i.test(availStr) || !availStr,
+ status,
+ estCompletion,
+ builderInventoryId: clean(prod?.sku),
+ };
+}
+
+export const miHomesAdapter: SourceAdapter = {
+ key: "mi-homes-site",
+ version: "0.1.0",
+
+ async *fetch(ctx: FetchContext): AsyncIterable<RawPage> {
+ if (ctx.mode === "fixture") {
+ yield* fetchFixtures(ctx);
+ return;
+ }
+ const fetcher = new LiveFetcher(ctx.registry);
+ const index = await fetcher.fetch(SITEMAP);
+ let homeUrls = [...index.body.toString("utf8").matchAll(/<loc>([^<]+)<\/loc>/g)]
+ .map((m) => m[1]!.trim())
+ .filter((u) => HOME_URL_RE.test(u));
+ if (STATE_SEG) {
+ homeUrls = homeUrls.filter((u) => u.includes(`/new-homes/${STATE_SEG}/`));
+ }
+ for (const url of homeUrls.slice(0, PAGE_LIMIT)) {
+ try {
+ yield await fetcher.fetch(url);
+ } catch (error) {
+ console.warn(` skip ${url}: ${error instanceof Error ? error.message : String(error)}`);
+ }
+ }
+ },
+
+ extract(page: RawPage): ExtractionOutput {
+ try {
+ const html = page.body.toString("utf8");
+ const h = parseHome(html, page.url);
+ if (!h) return { records: [], errors: [] }; // not a per-home page
+
+ const cname = h.community ?? "Unknown";
+ const bathsTotal = h.fullBaths === null ? null : h.fullBaths + (h.halfBaths ?? 0) * 0.5;
+ const records: ExtractedRecord[] = [];
+
+ // Community FIRST — publish creates the FK target the home record needs.
+ // Carries the per-home geo so the community also maps.
+ records.push({
+ entityType: "community",
+ canonicalHints: { builderSlug: BUILDER_SLUG, communityName: cname },
+ fields: {
+ name: fv(cname, cname, page.url),
+ street: fv<string>(null, null, page.url),
+ city: fv(h.city, h.city, page.url),
+ state: fv(h.state, h.state, page.url),
+ zip: fv(h.zip, h.zip, page.url),
+ county: fv<string>(null, null, page.url),
+ metro: fv<string>(null, null, page.url),
+ lat: fv(h.lat, h.lat != null ? String(h.lat) : null, page.url),
+ lon: fv(h.lon, h.lon != null ? String(h.lon) : null, page.url),
+ hoaFeeMonthly: fv<number>(null, null, page.url),
+ schoolDistrict: fv<string>(null, null, page.url),
+ ageRestricted: fv<boolean>(null, null, page.url),
+ salesPhone: fv(h.phone, h.phone, page.url),
+ },
+ });
+
+ records.push({
+ entityType: "inventory_home",
+ canonicalHints: {
+ builderSlug: BUILDER_SLUG,
+ communityName: cname,
+ address: h.street!,
+ builderInventoryId: h.builderInventoryId ?? h.url,
+ lat: h.lat ?? undefined,
+ lon: h.lon ?? undefined,
+ planName: h.planName ?? undefined,
+ },
+ fields: {
+ street: fv(h.street, h.street, page.url),
+ city: fv(h.city, h.city, page.url),
+ state: fv(h.state, h.state, page.url),
+ zip: fv(h.zip, h.zip, page.url),
+ price: fv(
+ h.price,
+ h.price != null ? `$${h.price}` : null,
+ page.url,
+ h.price != null ? `Product offer price $${h.price}` : "model home — no listed sale price",
+ ),
+ beds: fv(h.beds, h.beds != null ? String(h.beds) : null, page.url),
+ bathsTotal: fv(
+ bathsTotal,
+ bathsTotal != null ? String(bathsTotal) : null,
+ page.url,
+ bathsTotal != null ? `${h.fullBaths} full + ${h.halfBaths ?? 0} half` : null,
+ ),
+ sqft: fv(h.sqft, h.sqft != null ? String(h.sqft) : null, page.url),
+ stories: fv(h.stories, h.stories != null ? String(h.stories) : null, page.url),
+ garageSpaces: fv(h.garages, h.garages != null ? String(h.garages) : null, page.url),
+ homeType: fv("SINGLE_FAMILY" as const, null, page.url, "M/I Homes single-family inventory home"),
+ constructionStatus: fv<"PLANNED" | "UNDER_CONSTRUCTION" | "MOVE_IN_READY">(
+ h.status,
+ null,
+ page.url,
+ h.status === "MOVE_IN_READY" ? "Ready Now / model home" : `ready date ${h.estCompletion}`,
+ ),
+ estCompletionDate: fv(h.estCompletion, h.estCompletion, page.url),
+ lotNumber: fv<string>(null, null, page.url),
+ builderInventoryId: fv(h.builderInventoryId, h.builderInventoryId, page.url),
+ lat: fv(h.lat, h.lat != null ? String(h.lat) : null, page.url),
+ lon: fv(h.lon, h.lon != null ? String(h.lon) : null, page.url),
+ planName: fv(h.planName, h.planName, page.url),
+ // Facts-only: images intentionally omitted (mediaRights=NONE).
+ images: fv<string[]>([], null, page.url),
+ },
+ });
+
+ return { records, errors: [] };
+ } catch (error) {
+ return { records: [], errors: [{ url: page.url, reason: String(error) }] };
+ }
+ },
+};
diff --git a/collectors/mi-homes/src/selftest.test.ts b/collectors/mi-homes/src/selftest.test.ts
new file mode 100644
index 00000000..4c39b596
--- /dev/null
+++ b/collectors/mi-homes/src/selftest.test.ts
@@ -0,0 +1,110 @@
+import { readFileSync, readdirSync } from "node:fs";
+import { join, dirname } from "node:path";
+import { fileURLToPath } from "node:url";
+import { describe, expect, it } from "vitest";
+import { validatePayload } from "@homesonspec/schemas";
+import { miHomesAdapter, parseHome } from "./index";
+
+/**
+ * Bounded, read-only self-test for the M/I Homes adapter. Runs `parseHome` +
+ * `miHomesAdapter.extract()` over 14 fixtures captured (rate-limited, honest UA)
+ * from mihomes.com across TX / OH / MI / MN / IN on 2026-08-10, proves the
+ * facts-only coverage, that addresses are genuinely per-home (not aggregate),
+ * and that every emitted record validates against the published schema.
+ */
+
+const HERE = dirname(fileURLToPath(import.meta.url));
+const FX = join(HERE, "..", "fixtures", "homes");
+
+function urlMap(): Record<string, string> {
+ const tsv = readFileSync(join(FX, "_urls.tsv"), "utf8");
+ const out: Record<string, string> = {};
+ for (const line of tsv.split(/\r?\n/)) {
+ const [file, url] = line.split("\t");
+ if (file && url) out[file.trim()] = url.trim();
+ }
+ return out;
+}
+
+describe("mi-homes adapter — coverage + per-home + schema", () => {
+ const files = readdirSync(FX).filter((f) => f.endsWith(".html")).sort();
+ const urls = urlMap();
+
+ it("parses per-home facts with high coverage and distinct addresses", () => {
+ let n = 0;
+ const cov = { price: 0, beds: 0, baths: 0, sqft: 0, address: 0, geo: 0, status: 0 };
+ const addresses = new Set<string>();
+
+ for (const file of files) {
+ const html = readFileSync(join(FX, file), "utf8");
+ const url = urls[file] ?? `fixture://${file}`;
+ const h = parseHome(html, url);
+ if (!h) continue;
+ n++;
+ if (h.street) {
+ cov.address++;
+ addresses.add(`${h.street}, ${h.city}, ${h.state}`);
+ }
+ if (h.price != null) cov.price++;
+ if (h.beds != null) cov.beds++;
+ if (h.fullBaths != null) cov.baths++;
+ if (h.sqft != null) cov.sqft++;
+ if (h.lat != null && h.lon != null) cov.geo++;
+ if (h.status) cov.status++;
+ }
+
+ // eslint-disable-next-line no-console
+ console.log(
+ `\n[mi-homes self-test] records=${n} distinctAddresses=${addresses.size}\n` +
+ ` price=${pct(cov.price, n)} beds=${pct(cov.beds, n)} baths=${pct(cov.baths, n)} ` +
+ `sqft=${pct(cov.sqft, n)} address=${pct(cov.address, n)} geo=${pct(cov.geo, n)} status=${pct(cov.status, n)}`,
+ );
+
+ expect(n).toBeGreaterThanOrEqual(13);
+ // Genuinely per-home: one distinct street address per parsed record.
+ expect(addresses.size).toBe(n);
+ // Facts-only coverage on the core five (address/beds/baths/sqft always present;
+ // price present on every for-sale spec home — model homes correctly carry null).
+ expect(cov.address).toBe(n);
+ expect(cov.beds).toBe(n);
+ expect(cov.baths).toBe(n);
+ expect(cov.sqft).toBe(n);
+ // price + per-home geo both come from the Product JSON-LD, present on every
+ // FOR-SALE spec home and correctly absent on model homes (no listed price) —
+ // so both track together at >=90%, never fabricated to fill a model home.
+ expect(cov.price / n).toBeGreaterThanOrEqual(0.9);
+ expect(cov.geo / n).toBeGreaterThanOrEqual(0.9);
+ expect(cov.geo).toBe(cov.price); // geo and price co-present (both from Product LD)
+ });
+
+ it("emits schema-valid community + inventory_home records", () => {
+ let homes = 0;
+ for (const file of files) {
+ const html = readFileSync(join(FX, file), "utf8");
+ const url = urls[file] ?? `fixture://${file}`;
+ const page = {
+ url,
+ retrievedAt: new Date().toISOString(),
+ contentType: "text/html",
+ body: Buffer.from(html),
+ contentHash: "test",
+ };
+ const { records, errors } = miHomesAdapter.extract(page);
+ expect(errors).toEqual([]);
+ for (const rec of records) {
+ if (rec.entityType === "inventory_home") homes++;
+ const result = validatePayload(rec);
+ if (!result.ok) {
+ // eslint-disable-next-line no-console
+ console.error(`validation failed for ${rec.entityType} @ ${url}`, result);
+ }
+ expect(result.ok).toBe(true);
+ }
+ }
+ expect(homes).toBeGreaterThanOrEqual(13);
+ });
+});
+
+function pct(a: number, b: number): string {
+ return b ? `${Math.round((100 * a) / b)}%` : "n/a";
+}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index b5a35c07..0e95de21 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -275,6 +275,9 @@ importers:
'@homesonspec/collector-meritage-homes':
specifier: workspace:*
version: link:../../collectors/meritage-homes
+ '@homesonspec/collector-mi-homes':
+ specifier: workspace:*
+ version: link:../../collectors/mi-homes
'@homesonspec/collector-perry-homes':
specifier: workspace:*
version: link:../../collectors/perry-homes
@@ -287,6 +290,9 @@ importers:
'@homesonspec/collector-shea-homes':
specifier: workspace:*
version: link:../../collectors/shea-homes
+ '@homesonspec/collector-smith-douglas':
+ specifier: workspace:*
+ version: link:../../collectors/smith-douglas
'@homesonspec/collector-taylor-morrison':
specifier: workspace:*
version: link:../../collectors/taylor-morrison
← ef74e6c5 stanley-martin: DEFERRED — Vite/React SPA, facts via runtime
·
back to Homesonspec
·
TK-10001: harden deploy-kamatera.sh — pre-drop pg_dump backu 66c7ded3 →