patx/miadruck

Switch copy to first person, add nav scroll spy, swap social image

Commit bebc266 · patx · 2026-07-26T23:24:06-04:00

Changeset
bebc266b958aff9cfe8331f4001fdff2149fc88c
Parents
39d164403c8c532772b98dab430ab306b0417872

View source at this commit

Switch copy to first person, add nav scroll spy, swap social image

Copy — rewrite visible prose from third to first person across all six pages,
including the FAQ answers duplicated in FAQPage schema, which Google expects to
match the on-page text. Client reviews stay third person: they are quotes from
real people talking about Mia, not her own voice. Also left in third person:
titles, wordmark, footer legal line, image alt text, aria-labels, and the
JSON-LD entity name/description, which describe the entity rather than speak
as her.

Nav — the active state is now scroll aware, setting aria-current="location" on
the link for whichever section is at the top of the viewport. Section positions
are measured live rather than assumed from nav order, because #about sits above
#areas on the page while "Areas" comes first in the nav. The CTA fills instead
of underlining, since its border shorthand resets the underline the active rule
draws. Area pages have only one in-page anchor, so the spy stands down there and
their static aria-current="page" is left alone.

Social image — swap og:image/twitter:image to the new branded PNG card and
correct the declared dimensions to its actual 1731x909; the previous values
described the old file. Alt text now conveys the text baked into the card.

Also drops the 01-07 numbering from the section eyebrows.

Co-Authored-By: Claude Opus 5 <[email protected]>

Comments

No comments yet.

Log in to comment

Diff

diff --git a/docs/404.html b/docs/404.html
index 012486b..b0bb494 100644
--- a/docs/404.html
+++ b/docs/404.html
@@ -4,7 +4,7 @@
 <meta charset="utf-8">
 <meta name="viewport" content="width=device-width,initial-scale=1">
 <title>Page not found | Mia Druck</title>
-<meta name="description" content="That page could not be found. Browse Mia Druck's South Florida listings or get in touch.">
+<meta name="description" content="That page could not be found. Browse my South Florida listings or get in touch.">
 <meta name="robots" content="noindex,follow">
 <meta name="theme-color" content="#0F2436">
 <link rel="icon" href="/favicon.svg" type="image/svg+xml">
@@ -41,7 +41,7 @@
       <h1 style="margin-top:18px;max-width:14ch;">This page moved on.</h1>
       <p class="lead" style="margin-top:24px;">
         The address you tried doesn't exist here. The listings below are a better place to start —
-        or just call Mia and skip the browsing.
+        or just call me and skip the browsing.
       </p>
       <div class="hero-actions" style="margin-top:34px;">
         <a class="btn" href="/#listings">View listings</a>
diff --git a/docs/assets/img/og-image.jpg b/docs/assets/img/og-image.jpg
deleted file mode 100644
index 5d59924..0000000
Binary files a/docs/assets/img/og-image.jpg and /dev/null differ
diff --git a/docs/assets/img/og-image.png b/docs/assets/img/og-image.png
new file mode 100644
index 0000000..7511a22
Binary files /dev/null and b/docs/assets/img/og-image.png differ
diff --git a/docs/assets/site.css b/docs/assets/site.css
index f91925c..aec4538 100644
--- a/docs/assets/site.css
+++ b/docs/assets/site.css
@@ -225,7 +225,9 @@ p:last-child{ margin-bottom:0; }
   transition:color .12s ease,border-color .12s ease;
 }
 .navlinks a:hover{ color:var(--ink); border-bottom-color:var(--brass); }
-.navlinks a[aria-current="page"]{ color:var(--ink); border-bottom-color:var(--brass); }
+/* "page" is set in the markup on area pages; "location" is set by the scroll
+   spy on the homepage. Both read as the current position. */
+.navlinks a[aria-current]{ color:var(--ink); border-bottom-color:var(--brass); }
 .navlinks a.nav-cta{
   border:1px solid var(--ink);
   border-radius:2px;
@@ -234,6 +236,9 @@ p:last-child{ margin-bottom:0; }
   color:var(--ink);
 }
 .navlinks a.nav-cta:hover{ background:var(--ink); color:var(--paper); border-color:var(--ink); }
+/* The CTA is a bordered button — its own border shorthand resets the underline
+   the rule above draws, so it fills instead. */
+.navlinks a.nav-cta[aria-current]{ background:var(--ink); color:var(--paper); border-color:var(--ink); }
 
 .nav-toggle{
   display:none;
@@ -271,6 +276,9 @@ p:last-child{ margin-bottom:0; }
     font-size:16px;
     border-bottom:1px solid var(--rule);
   }
+  /* Every row already has a divider here, so recolouring it reads as a rule,
+     not a state — mark the current item with brass text instead. */
+  .navlinks a[aria-current]{ color:var(--brass); border-bottom-color:var(--rule); }
   .navlinks a.nav-cta{
     margin-top:16px;
     text-align:center;
diff --git a/docs/assets/site.js b/docs/assets/site.js
index ba85027..392ca87 100644
--- a/docs/assets/site.js
+++ b/docs/assets/site.js
@@ -41,6 +41,64 @@
     });
   })();
 
+  /* -- Nav scroll spy -----------------------------------------------------
+     Marks the nav link for whichever section is currently at the top of the
+     viewport. Only same-page anchors that actually resolve take part: the area
+     pages link out with "/#…", so they keep their static aria-current="page"
+     and this no-ops there. */
+  (function () {
+    var nav = document.getElementById('siteNav');
+    var topbar = document.querySelector('.topbar');
+    if (!nav) return;
+
+    var targets = [];
+    nav.querySelectorAll('a[href^="#"]').forEach(function (link) {
+      var id = link.getAttribute('href').slice(1);
+      var section = id && document.getElementById(id);
+      if (section) targets.push({ link: link, section: section });
+    });
+
+    // One target is not a spy, it's just a link (the area pages' Contact).
+    if (targets.length < 2) return;
+
+    var current = null;
+
+    function update() {
+      // Sections sit behind the sticky bar, so activate a little below it.
+      var line = window.scrollY + (topbar ? topbar.offsetHeight : 0) + 24;
+      var atBottom = window.innerHeight + window.scrollY >=
+                     document.documentElement.scrollHeight - 2;
+      var active = null;
+      var bestTop = -1;
+
+      targets.forEach(function (t) {
+        // Measured live: nav order does not match document order here, and
+        // the layout reflows across breakpoints.
+        var top = t.section.getBoundingClientRect().top + window.scrollY;
+        if ((atBottom || top <= line) && top > bestTop) {
+          bestTop = top;
+          active = t;
+        }
+      });
+
+      if (active === current) return;
+      if (current) current.link.removeAttribute('aria-current');
+      if (active) active.link.setAttribute('aria-current', 'location');
+      current = active;
+    }
+
+    var ticking = false;
+    function onScroll() {
+      if (ticking) return;
+      ticking = true;
+      requestAnimationFrame(function () { update(); ticking = false; });
+    }
+
+    window.addEventListener('scroll', onScroll, { passive: true });
+    window.addEventListener('resize', onScroll, { passive: true });
+    update();
+  })();
+
   /* -- Toast -------------------------------------------------------------- */
   var toastTimer;
   function showToast(msg) {
diff --git a/docs/boca-raton-real-estate/index.html b/docs/boca-raton-real-estate/index.html
index 404c413..d695abf 100644
--- a/docs/boca-raton-real-estate/index.html
+++ b/docs/boca-raton-real-estate/index.html
@@ -5,7 +5,7 @@
 <meta name="viewport" content="width=device-width,initial-scale=1">
 
 <title>Boca Raton Real Estate Agent | Mia Druck</title>
-<meta name="description" content="Boca Raton homes with Mia Druck — Boca Villas, Golden Triangle, Old Floresta and the neighborhoods east of I-95, plus no-HOA single family. See her active listing.">
+<meta name="description" content="Boca Raton homes — Boca Villas, Golden Triangle, Old Floresta and the neighborhoods east of I-95, plus no-HOA single family. See my active listing.">
 <link rel="canonical" href="https://miadruck.com/boca-raton-real-estate/">
 <meta name="robots" content="index,follow,max-image-preview:large,max-snippet:-1">
 <meta name="theme-color" content="#0F2436">
@@ -18,14 +18,14 @@
 <meta property="og:title" content="Boca Raton Real Estate Agent | Mia Druck">
 <meta property="og:description" content="Downtown condos, family neighborhoods east of I-95 and the no-HOA pockets buyers actually ask for.">
 <meta property="og:url" content="https://miadruck.com/boca-raton-real-estate/">
-<meta property="og:image" content="https://miadruck.com/assets/img/og-image.jpg">
-<meta property="og:image:width" content="1200">
-<meta property="og:image:height" content="630">
-<meta property="og:image:alt" content="A lighthouse at sunset on the South Florida coast">
+<meta property="og:image" content="https://miadruck.com/assets/img/og-image.png">
+<meta property="og:image:width" content="1731">
+<meta property="og:image:height" content="909">
+<meta property="og:image:alt" content="Mia Druck, Ocean Glades Realty - real estate, made simple. Serving Fort Lauderdale, Pompano Beach, Lighthouse Point and Boca Raton.">
 <meta name="twitter:card" content="summary_large_image">
 <meta name="twitter:title" content="Boca Raton Real Estate Agent | Mia Druck">
 <meta name="twitter:description" content="Downtown condos, family neighborhoods east of I-95 and no-HOA single family.">
-<meta name="twitter:image" content="https://miadruck.com/assets/img/og-image.jpg">
+<meta name="twitter:image" content="https://miadruck.com/assets/img/og-image.png">
 
 <link rel="icon" href="/favicon.svg" type="image/svg+xml">
 <link rel="apple-touch-icon" href="/apple-touch-icon.png">
@@ -83,7 +83,7 @@
     </p>
     <div class="hero-actions">
       <a class="btn" href="tel:+19545527330">(954) 552-7330</a>
-      <a class="btn btn-ghost" href="#listings">See her Boca listing</a>
+      <a class="btn btn-ghost" href="#listings">See my Boca listing</a>
     </div>
   </div>
 </section>
@@ -107,7 +107,7 @@
     <div class="prose-cols reveal">
       <div>
         <p>
-          <strong>East of I-95</strong> is where Mia's active Boca listing sits — a four-bedroom
+          <strong>East of I-95</strong> is where my active Boca listing sits — a four-bedroom
           single family on NW 12th Avenue with no HOA. That last detail matters more here than
           buyers expect. Boca enforces unusually tight architectural and signage standards citywide,
           and on top of that most newer communities layer their own association rules. A no-HOA
@@ -199,7 +199,7 @@
       <details>
         <summary>Can I find a Boca Raton home without an HOA?</summary>
         <div class="faq-answer">
-          <p>Yes, mostly in the older neighborhoods east of I-95. Mia's current listing at 600 NW
+          <p>Yes, mostly in the older neighborhoods east of I-95. My current listing at 600 NW
           12th Avenue is one — four bedrooms, three baths, 1,857 square feet, no association. That
           combination is scarcer than buyers assume and tends to attract attention when it appears.</p>
         </div>
@@ -216,8 +216,7 @@
       <details>
         <summary>Do you work north of Boca as well?</summary>
         <div class="faq-answer">
-          <p>Mia works south Palm Beach County regularly — a recent closing was a six-bedroom in Lake
-          Worth at $835,000. Her deepest inventory remains in Broward, in
+          <p>I work south Palm Beach County regularly — a recent closing was a six-bedroom in Lake Worth at $835,000. My deepest inventory remains in Broward, in
           <a class="underline-link" href="/pompano-beach-real-estate/">Pompano Beach</a> and
           <a class="underline-link" href="/fort-lauderdale-real-estate/">Fort Lauderdale</a>.</p>
         </div>
@@ -269,16 +268,16 @@
           </div>
           <label class="field"><span>Email <span class="req" aria-hidden="true">*</span></span><input name="email" type="email" required autocomplete="email"></label>
           <label class="field"><span>Phone</span><input name="phone" type="tel" autocomplete="tel"></label>
-          <label class="field"><span>How can Mia help?</span><textarea name="message" rows="4" placeholder="East or west of I-95? HOA or no HOA?"></textarea></label>
+          <label class="field"><span>How can I help?</span><textarea name="message" rows="4" placeholder="East or west of I-95? HOA or no HOA?"></textarea></label>
           <div class="form-foot">
-            <p class="form-note">Your details go straight to Mia. No lists, no spam.</p>
+            <p class="form-note">Your details come straight to me. No lists, no spam.</p>
             <button class="btn" type="submit">Send message</button>
           </div>
         </form>
 
         <div id="contactSuccess" class="form-success hide">
           <h3>Message sent</h3>
-          <p>Thanks for reaching out — Mia will get back to you shortly.</p>
+          <p>Thanks for reaching out — I'll get back to you shortly.</p>
           <p>Need a faster answer? Call <a class="underline-link" href="tel:+19545527330">(954) 552-7330</a>.</p>
         </div>
       </div>
@@ -291,7 +290,7 @@
     <div class="section-head reveal">
       <div>
         <p class="eyebrow">Nearby</p>
-        <h2>Other areas Mia covers</h2>
+        <h2>Other areas I cover</h2>
       </div>
     </div>
     <div class="areas-grid reveal">
@@ -308,7 +307,7 @@
         <span class="go">Explore →</span>
       </a>
       <a class="area-card" href="/">
-        <h3>All listings</h3><p>Everything Mia currently has active across South Florida.</p>
+        <h3>All listings</h3><p>Everything I currently have active across South Florida.</p>
         <span class="go">Back home →</span>
       </a>
     </div>
@@ -456,7 +455,7 @@
         {
           "@type": "Question",
           "name": "Can I find a Boca Raton home without an HOA?",
-          "acceptedAnswer": { "@type": "Answer", "text": "Yes, mostly in the older neighborhoods east of I-95. Mia's listing at 600 NW 12th Avenue is one — four bedrooms, three baths, 1,857 square feet, no association." }
+          "acceptedAnswer": { "@type": "Answer", "text": "Yes, mostly in the older neighborhoods east of I-95. My listing at 600 NW 12th Avenue is one — four bedrooms, three baths, 1,857 square feet, no association." }
         },
         {
           "@type": "Question",
@@ -466,7 +465,7 @@
         {
           "@type": "Question",
           "name": "Do you work north of Boca Raton as well?",
-          "acceptedAnswer": { "@type": "Answer", "text": "Mia works south Palm Beach County regularly — a recent closing was a six-bedroom in Lake Worth at $835,000. Her deepest inventory remains in Broward, in Pompano Beach and Fort Lauderdale." }
+          "acceptedAnswer": { "@type": "Answer", "text": "I work south Palm Beach County regularly — a recent closing was a six-bedroom in Lake Worth at $835,000. My deepest inventory remains in Broward, in Pompano Beach and Fort Lauderdale." }
         }
       ]
     }
diff --git a/docs/fort-lauderdale-real-estate/index.html b/docs/fort-lauderdale-real-estate/index.html
index 33dae61..5a99248 100644
--- a/docs/fort-lauderdale-real-estate/index.html
+++ b/docs/fort-lauderdale-real-estate/index.html
@@ -5,7 +5,7 @@
 <meta name="viewport" content="width=device-width,initial-scale=1">
 
 <title>Fort Lauderdale Real Estate Agent | Mia Druck</title>
-<meta name="description" content="Buying or selling in Fort Lauderdale? Mia Druck works Victoria Park, Rio Vista, Coral Ridge, Las Olas and the Middle River neighborhoods — single family, condos and small multifamily.">
+<meta name="description" content="Buying or selling in Fort Lauderdale? I know Victoria Park, Rio Vista, Coral Ridge, Las Olas and the Middle River neighborhoods — single family, condos and small multifamily.">
 <link rel="canonical" href="https://miadruck.com/fort-lauderdale-real-estate/">
 <meta name="robots" content="index,follow,max-image-preview:large,max-snippet:-1">
 <meta name="theme-color" content="#0F2436">
@@ -18,14 +18,14 @@
 <meta property="og:title" content="Fort Lauderdale Real Estate Agent | Mia Druck">
 <meta property="og:description" content="Local guidance across Victoria Park, Rio Vista, Coral Ridge, Las Olas and the Middle River neighborhoods.">
 <meta property="og:url" content="https://miadruck.com/fort-lauderdale-real-estate/">
-<meta property="og:image" content="https://miadruck.com/assets/img/og-image.jpg">
-<meta property="og:image:width" content="1200">
-<meta property="og:image:height" content="630">
-<meta property="og:image:alt" content="A lighthouse at sunset on the South Florida coast">
+<meta property="og:image" content="https://miadruck.com/assets/img/og-image.png">
+<meta property="og:image:width" content="1731">
+<meta property="og:image:height" content="909">
+<meta property="og:image:alt" content="Mia Druck, Ocean Glades Realty - real estate, made simple. Serving Fort Lauderdale, Pompano Beach, Lighthouse Point and Boca Raton.">
 <meta name="twitter:card" content="summary_large_image">
 <meta name="twitter:title" content="Fort Lauderdale Real Estate Agent | Mia Druck">
 <meta name="twitter:description" content="Local guidance across Victoria Park, Rio Vista, Coral Ridge, Las Olas and the Middle River neighborhoods.">
-<meta name="twitter:image" content="https://miadruck.com/assets/img/og-image.jpg">
+<meta name="twitter:image" content="https://miadruck.com/assets/img/og-image.png">
 
 <link rel="icon" href="/favicon.svg" type="image/svg+xml">
 <link rel="apple-touch-icon" href="/apple-touch-icon.png">
@@ -79,7 +79,7 @@
       Fort Lauderdale is really a dozen small markets wearing one name. What a home is worth here
       depends less on the city and more on which side of a bridge it sits on, whether the canal
       behind it has a fixed span between the dock and the ocean, and how the last flood map treated
-      the block. Mia works these neighborhoods street by street.
+      the block. I work these neighborhoods street by street.
     </p>
     <div class="hero-actions">
       <a class="btn" href="tel:+19545527330">(954) 552-7330</a>
@@ -93,7 +93,7 @@
     <div class="section-head reveal">
       <div>
         <p class="eyebrow">Neighborhoods</p>
-        <h2>Where she spends her time</h2>
+        <h2>Where I spend my time</h2>
       </div>
       <p class="hint">Not an exhaustive list — ask about anywhere in Broward.</p>
     </div>
@@ -121,7 +121,7 @@
       </div>
       <div>
         <p>
-          <strong>Middle River Terrace and Poinsettia Heights</strong> are where Mia's most recent
+          <strong>Middle River Terrace and Poinsettia Heights</strong> are where my most recent
           Fort Lauderdale closing happened — an investor duplex on NE 15th Street. This corridor is
           the practical entry point for small multifamily in the city, and it behaves differently
           from the single family market a few blocks east.
@@ -164,7 +164,7 @@
     <p class="lead reveal" style="margin-top:44px;">
       Nothing active in Fort Lauderdale at the moment — inventory here moves quickly and a good deal
       of it never reaches the public portals.
-      <a class="underline-link" href="#contact">Tell Mia what you're looking for</a> and she'll work
+      <a class="underline-link" href="#contact">Tell me what you're looking for</a> and I'll work
       the off-market side.
     </p>
   </div>
@@ -174,7 +174,7 @@
   <div class="wrap">
     <div class="section-head reveal">
       <div>
-        <p class="eyebrow">How She Works</p>
+        <p class="eyebrow">How I Work</p>
         <h2>What to expect</h2>
       </div>
     </div>
@@ -184,13 +184,12 @@
         <p>
           <strong>If you're buying,</strong> the first conversation is about narrowing — which
           neighborhoods actually fit how you live, what your realistic budget covers once insurance
-          and any HOA are counted, and whether waterfront is a requirement or a preference. Mia will
-          tell you when a listing is overpriced rather than let you find out at appraisal.
+          and any HOA are counted, and whether waterfront is a requirement or a preference. I'll tell you when a listing is overpriced rather than let you find out at appraisal.
         </p>
       </div>
       <div>
         <p>
-          <strong>If you're selling,</strong> she'll walk the property, pull genuinely comparable
+          <strong>If you're selling,</strong> I'll walk the property, pull genuinely comparable
           sales from your immediate area rather than the whole ZIP code, and be direct about the
           short list of improvements worth making first. Insurance and roof age matter more to Fort
           Lauderdale buyers now than they did a few years ago, and pricing has to account for that.
@@ -216,14 +215,13 @@
           <p>It depends on what you want walkable. Victoria Park and Colee Hammock put Las Olas at
           your doorstep. Coral Ridge and Imperial Point give you more house and yard for the money
           but you'll drive more. Rio Vista is the premium waterfront address south of the river.
-          Mia will shortlist three or four based on a single conversation rather than sending you
-          a hundred listings.</p>
+          I'll shortlist three or four based on a single conversation rather than sending you a hundred listings.</p>
         </div>
       </details>
       <details>
-        <summary>Does she handle duplexes and small multifamily?</summary>
+        <summary>Do you handle duplexes and small multifamily?</summary>
         <div class="faq-answer">
-          <p>Yes. Her most recent Fort Lauderdale closing was an investor duplex on NE 15th Street
+          <p>Yes. My most recent Fort Lauderdale closing was an investor duplex on NE 15th Street
           at $830,500. The Middle River and Poinsettia Heights corridors are the practical hunting
           ground for two- to four-unit property in the city.</p>
         </div>
@@ -240,10 +238,10 @@
       <details>
         <summary>Do you work rentals in Fort Lauderdale?</summary>
         <div class="faq-answer">
-          <p>Yes, seasonal and annual both. Mia currently has rental listings in
+          <p>Yes, seasonal and annual both. I currently have rental listings in
           <a class="underline-link" href="/pompano-beach-real-estate/">Pompano Beach</a> and
           <a class="underline-link" href="/lighthouse-point-real-estate/">Lighthouse Point</a>, and
-          works Fort Lauderdale rentals for owners and tenants alike.</p>
+          work Fort Lauderdale rentals for owners and tenants alike.</p>
         </div>
       </details>
     </div>
@@ -294,16 +292,16 @@
           </div>
           <label class="field"><span>Email <span class="req" aria-hidden="true">*</span></span><input name="email" type="email" required autocomplete="email"></label>
           <label class="field"><span>Phone</span><input name="phone" type="tel" autocomplete="tel"></label>
-          <label class="field"><span>How can Mia help?</span><textarea name="message" rows="4" placeholder="Which Fort Lauderdale neighborhoods are you considering?"></textarea></label>
+          <label class="field"><span>How can I help?</span><textarea name="message" rows="4" placeholder="Which Fort Lauderdale neighborhoods are you considering?"></textarea></label>
           <div class="form-foot">
-            <p class="form-note">Your details go straight to Mia. No lists, no spam.</p>
+            <p class="form-note">Your details come straight to me. No lists, no spam.</p>
             <button class="btn" type="submit">Send message</button>
           </div>
         </form>
 
         <div id="contactSuccess" class="form-success hide">
           <h3>Message sent</h3>
-          <p>Thanks for reaching out — Mia will get back to you shortly.</p>
+          <p>Thanks for reaching out — I'll get back to you shortly.</p>
           <p>Need a faster answer? Call <a class="underline-link" href="tel:+19545527330">(954) 552-7330</a>.</p>
         </div>
       </div>
@@ -316,7 +314,7 @@
     <div class="section-head reveal">
       <div>
         <p class="eyebrow">Nearby</p>
-        <h2>Other areas Mia covers</h2>
+        <h2>Other areas I cover</h2>
       </div>
     </div>
     <div class="areas-grid reveal">
@@ -333,7 +331,7 @@
         <span class="go">Explore →</span>
       </a>
       <a class="area-card" href="/">
-        <h3>All listings</h3><p>Everything Mia currently has active across South Florida.</p>
+        <h3>All listings</h3><p>Everything I currently have active across South Florida.</p>
         <span class="go">Back home →</span>
       </a>
     </div>
@@ -455,8 +453,8 @@
         },
         {
           "@type": "Question",
-          "name": "Does Mia Druck handle duplexes and small multifamily?",
-          "acceptedAnswer": { "@type": "Answer", "text": "Yes. Her most recent Fort Lauderdale closing was an investor duplex on NE 15th Street at $830,500. The Middle River and Poinsettia Heights corridors are the practical hunting ground for two to four unit property in the city." }
+          "name": "Do you handle duplexes and small multifamily?",
+          "acceptedAnswer": { "@type": "Answer", "text": "Yes. My most recent Fort Lauderdale closing was an investor duplex on NE 15th Street at $830,500. The Middle River and Poinsettia Heights corridors are the practical hunting ground for two to four unit property in the city." }
         },
         {
           "@type": "Question",
@@ -466,7 +464,7 @@
         {
           "@type": "Question",
           "name": "Do you work rentals in Fort Lauderdale?",
-          "acceptedAnswer": { "@type": "Answer", "text": "Yes, seasonal and annual both. Mia currently has rental listings in Pompano Beach and Lighthouse Point, and works Fort Lauderdale rentals for owners and tenants alike." }
+          "acceptedAnswer": { "@type": "Answer", "text": "Yes, seasonal and annual both. I currently have rental listings in Pompano Beach and Lighthouse Point, and work Fort Lauderdale rentals for owners and tenants alike." }
         }
       ]
     }
diff --git a/docs/index.html b/docs/index.html
index dcb269e..4948582 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -5,7 +5,7 @@
 <meta name="viewport" content="width=device-width,initial-scale=1">
 
 <title>Mia Druck | Fort Lauderdale &amp; South Florida Real Estate Agent</title>
-<meta name="description" content="Mia Druck is a South Florida real estate agent with Ocean Glades Realty, helping buyers, sellers and renters in Fort Lauderdale, Pompano Beach, Lighthouse Point and Boca Raton. Rated 5.0 from 25+ Google reviews.">
+<meta name="description" content="I'm Mia Druck, a South Florida real estate agent with Ocean Glades Realty, helping buyers, sellers and renters in Fort Lauderdale, Pompano Beach, Lighthouse Point and Boca Raton. Rated 5.0 from 25+ Google reviews.">
 <link rel="canonical" href="https://miadruck.com/">
 <meta name="robots" content="index,follow,max-image-preview:large,max-snippet:-1,max-video-preview:-1">
 <meta name="author" content="Mia Druck">
@@ -24,15 +24,15 @@
 <meta property="og:title" content="Mia Druck | Fort Lauderdale &amp; South Florida Real Estate Agent">
 <meta property="og:description" content="Buying, selling and rentals across Fort Lauderdale, Pompano Beach, Lighthouse Point and Boca Raton. Rated 5.0 from 25+ Google reviews.">
 <meta property="og:url" content="https://miadruck.com/">
-<meta property="og:image" content="https://miadruck.com/assets/img/og-image.jpg">
-<meta property="og:image:width" content="1200">
-<meta property="og:image:height" content="630">
-<meta property="og:image:alt" content="A lighthouse at sunset on the South Florida coast">
+<meta property="og:image" content="https://miadruck.com/assets/img/og-image.png">
+<meta property="og:image:width" content="1731">
+<meta property="og:image:height" content="909">
+<meta property="og:image:alt" content="Mia Druck, Ocean Glades Realty - real estate, made simple. Serving Fort Lauderdale, Pompano Beach, Lighthouse Point and Boca Raton.">
 <meta name="twitter:card" content="summary_large_image">
 <meta name="twitter:title" content="Mia Druck | Fort Lauderdale &amp; South Florida Real Estate Agent">
 <meta name="twitter:description" content="Buying, selling and rentals across Fort Lauderdale, Pompano Beach, Lighthouse Point and Boca Raton.">
-<meta name="twitter:image" content="https://miadruck.com/assets/img/og-image.jpg">
-<meta name="twitter:image:alt" content="A lighthouse at sunset on the South Florida coast">
+<meta name="twitter:image" content="https://miadruck.com/assets/img/og-image.png">
+<meta name="twitter:image:alt" content="Mia Druck, Ocean Glades Realty - real estate, made simple. Serving Fort Lauderdale, Pompano Beach, Lighthouse Point and Boca Raton.">
 
 <!-- Icons -->
 <link rel="icon" href="/favicon.svg" type="image/svg+xml">
@@ -91,7 +91,7 @@
     <p class="eyebrow">South Florida Real Estate</p>
     <h1>Real estate, <em>made simple.</em></h1>
     <p class="hero-sub">
-      Mia Druck helps buyers, sellers and renters move through Fort Lauderdale,
+      I help buyers, sellers and renters move through Fort Lauderdale,
       Pompano Beach, Lighthouse Point and Boca Raton — with fast communication
       and negotiation that holds its ground.
     </p>
@@ -125,7 +125,7 @@
   <div class="wrap">
     <div class="section-head reveal">
       <div>
-        <p class="eyebrow">01 — Listings</p>
+        <p class="eyebrow">Listings</p>
         <h2>Featured active listings</h2>
       </div>
       <p class="hint">A curated selection. Ask about off-market inventory that never reaches the public sites.</p>
@@ -283,7 +283,7 @@
   <div class="wrap">
     <div class="section-head reveal">
       <div>
-        <p class="eyebrow">02 — Recent Sales</p>
+        <p class="eyebrow">Recent Sales</p>
         <h2>Closed and delivered</h2>
       </div>
       <p class="hint">Single family, duplex and investment property across Broward and Palm Beach County.</p>
@@ -341,7 +341,7 @@
   <div class="wrap">
     <div class="section-head reveal">
       <div>
-        <p class="eyebrow">03 — Client Reviews</p>
+        <p class="eyebrow">Client Reviews</p>
         <h2>What past clients say</h2>
       </div>
       <p class="hint">
@@ -388,7 +388,7 @@
   <div class="wrap">
     <div class="section-head reveal">
       <div>
-        <p class="eyebrow">04 — About</p>
+        <p class="eyebrow">About</p>
         <h2>Meet Mia Druck</h2>
       </div>
       <p class="hint">Licensed real estate agent · Ocean Glades Realty · Lauderdale-by-the-Sea</p>
@@ -404,19 +404,16 @@
       <div class="about-body">
         <div class="prose">
           <p class="lead">
-            Mia Druck helps buyers and sellers across South Florida with effective, confident guidance —
+            I help buyers and sellers across South Florida with effective, confident guidance —
             from condos and rentals to waterfront and luxury homes.
           </p>
           <p>
-            She makes the process smooth with fast communication and strong negotiation, whether you're
+            I make the process smooth with fast communication and strong negotiation, whether you're
             buying your first home, listing one you've outgrown, or adding a rental to an investment
-            portfolio. Clients consistently point to the same two things: she picks up the phone, and
-            she does not let problems sit.
+            portfolio. Clients consistently point to the same two things: I pick up the phone, and I don't let problems sit.
           </p>
           <p>
-            When she's not working, Mia is enjoying the South Florida lifestyle — boat days, great
-            dinners and happy hours. She brings that same relaxed, results-driven energy to every
-            client relationship.
+            When I'm not working, I'm enjoying the South Florida lifestyle — boat days, great dinners and happy hours. I bring that same relaxed, results-driven energy to every client relationship.
           </p>
         </div>
 
@@ -453,8 +450,8 @@
   <div class="wrap">
     <div class="section-head reveal">
       <div>
-        <p class="eyebrow">05 — Areas Served</p>
-        <h2>Where Mia works</h2>
+        <p class="eyebrow">Areas Served</p>
+        <h2>Where I work</h2>
       </div>
       <p class="hint">Broward and south Palm Beach County, with the deepest inventory along the coast.</p>
     </div>
@@ -467,7 +464,7 @@
       </a>
       <a class="area-card" href="/pompano-beach-real-estate/">
         <h3>Pompano Beach</h3>
-        <p>Her densest inventory: beach-side single family, townhomes and seasonal rentals.</p>
+        <p>My densest inventory: beach-side single family, townhomes and seasonal rentals.</p>
         <span class="go">Explore →</span>
       </a>
       <a class="area-card" href="/lighthouse-point-real-estate/">
@@ -489,7 +486,7 @@
   <div class="wrap">
     <div class="section-head reveal">
       <div>
-        <p class="eyebrow">06 — Questions</p>
+        <p class="eyebrow">Questions</p>
         <h2>Common questions</h2>
       </div>
       <p class="hint">Something not covered here? Call or text — the answer is usually one message away.</p>
@@ -501,8 +498,7 @@
         <div class="faq-answer">
           <p>Primarily Fort Lauderdale, Pompano Beach, Lighthouse Point and Boca Raton, with regular
           work throughout Broward County and south Palm Beach County — including Lauderdale-by-the-Sea,
-          Deerfield Beach and Lake Worth. If you're looking somewhere nearby, ask; if it isn't a market
-          Mia knows well, she'll say so and refer you to someone who does.</p>
+          Deerfield Beach and Lake Worth. If you're looking somewhere nearby, ask; if it isn't a market I know well, I'll say so and refer you to someone who does.</p>
         </div>
       </details>
 
@@ -519,8 +515,7 @@
         <summary>What does it cost a buyer to work with you?</summary>
         <div class="faq-answer">
           <p>Buyer representation agreements are now signed before touring homes, and the compensation
-          is negotiated and written down up front rather than assumed. Mia will walk you through exactly
-          what she charges, what the seller may or may not contribute, and what it means for your
+          is negotiated and written down up front rather than assumed. I'll walk you through exactly what I charge, what the seller may or may not contribute, and what it means for your
           closing costs — before you commit to anything.</p>
         </div>
       </details>
@@ -528,7 +523,7 @@
       <details>
         <summary>I'm thinking about selling. What's the first step?</summary>
         <div class="faq-answer">
-          <p>A conversation and a walkthrough. Mia will look at the property, review comparable sales in
+          <p>A conversation and a walkthrough. I'll look at the property, review comparable sales in
           your immediate area, and give you a realistic price range along with the handful of
           improvements actually worth making before listing. There's no obligation attached to that
           first meeting.</p>
@@ -538,8 +533,7 @@
       <details>
         <summary>Do you handle rentals as well as sales?</summary>
         <div class="faq-answer">
-          <p>Yes — both seasonal and annual. Several of her current listings are rentals, and she works
-          with owners on getting a property rent-ready as well as with tenants trying to find one.</p>
+          <p>Yes — both seasonal and annual. Several of my current listings are rentals, and I work with owners on getting a property rent-ready as well as with tenants trying to find one.</p>
         </div>
       </details>
 
@@ -548,7 +542,7 @@
         <div class="faq-answer">
           <p>Fast, and that's the single thing clients mention most in reviews. Calling or texting
           <a class="underline-link" href="tel:+19545527330">(954) 552-7330</a> is the quickest route;
-          the form on this page reaches her too.</p>
+          the form on this page reaches me too.</p>
         </div>
       </details>
     </div>
@@ -560,7 +554,7 @@
   <div class="wrap">
     <div class="section-head reveal">
       <div>
-        <p class="eyebrow">07 — Contact</p>
+        <p class="eyebrow">Contact</p>
         <h2>Let's talk about your move</h2>
       </div>
       <p class="hint">Buying, selling, renting, or just exploring what's possible — all fine.</p>
@@ -620,19 +614,19 @@
           </label>
 
           <label class="field">
-            <span>How can Mia help?</span>
+            <span>How can I help?</span>
             <textarea name="message" rows="4" placeholder="Buying, selling, renting, or just exploring?"></textarea>
           </label>
 
           <div class="form-foot">
-            <p class="form-note">Your details go straight to Mia. No lists, no spam.</p>
+            <p class="form-note">Your details come straight to me. No lists, no spam.</p>
             <button class="btn" type="submit">Send message</button>
           </div>
         </form>
 
         <div id="contactSuccess" class="form-success hide">
           <h3>Message sent</h3>
-          <p>Thanks for reaching out — Mia will get back to you shortly.</p>
+          <p>Thanks for reaching out — I'll get back to you shortly.</p>
           <p>Need a faster answer? Call <a class="underline-link" href="tel:+19545527330">(954) 552-7330</a>.</p>
         </div>
       </div>
@@ -924,22 +918,22 @@
         {
           "@type": "Question",
           "name": "What does it cost a buyer to work with you?",
-          "acceptedAnswer": { "@type": "Answer", "text": "Buyer representation agreements are signed before touring homes, and compensation is negotiated and written down up front. Mia will walk you through exactly what she charges, what the seller may or may not contribute, and what it means for your closing costs before you commit." }
+          "acceptedAnswer": { "@type": "Answer", "text": "Buyer representation agreements are signed before touring homes, and compensation is negotiated and written down up front. I will walk you through exactly what I charge, what the seller may or may not contribute, and what it means for your closing costs before you commit." }
         },
         {
           "@type": "Question",
           "name": "I'm thinking about selling. What's the first step?",
-          "acceptedAnswer": { "@type": "Answer", "text": "A conversation and a walkthrough. Mia will look at the property, review comparable sales in your immediate area, and give you a realistic price range along with the improvements actually worth making before listing. There is no obligation attached to that first meeting." }
+          "acceptedAnswer": { "@type": "Answer", "text": "A conversation and a walkthrough. I will look at the property, review comparable sales in your immediate area, and give you a realistic price range along with the improvements actually worth making before listing. There is no obligation attached to that first meeting." }
         },
         {
           "@type": "Question",
           "name": "Do you handle rentals as well as sales?",
-          "acceptedAnswer": { "@type": "Answer", "text": "Yes, both seasonal and annual. Several current listings are rentals, and Mia works with owners on getting a property rent-ready as well as with tenants trying to find one." }
+          "acceptedAnswer": { "@type": "Answer", "text": "Yes, both seasonal and annual. Several current listings are rentals, and I work with owners on getting a property rent-ready as well as with tenants trying to find one." }
         },
         {
           "@type": "Question",
           "name": "How quickly do you respond?",
-          "acceptedAnswer": { "@type": "Answer", "text": "Fast, and it is the single thing clients mention most in reviews. Calling or texting (954) 552-7330 is the quickest route; the contact form reaches her too." }
+          "acceptedAnswer": { "@type": "Answer", "text": "Fast, and it is the single thing clients mention most in reviews. Calling or texting (954) 552-7330 is the quickest route; the contact form reaches me too." }
         }
       ]
     }
diff --git a/docs/lighthouse-point-real-estate/index.html b/docs/lighthouse-point-real-estate/index.html
index 8c6ccde..84a13ac 100644
--- a/docs/lighthouse-point-real-estate/index.html
+++ b/docs/lighthouse-point-real-estate/index.html
@@ -5,7 +5,7 @@
 <meta name="viewport" content="width=device-width,initial-scale=1">
 
 <title>Lighthouse Point Real Estate Agent | Mia Druck</title>
-<meta name="description" content="Lighthouse Point homes with Mia Druck — deep-water canals, direct Hillsboro Inlet ocean access and an all single family city. Active listings and local guidance.">
+<meta name="description" content="Lighthouse Point homes — deep-water canals, direct Hillsboro Inlet ocean access and an all single family city. See my active listing and local guidance.">
 <link rel="canonical" href="https://miadruck.com/lighthouse-point-real-estate/">
 <meta name="robots" content="index,follow,max-image-preview:large,max-snippet:-1">
 <meta name="theme-color" content="#0F2436">
@@ -18,14 +18,14 @@
 <meta property="og:title" content="Lighthouse Point Real Estate Agent | Mia Druck">
 <meta property="og:description" content="A boating-first city of deep-water canals with direct ocean access through the Hillsboro Inlet.">
 <meta property="og:url" content="https://miadruck.com/lighthouse-point-real-estate/">
-<meta property="og:image" content="https://miadruck.com/assets/img/og-image.jpg">
-<meta property="og:image:width" content="1200">
-<meta property="og:image:height" content="630">
-<meta property="og:image:alt" content="A lighthouse at sunset on the South Florida coast">
+<meta property="og:image" content="https://miadruck.com/assets/img/og-image.png">
+<meta property="og:image:width" content="1731">
+<meta property="og:image:height" content="909">
+<meta property="og:image:alt" content="Mia Druck, Ocean Glades Realty - real estate, made simple. Serving Fort Lauderdale, Pompano Beach, Lighthouse Point and Boca Raton.">
 <meta name="twitter:card" content="summary_large_image">
 <meta name="twitter:title" content="Lighthouse Point Real Estate Agent | Mia Druck">
 <meta name="twitter:description" content="Deep-water canals with direct ocean access through the Hillsboro Inlet.">
-<meta name="twitter:image" content="https://miadruck.com/assets/img/og-image.jpg">
+<meta name="twitter:image" content="https://miadruck.com/assets/img/og-image.png">
 
 <link rel="icon" href="/favicon.svg" type="image/svg+xml">
 <link rel="apple-touch-icon" href="/apple-touch-icon.png">
@@ -83,7 +83,7 @@
     </p>
     <div class="hero-actions">
       <a class="btn" href="tel:+19545527330">(954) 552-7330</a>
-      <a class="btn btn-ghost" href="#listings">See her listing here</a>
+      <a class="btn btn-ghost" href="#listings">See my listing here</a>
     </div>
   </div>
 </section>
@@ -129,7 +129,7 @@
         <p>
           <strong>Inventory is thin.</strong> A city this small simply doesn't produce many listings
           in a given month, and the good ones move through networks before they hit the portals.
-          Mia's current Lighthouse Point listing on NE 29th Avenue is off-market for exactly that
+          My current Lighthouse Point listing on NE 29th Avenue is off-market for exactly that
           reason.
         </p>
       </div>
@@ -208,16 +208,13 @@
         <div class="faq-answer">
           <p>The city is small — roughly two and a half square miles — so even normal turnover
           produces a short list of available homes. Owners also tend to stay a long time. The
-          practical consequence is that being early matters more here than almost anywhere else Mia
-          works, which is why she keeps a list of buyers waiting on specific canals.</p>
+          practical consequence is that being early matters more here than almost anywhere else I work, which is why I keep a list of buyers waiting on specific canals.</p>
         </div>
       </details>
       <details>
         <summary>Can you help if nothing is listed right now?</summary>
         <div class="faq-answer">
-          <p>That's the normal situation in Lighthouse Point, and it's most of what she does here.
-          Tell her the canal, the vessel, and the budget, and she'll work the off-market side rather
-          than wait for a portal to update.</p>
+          <p>That's the normal situation in Lighthouse Point, and it's most of what I do here. Tell me the canal, the vessel, and the budget, and I'll work the off-market side rather than wait for a portal to update.</p>
         </div>
       </details>
     </div>
@@ -267,16 +264,16 @@
           </div>
           <label class="field"><span>Email <span class="req" aria-hidden="true">*</span></span><input name="email" type="email" required autocomplete="email"></label>
           <label class="field"><span>Phone</span><input name="phone" type="tel" autocomplete="tel"></label>
-          <label class="field"><span>How can Mia help?</span><textarea name="message" rows="4" placeholder="Waterfront or interior? Any boat requirements?"></textarea></label>
+          <label class="field"><span>How can I help?</span><textarea name="message" rows="4" placeholder="Waterfront or interior? Any boat requirements?"></textarea></label>
           <div class="form-foot">
-            <p class="form-note">Your details go straight to Mia. No lists, no spam.</p>
+            <p class="form-note">Your details come straight to me. No lists, no spam.</p>
             <button class="btn" type="submit">Send message</button>
           </div>
         </form>
 
         <div id="contactSuccess" class="form-success hide">
           <h3>Message sent</h3>
-          <p>Thanks for reaching out — Mia will get back to you shortly.</p>
+          <p>Thanks for reaching out — I'll get back to you shortly.</p>
           <p>Need a faster answer? Call <a class="underline-link" href="tel:+19545527330">(954) 552-7330</a>.</p>
         </div>
       </div>
@@ -289,7 +286,7 @@
     <div class="section-head reveal">
       <div>
         <p class="eyebrow">Nearby</p>
-        <h2>Other areas Mia covers</h2>
+        <h2>Other areas I cover</h2>
       </div>
     </div>
     <div class="areas-grid reveal">
@@ -306,7 +303,7 @@
         <span class="go">Explore →</span>
       </a>
       <a class="area-card" href="/">
-        <h3>All listings</h3><p>Everything Mia currently has active across South Florida.</p>
+        <h3>All listings</h3><p>Everything I currently have active across South Florida.</p>
         <span class="go">Back home →</span>
       </a>
     </div>
@@ -469,7 +466,7 @@
         {
           "@type": "Question",
           "name": "Can you help if nothing is listed right now?",
-          "acceptedAnswer": { "@type": "Answer", "text": "That is the normal situation in Lighthouse Point and most of what Mia does here. Tell her the canal, the vessel and the budget, and she will work the off-market side rather than wait for a portal to update." }
+          "acceptedAnswer": { "@type": "Answer", "text": "That is the normal situation in Lighthouse Point and most of what I do here. Tell me the canal, the vessel and the budget, and I will work the off-market side rather than wait for a portal to update." }
         }
       ]
     }
diff --git a/docs/pompano-beach-real-estate/index.html b/docs/pompano-beach-real-estate/index.html
index 767253f..b5f4dba 100644
--- a/docs/pompano-beach-real-estate/index.html
+++ b/docs/pompano-beach-real-estate/index.html
@@ -5,7 +5,7 @@
 <meta name="viewport" content="width=device-width,initial-scale=1">
 
 <title>Pompano Beach Real Estate Agent | Mia Druck</title>
-<meta name="description" content="Homes for sale and rent in Pompano Beach with Mia Druck — Old Pompano, Harbor Village, Cresthaven, Garden Isles and the beach corridor. Active listings and recent closings.">
+<meta name="description" content="Homes for sale and rent in Pompano Beach — Old Pompano, Harbor Village, Cresthaven, Garden Isles and the beach corridor. Active listings and recent closings.">
 <link rel="canonical" href="https://miadruck.com/pompano-beach-real-estate/">
 <meta name="robots" content="index,follow,max-image-preview:large,max-snippet:-1">
 <meta name="theme-color" content="#0F2436">
@@ -16,16 +16,16 @@
 <meta property="og:site_name" content="Mia Druck | Ocean Glades Realty">
 <meta property="og:locale" content="en_US">
 <meta property="og:title" content="Pompano Beach Real Estate Agent | Mia Druck">
-<meta property="og:description" content="Mia Druck's densest inventory — single family, townhomes and seasonal rentals across Pompano Beach.">
+<meta property="og:description" content="My densest inventory — single family, townhomes and seasonal rentals across Pompano Beach.">
 <meta property="og:url" content="https://miadruck.com/pompano-beach-real-estate/">
-<meta property="og:image" content="https://miadruck.com/assets/img/og-image.jpg">
-<meta property="og:image:width" content="1200">
-<meta property="og:image:height" content="630">
-<meta property="og:image:alt" content="A lighthouse at sunset on the South Florida coast">
+<meta property="og:image" content="https://miadruck.com/assets/img/og-image.png">
+<meta property="og:image:width" content="1731">
+<meta property="og:image:height" content="909">
+<meta property="og:image:alt" content="Mia Druck, Ocean Glades Realty - real estate, made simple. Serving Fort Lauderdale, Pompano Beach, Lighthouse Point and Boca Raton.">
 <meta name="twitter:card" content="summary_large_image">
 <meta name="twitter:title" content="Pompano Beach Real Estate Agent | Mia Druck">
 <meta name="twitter:description" content="Single family, townhomes and seasonal rentals across Pompano Beach.">
-<meta name="twitter:image" content="https://miadruck.com/assets/img/og-image.jpg">
+<meta name="twitter:image" content="https://miadruck.com/assets/img/og-image.png">
 
 <link rel="icon" href="/favicon.svg" type="image/svg+xml">
 <link rel="apple-touch-icon" href="/apple-touch-icon.png">
@@ -76,14 +76,13 @@
     <p class="eyebrow">Pompano Beach · Broward County</p>
     <h1>Buying &amp; selling in <em>Pompano Beach</em></h1>
     <p class="lead">
-      Pompano is the market Mia knows best — it's where most of her active inventory sits and where
-      she closed most recently. The city has spent the last decade rebuilding its beachfront and
+      Pompano is the market I know best — it's where most of my active inventory sits and where I closed most recently. The city has spent the last decade rebuilding its beachfront and
       Atlantic Boulevard corridor, which means blocks a few minutes apart can be on completely
       different trajectories. Knowing which is which is most of the job.
     </p>
     <div class="hero-actions">
       <a class="btn" href="tel:+19545527330">(954) 552-7330</a>
-      <a class="btn btn-ghost" href="#listings">See her Pompano listings</a>
+      <a class="btn btn-ghost" href="#listings">See my Pompano listings</a>
     </div>
   </div>
 </section>
@@ -115,7 +114,7 @@
         </p>
         <p>
           <strong>Old Pompano and the streets around it</strong> hold the city's oldest housing
-          stock and a lot of its renovation activity. This is where Mia's most recent sale closed —
+          stock and a lot of its renovation activity. This is where my most recent sale closed —
           a single family home with a pool on SE 11th Street.
         </p>
       </div>
@@ -128,7 +127,7 @@
         </p>
         <p>
           <strong>Palm Aire and the townhome communities</strong> suit buyers who want low
-          maintenance and a predictable monthly cost. Mia has active townhome listings
+          maintenance and a predictable monthly cost. I have active townhome listings
           that fit exactly that.
         </p>
       </div>
@@ -245,8 +244,7 @@
         <div class="faq-answer">
           <p>Generally yes, particularly west of Federal Highway, which is a large part of why buyers
           priced out of Fort Lauderdale end up here. The beach corridor is a different story — new
-          construction east of the Intracoastal competes directly with Fort Lauderdale pricing. Mia
-          will give you honest numbers for the specific blocks you're considering rather than a
+          construction east of the Intracoastal competes directly with Fort Lauderdale pricing. I'll give you honest numbers for the specific blocks you're considering rather than a
           citywide average that describes nobody's actual purchase.</p>
         </div>
       </details>
@@ -261,18 +259,17 @@
       <details>
         <summary>Do you handle seasonal rentals?</summary>
         <div class="faq-answer">
-          <p>Yes. Her listing at 1433 NE 27th Street is a seasonal rental at $3,000 a month. She
-          works both sides — owners getting a property rent-ready, and tenants trying to secure one
+          <p>Yes. My listing at 1433 NE 27th Street is a seasonal rental at $3,000 a month. I work both sides — owners getting a property rent-ready, and tenants trying to secure one
           before season.</p>
         </div>
       </details>
       <details>
         <summary>Is Pompano a good place to buy an investment property?</summary>
         <div class="faq-answer">
-          <p>It's the market where her investor clients have been most active, largely because entry
+          <p>It's the market where my investor clients have been most active, largely because entry
           prices are lower than Fort Lauderdale while the rental demand is comparable. Whether it
           works for you depends on the specific property, your financing, and how insurance prices
-          out — all of which Mia will run through before you make an offer, not after.</p>
+          out — all of which I'll run through before you make an offer, not after.</p>
         </div>
       </details>
     </div>
@@ -322,16 +319,16 @@
           </div>
           <label class="field"><span>Email <span class="req" aria-hidden="true">*</span></span><input name="email" type="email" required autocomplete="email"></label>
           <label class="field"><span>Phone</span><input name="phone" type="tel" autocomplete="tel"></label>
-          <label class="field"><span>How can Mia help?</span><textarea name="message" rows="4" placeholder="Buying, selling or renting in Pompano Beach?"></textarea></label>
+          <label class="field"><span>How can I help?</span><textarea name="message" rows="4" placeholder="Buying, selling or renting in Pompano Beach?"></textarea></label>
           <div class="form-foot">
-            <p class="form-note">Your details go straight to Mia. No lists, no spam.</p>
+            <p class="form-note">Your details come straight to me. No lists, no spam.</p>
             <button class="btn" type="submit">Send message</button>
           </div>
         </form>
 
         <div id="contactSuccess" class="form-success hide">
           <h3>Message sent</h3>
-          <p>Thanks for reaching out — Mia will get back to you shortly.</p>
+          <p>Thanks for reaching out — I'll get back to you shortly.</p>
           <p>Need a faster answer? Call <a class="underline-link" href="tel:+19545527330">(954) 552-7330</a>.</p>
         </div>
       </div>
@@ -344,7 +341,7 @@
     <div class="section-head reveal">
       <div>
         <p class="eyebrow">Nearby</p>
-        <h2>Other areas Mia covers</h2>
+        <h2>Other areas I cover</h2>
       </div>
     </div>
     <div class="areas-grid reveal">
@@ -361,7 +358,7 @@
         <span class="go">Explore →</span>
       </a>
       <a class="area-card" href="/">
-        <h3>All listings</h3><p>Everything Mia currently has active across South Florida.</p>
+        <h3>All listings</h3><p>Everything I currently have active across South Florida.</p>
         <span class="go">Back home →</span>
       </a>
     </div>
@@ -544,12 +541,12 @@
         {
           "@type": "Question",
           "name": "Do you handle seasonal rentals in Pompano Beach?",
-          "acceptedAnswer": { "@type": "Answer", "text": "Yes. Her listing at 1433 NE 27th Street is a seasonal rental at $3,000 a month. She works with owners getting a property rent-ready and with tenants trying to secure one before season." }
+          "acceptedAnswer": { "@type": "Answer", "text": "Yes. My listing at 1433 NE 27th Street is a seasonal rental at $3,000 a month. I work with owners getting a property rent-ready and with tenants trying to secure one before season." }
         },
         {
           "@type": "Question",
           "name": "Is Pompano Beach a good place to buy an investment property?",
-          "acceptedAnswer": { "@type": "Answer", "text": "It is the market where her investor clients have been most active, largely because entry prices are lower than Fort Lauderdale while rental demand is comparable. Whether it works depends on the specific property, financing and insurance costs." }
+          "acceptedAnswer": { "@type": "Answer", "text": "It is the market where my investor clients have been most active, largely because entry prices are lower than Fort Lauderdale while rental demand is comparable. Whether it works depends on the specific property, financing and insurance costs." }
         }
       ]
     }