patx/demo

add am air care

Commit eeceec6 ยท patx ยท 2026-06-10T17:59:04-04:00

Changeset
eeceec6e306963a06993db5c626d17ccd31db67d
Parents
8a3ee6213e97cb8aeb0146ed7a3889fb83ba4dca

View source at this commit

Comments

No comments yet.

Log in to comment

Diff

diff --git a/docs/am-1.png b/docs/am-1.png
new file mode 100644
index 0000000..7a7a1e7
Binary files /dev/null and b/docs/am-1.png differ
diff --git a/docs/am-2.png b/docs/am-2.png
new file mode 100644
index 0000000..d331dbe
Binary files /dev/null and b/docs/am-2.png differ
diff --git a/docs/am-3.png b/docs/am-3.png
new file mode 100644
index 0000000..aae904f
Binary files /dev/null and b/docs/am-3.png differ
diff --git a/docs/am-4.png b/docs/am-4.png
new file mode 100644
index 0000000..321ecf9
Binary files /dev/null and b/docs/am-4.png differ
diff --git a/docs/am-5.png b/docs/am-5.png
new file mode 100644
index 0000000..d12dddd
Binary files /dev/null and b/docs/am-5.png differ
diff --git a/docs/amair-logo.png b/docs/amair-logo.png
new file mode 100644
index 0000000..b7307b3
Binary files /dev/null and b/docs/amair-logo.png differ
diff --git a/docs/amair-og.png b/docs/amair-og.png
new file mode 100644
index 0000000..ca58927
Binary files /dev/null and b/docs/amair-og.png differ
diff --git a/docs/amair.html b/docs/amair.html
new file mode 100644
index 0000000..1656d9b
--- /dev/null
+++ b/docs/amair.html
@@ -0,0 +1,942 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+<meta charset="UTF-8">
+<meta name="viewport" content="width=device-width, initial-scale=1.0">
+<title>AM Air Care | Air Duct, Dryer Vent & Chimney Cleaning</title>
+<meta name="description" content="AM Air Care provides HVAC maintenance cleaning, air duct cleaning, dryer vent cleaning, chimney repair, and system maintenance across Miami-Dade and South Florida.">
+<meta property="og:type" content="website">
+<meta property="og:title" content="AM Air Care | HVAC Maintenance Cleaning &amp; Air Duct Care">
+<meta property="og:description" content="HVAC maintenance cleaning, air duct cleaning, dryer vent cleaning, chimney repair, and system maintenance across Miami-Dade and South Florida.">
+<meta property="og:image" content="amair-og.png">
+<meta property="og:image:alt" content="AM Air Care social preview card for $99 HVAC maintenance cleaning and full system inspection.">
+<meta property="og:image:width" content="1200">
+<meta property="og:image:height" content="630">
+<meta name="twitter:card" content="summary_large_image">
+<meta name="twitter:title" content="AM Air Care | HVAC Maintenance Cleaning &amp; Air Duct Care">
+<meta name="twitter:description" content="Serving Miami-Dade and South Florida with HVAC maintenance cleaning, air duct cleaning, dryer vent cleaning, chimney repair, and system maintenance.">
+<meta name="twitter:image" content="amair-og.png">
+<meta name="twitter:image:alt" content="AM Air Care social preview card for $99 HVAC maintenance cleaning and full system inspection.">
+<link rel="preconnect" href="https://fonts.googleapis.com">
+<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
+<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
+<style>
+  :root{
+    --navy:#0B1420;
+    --navy-2:#101D2E;
+    --steel:#2E8FE6;
+    --silver:#C7CDD4;
+    --off:#EDF1F5;
+    --amber:#F2A93B;
+    --line: rgba(199,205,212,0.14);
+  }
+  *{margin:0;padding:0;box-sizing:border-box;}
+  html{scroll-behavior:smooth;}
+  body{
+    background:var(--navy);
+    color:var(--off);
+    font-family:'Inter',sans-serif;
+    line-height:1.6;
+    overflow-x:hidden;
+  }
+  h1,h2,h3,.display{
+    font-family:'Bebas Neue',sans-serif;
+    letter-spacing:0.04em;
+    line-height:1.05;
+    color:var(--off);
+  }
+  .mono{font-family:'Space Mono',monospace;}
+  a{color:inherit;text-decoration:none;}
+  .wrap{max-width:1180px;margin:0 auto;padding:0 28px;}
+
+  /* Background duct ring motif */
+  .ring-field{
+    position:absolute;inset:0;overflow:hidden;pointer-events:none;
+  }
+  .ring{
+    position:absolute;border-radius:50%;
+    border:1px solid var(--line);
+  }
+  .ring::after{
+    content:'';position:absolute;inset:10px;border-radius:50%;
+    border:1px dashed rgba(46,143,230,0.18);
+  }
+
+  /* Header */
+  header{
+    position:sticky;top:0;z-index:50;
+    background:rgba(11,20,32,0.85);
+    backdrop-filter:blur(10px);
+    border-bottom:1px solid var(--line);
+  }
+  .nav{
+    display:flex;align-items:center;justify-content:space-between;
+    padding:16px 28px;max-width:1180px;margin:0 auto;
+    position:relative;gap:24px;
+  }
+  .brand{
+    display:inline-flex;align-items:center;flex:none;
+  }
+  .brand img{
+    display:block;width:210px;max-width:42vw;height:auto;
+  }
+  .navlinks{
+    display:flex;align-items:center;gap:32px;
+    font-size:14px;font-weight:600;text-transform:uppercase;letter-spacing:0.08em;
+  }
+  .navlinks a{
+    color:var(--silver);transition:color .2s;position:relative;padding:6px 0;
+  }
+  .navlinks a::after{
+    content:'';position:absolute;left:0;right:0;bottom:-4px;height:2px;
+    background:var(--steel);transform:scaleX(0);transform-origin:left;
+    transition:transform .2s;
+  }
+  .navlinks a:hover,
+  .navlinks a.active,
+  .navlinks a[aria-current="true"]{color:var(--steel);}
+  .navlinks a.active::after,
+  .navlinks a[aria-current="true"]::after{transform:scaleX(1);}
+  .nav-cta{
+    display:flex;align-items:center;gap:10px;
+    background:var(--steel);color:var(--navy);
+    font-weight:800;font-size:14px;padding:10px 20px;border-radius:4px;
+    text-transform:uppercase;letter-spacing:0.06em;
+    transition:transform .15s, box-shadow .15s;
+  }
+  .nav-cta:hover{transform:translateY(-2px);box-shadow:0 8px 20px rgba(46,143,230,0.35);}
+  .menu-toggle{
+    display:none;width:44px;height:44px;border:1px solid var(--line);border-radius:6px;
+    background:rgba(237,241,245,0.04);color:var(--off);align-items:center;justify-content:center;
+    cursor:pointer;transition:border-color .2s, background .2s;
+  }
+  .menu-toggle:hover{border-color:rgba(46,143,230,0.55);background:rgba(46,143,230,0.12);}
+  .menu-lines{display:flex;flex-direction:column;gap:5px;}
+  .menu-lines span{
+    display:block;width:20px;height:2px;background:currentColor;border-radius:999px;
+    transition:transform .2s, opacity .2s;
+  }
+  .menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(1){transform:translateY(7px) rotate(45deg);}
+  .menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(2){opacity:0;}
+  .menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
+  .sr-only{
+    position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
+    clip:rect(0,0,0,0);white-space:nowrap;border:0;
+  }
+  [id]{scroll-margin-top:92px;}
+
+  /* Hero */
+  .hero{
+    position:relative;
+    padding:110px 0 90px;
+    overflow:hidden;
+    border-bottom:1px solid var(--line);
+  }
+  .hero .wrap{
+    display:grid;grid-template-columns:1.1fr 0.9fr;gap:60px;align-items:center;position:relative;z-index:2;
+  }
+  .eyebrow{
+    display:inline-flex;align-items:center;gap:10px;
+    font-family:'Space Mono',monospace;font-size:13px;color:var(--steel);
+    text-transform:uppercase;letter-spacing:0.18em;margin-bottom:22px;
+  }
+  .eyebrow::before{content:'';width:24px;height:1px;background:var(--steel);}
+  .hero h1{
+    font-size:clamp(48px,7vw,84px);
+    margin-bottom:20px;
+  }
+  .hero h1 em{font-style:normal;color:var(--steel);}
+  .hero p.lead{
+    font-size:18px;color:var(--silver);max-width:480px;margin-bottom:34px;
+  }
+  .hero-ctas{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:40px;}
+  .btn-primary{
+    background:var(--steel);color:var(--navy);font-weight:800;
+    padding:16px 30px;border-radius:4px;font-size:15px;text-transform:uppercase;
+    letter-spacing:0.06em;display:inline-flex;align-items:center;gap:10px;
+    transition:transform .15s, box-shadow .15s;
+  }
+  .btn-primary:hover{transform:translateY(-2px);box-shadow:0 10px 26px rgba(46,143,230,0.4);}
+  .btn-ghost{
+    border:1px solid var(--line);color:var(--off);font-weight:700;
+    padding:16px 30px;border-radius:4px;font-size:15px;text-transform:uppercase;
+    letter-spacing:0.06em;transition:border-color .15s,color .15s;
+  }
+  .btn-ghost:hover{border-color:var(--steel);color:var(--steel);}
+  .hero-stats{display:flex;gap:36px;}
+  .hero-stats div{font-family:'Space Mono',monospace;}
+  .hero-stats .num{font-family:'Bebas Neue',sans-serif;font-size:36px;color:var(--steel);letter-spacing:0.04em;}
+  .hero-stats .lab{font-size:12px;color:var(--silver);text-transform:uppercase;letter-spacing:0.12em;}
+
+  /* Hero visual: duct cross-section */
+  .duct-visual{
+    position:relative;aspect-ratio:1/1;display:flex;align-items:center;justify-content:center;
+  }
+  .duct-ring{
+    position:absolute;border-radius:50%;
+  }
+  .duct-ring.r1{
+    width:100%;height:100%;border:2px solid var(--steel);
+    box-shadow: inset 0 0 60px rgba(46,143,230,0.15), 0 0 60px rgba(46,143,230,0.08);
+  }
+  .duct-ring.r2{
+    width:74%;height:74%;border:1px solid var(--silver);
+    opacity:0.35;
+  }
+  .duct-ring.r3{
+    width:48%;height:48%;border:1px dashed var(--steel);
+    opacity:0.5;
+    animation: spin 22s linear infinite;
+  }
+  @keyframes spin{ to { transform:rotate(360deg); } }
+  .duct-core{
+    position:relative;z-index:2;
+    font-family:'Bebas Neue',sans-serif;text-align:center;color:var(--off);
+  }
+  .duct-core .big{font-size:58px;color:var(--steel);letter-spacing:0.06em;}
+  .duct-core .small{font-size:14px;color:var(--silver);font-family:'Space Mono',monospace;letter-spacing:0.18em;text-transform:uppercase;margin-top:6px;}
+  .duct-blade{
+    position:absolute;width:100%;height:100%;
+  }
+  .duct-blade i{
+    position:absolute;width:1px;height:50%;
+    background:linear-gradient(to bottom, transparent, var(--steel), transparent);
+    top:0;left:50%;transform-origin:bottom center;opacity:0.45;
+  }
+
+  /* Section heading pattern */
+  .section{padding:90px 0;position:relative;border-bottom:1px solid var(--line);}
+  .section-head{
+    display:flex;justify-content:space-between;align-items:flex-end;gap:40px;margin-bottom:54px;flex-wrap:wrap;
+  }
+  .section-head h2{font-size:clamp(36px,5vw,56px);}
+  .section-head .tag{
+    font-family:'Space Mono',monospace;font-size:13px;color:var(--steel);
+    text-transform:uppercase;letter-spacing:0.18em;
+  }
+  .section-head p{color:var(--silver);max-width:380px;font-size:15px;}
+
+  /* Services */
+  .services-grid{
+    display:grid;grid-template-columns:repeat(2,1fr);gap:1px;
+    background:var(--line);border:1px solid var(--line);
+    border-radius:6px;overflow:hidden;
+  }
+  .service-card{
+    background:var(--navy-2);padding:36px;position:relative;
+    transition:background .25s;
+  }
+  .service-card:hover{background:#13243a;}
+  .service-num{
+    font-family:'Space Mono',monospace;color:var(--steel);font-size:13px;
+    letter-spacing:0.12em;margin-bottom:18px;display:block;
+  }
+  .service-card h3{font-size:30px;margin-bottom:10px;}
+  .service-card p{color:var(--silver);font-size:15px;}
+  .service-icon{
+    width:46px;height:46px;border-radius:50%;border:2px solid var(--steel);
+    display:flex;align-items:center;justify-content:center;margin-bottom:22px;
+    color:var(--steel);
+  }
+  .before-after-gallery{
+    display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1px;
+    background:var(--line);border:1px solid var(--line);border-radius:6px;overflow:hidden;
+  }
+  .gallery-photo{
+    border:0;border-radius:0;overflow:hidden;background:var(--navy-2);
+    padding:28px;cursor:zoom-in;position:relative;aspect-ratio:4/3;
+    display:flex;align-items:flex-end;text-align:left;isolation:isolate;
+  }
+  .gallery-photo.tall{grid-row:span 2;aspect-ratio:auto;}
+  .gallery-photo img{
+    position:absolute;inset:0;z-index:-1;width:100%;height:100%;display:block;object-fit:cover;
+    filter:saturate(0.9) contrast(1.05);transform:scale(1.02);
+    transition:transform .45s, filter .45s;
+  }
+  .gallery-photo::before{
+    content:'';position:absolute;inset:0;z-index:0;
+    background:
+      linear-gradient(to top, rgba(11,20,32,0.92) 0%, rgba(11,20,32,0.52) 48%, rgba(11,20,32,0.12) 100%),
+      linear-gradient(135deg, rgba(46,143,230,0.28), transparent 42%);
+  }
+  .gallery-photo:hover img{transform:scale(1.08);filter:saturate(1.05) contrast(1.08);}
+
+  /* Service areas */
+  .areas-grid{
+    display:grid;grid-template-columns:1.15fr 0.85fr;gap:24px;align-items:stretch;
+  }
+  .area-panel{
+    background:var(--navy-2);border:1px solid var(--line);border-radius:6px;
+    padding:34px;position:relative;overflow:hidden;
+  }
+  .area-panel::before{
+    content:'';position:absolute;width:180px;height:180px;border:1px dashed var(--steel);
+    border-radius:50%;opacity:0.12;right:-60px;top:-70px;
+  }
+  .area-panel h3{font-size:30px;margin-bottom:10px;}
+  .area-panel p{color:var(--silver);font-size:15px;max-width:520px;}
+  .area-tags{
+    display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:24px;
+  }
+  .area-tags span{
+    border:1px solid var(--line);border-radius:4px;padding:10px 12px;
+    color:var(--off);font-size:13px;font-weight:700;
+  }
+  .area-stack{display:grid;gap:24px;}
+  .area-note{
+    font-family:'Space Mono',monospace;font-size:13px;color:var(--steel);
+    text-transform:uppercase;letter-spacing:0.14em;margin-bottom:12px;
+  }
+
+  /* Why us */
+  .why-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;}
+  .why-list{display:flex;flex-direction:column;gap:26px;}
+  .why-item{display:flex;gap:18px;align-items:flex-start;}
+  .why-marker{
+    flex:none;width:34px;height:34px;border-radius:50%;border:1px solid var(--steel);
+    display:flex;align-items:center;justify-content:center;color:var(--steel);font-size:16px;margin-top:2px;
+  }
+  .why-item h3{font-size:20px;font-family:'Inter',sans-serif;font-weight:700;margin-bottom:4px;color:var(--off);}
+  .why-item p{color:var(--silver);font-size:14px;}
+
+  .why-panel{
+    background:var(--navy-2);border:1px solid var(--line);border-radius:8px;
+    padding:46px;position:relative;overflow:hidden;
+  }
+  .why-panel::before{
+    content:'';position:absolute;width:240px;height:240px;border:1px solid var(--steel);
+    border-radius:50%;opacity:0.15;top:-80px;right:-80px;
+  }
+  .why-panel::after{
+    content:'';position:absolute;width:160px;height:160px;border:1px dashed var(--silver);
+    border-radius:50%;opacity:0.1;bottom:-50px;left:-50px;
+  }
+  .price-tag{font-family:'Space Mono',monospace;color:var(--steel);font-size:13px;text-transform:uppercase;letter-spacing:0.18em;margin-bottom:14px;}
+  .price-amount{font-family:'Bebas Neue',sans-serif;font-size:96px;color:var(--off);line-height:1;}
+  .price-amount sup{font-size:36px;color:var(--steel);vertical-align:top;}
+  .price-desc{color:var(--silver);margin:18px 0 28px;max-width:340px;}
+  .price-includes{display:flex;flex-direction:column;gap:10px;font-size:14px;}
+  .price-includes li{list-style:none;display:flex;gap:10px;align-items:center;color:var(--off);}
+  .price-includes li::before{content:'โœ“';color:var(--steel);font-weight:800;}
+
+  /* Contact / quote form */
+  .contact-section{
+    padding:90px 0;position:relative;border-bottom:1px solid var(--line);
+  }
+  .contact-grid{
+    display:grid;grid-template-columns:0.85fr 1.15fr;gap:60px;align-items:start;
+  }
+  .contact-info h2{font-size:clamp(40px,6vw,64px);margin-bottom:18px;}
+  .contact-body{color:var(--silver);font-size:16px;max-width:460px;margin-bottom:34px;}
+  .contact-detail{display:flex;gap:18px;align-items:flex-start;margin-bottom:18px;}
+  .contact-label{
+    flex:0 0 86px;font-family:'Space Mono',monospace;font-size:12px;color:var(--steel);
+    text-transform:uppercase;letter-spacing:0.14em;padding-top:2px;
+  }
+  .contact-value{color:var(--off);font-size:15px;line-height:1.6;}
+  .phone-big{
+    font-family:'Bebas Neue',sans-serif;font-size:clamp(40px,7vw,64px);color:var(--steel);
+    letter-spacing:0.06em;display:block;margin-bottom:30px;
+  }
+  .quote-form{
+    background:var(--navy-2);border:1px solid var(--line);border-radius:8px;
+    padding:34px;display:flex;flex-direction:column;gap:18px;
+  }
+  .quote-form.is-submitted > :not(#quote-success){display:none;}
+  .form-row{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;}
+  .form-group{display:flex;flex-direction:column;gap:8px;}
+  .form-label{
+    font-family:'Space Mono',monospace;font-size:12px;color:var(--silver);
+    text-transform:uppercase;letter-spacing:0.14em;
+  }
+  .form-input,
+  .form-select{
+    width:100%;border:1px solid var(--line);border-radius:4px;background:#0d1827;
+    color:var(--off);font-family:'Inter',sans-serif;font-size:15px;padding:13px 14px;
+    outline:none;transition:border-color .2s, box-shadow .2s;
+  }
+  .form-input:focus,
+  .form-select:focus{border-color:var(--steel);box-shadow:0 0 0 3px rgba(46,143,230,0.16);}
+  .form-input::placeholder{color:rgba(199,205,212,0.55);}
+  textarea.form-input{min-height:120px;resize:vertical;}
+  .quote-form .btn-primary{
+    width:100%;justify-content:center;border:0;cursor:pointer;font-family:'Inter',sans-serif;
+  }
+  .quote-success{
+    display:none;text-align:center;padding:18px;color:var(--steel);
+    font-family:'Space Mono',monospace;font-size:13px;text-transform:uppercase;letter-spacing:0.12em;
+  }
+  .image-modal{
+    position:fixed;inset:0;z-index:1000;display:grid;place-items:center;
+    padding:clamp(18px,4vw,54px);background:rgba(11,20,32,0.62);
+    backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
+    opacity:0;visibility:hidden;pointer-events:none;transition:opacity .2s, visibility .2s;
+  }
+  .image-modal.is-open{opacity:1;visibility:visible;pointer-events:auto;}
+  .image-modal img{max-width:100%;max-height:92vh;object-fit:contain;border-radius:6px;}
+  .image-modal-close{
+    position:fixed;top:16px;right:16px;width:44px;height:44px;border:1px solid var(--line);
+    border-radius:6px;background:rgba(11,20,32,0.84);color:var(--off);
+    font:400 34px/1 'Inter',sans-serif;cursor:pointer;
+  }
+  .image-modal-close:hover{border-color:var(--steel);color:var(--steel);}
+  body.modal-open{overflow:hidden;}
+  .sticky-quote-cta{
+    position:fixed;left:14px;right:14px;bottom:14px;z-index:60;
+    display:none;align-items:center;justify-content:space-between;gap:14px;
+    background:var(--steel);color:var(--navy);border-radius:8px;
+    padding:14px 16px calc(14px + env(safe-area-inset-bottom));
+    box-shadow:0 14px 34px rgba(0,0,0,0.34), 0 0 0 1px rgba(237,241,245,0.1);
+    opacity:0;pointer-events:none;transform:translateY(calc(100% + 24px));
+    transition:opacity .2s, transform .2s;
+  }
+  .sticky-quote-cta.is-visible{opacity:1;pointer-events:auto;transform:translateY(0);}
+  .sticky-quote-main{
+    display:block;font-weight:900;text-transform:uppercase;letter-spacing:0.08em;font-size:14px;
+  }
+  .sticky-quote-sub{
+    display:block;font-size:12px;font-weight:700;color:rgba(11,20,32,0.72);margin-top:2px;
+  }
+  .sticky-quote-arrow{font-size:24px;font-weight:900;line-height:1;}
+
+  /* Footer */
+  footer{padding:48px 0 36px;}
+  .foot-row{
+    display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:20px;
+  }
+  .foot-row .brand img{width:190px;max-width:100%;}
+  footer p{color:var(--silver);font-size:13px;}
+  footer .mono{color:var(--silver);}
+
+  @media (max-width:880px){
+    .nav{padding:12px 18px;gap:10px;}
+    .brand img{width:168px;max-width:58vw;}
+    .menu-toggle{display:inline-flex;order:3;margin-left:0;}
+    .nav-cta{
+      display:inline-flex;order:2;margin-left:auto;padding:10px 13px;min-height:44px;
+      font-size:0;gap:0;white-space:nowrap;
+    }
+    .nav-cta::after{content:'786.769.3606';font-size:13px;letter-spacing:0.06em;}
+    .navlinks{
+      position:absolute;top:calc(100% + 1px);left:18px;right:18px;
+      display:grid;gap:4px;padding:14px;
+      background:rgba(11,20,32,0.97);border:1px solid var(--line);border-radius:8px;
+      box-shadow:0 20px 50px rgba(0,0,0,0.35);
+      opacity:0;visibility:hidden;pointer-events:none;transform:translateY(-10px);
+      transition:opacity .2s, transform .2s, visibility .2s;
+    }
+    .navlinks.is-open{opacity:1;visibility:visible;pointer-events:auto;transform:translateY(0);}
+    .navlinks a{width:100%;padding:13px 12px;border-radius:6px;}
+    .navlinks a::after{display:none;}
+    .navlinks a.active,
+    .navlinks a[aria-current="true"]{background:rgba(46,143,230,0.14);}
+    .sticky-quote-cta{display:flex;}
+    .hero .wrap{grid-template-columns:1fr;}
+    .duct-visual{max-width:340px;margin:0 auto;}
+    .services-grid{grid-template-columns:1fr;}
+    .before-after-gallery{grid-template-columns:repeat(2,minmax(0,1fr));}
+    .areas-grid{grid-template-columns:1fr;}
+    .why-grid{grid-template-columns:1fr;}
+    .contact-grid{grid-template-columns:1fr;gap:40px;}
+    .price-amount{font-size:72px;}
+  }
+  @media (max-width:520px){
+    .nav{padding:10px 14px;}
+    .brand img{width:142px;max-width:56vw;}
+    .navlinks{left:14px;right:14px;}
+    .area-tags{grid-template-columns:1fr;}
+    .before-after-gallery{grid-template-columns:1fr;}
+    .gallery-photo,
+    .gallery-photo.tall{aspect-ratio:4/3;}
+    .gallery-photo{padding:22px;}
+    .form-row{grid-template-columns:1fr;}
+    .quote-form{padding:24px;}
+    .contact-detail{display:block;}
+    .contact-label{display:block;margin-bottom:6px;}
+    .hero-stats{flex-wrap:wrap;gap:24px;}
+  }
+
+  :focus-visible{outline:2px solid var(--steel);outline-offset:3px;}
+  @media (prefers-reduced-motion: reduce){
+    .duct-ring.r3{animation:none;}
+  }
+</style>
+</head>
+<body>
+
+<header>
+  <div class="nav">
+    <a class="brand" href="#" aria-label="AM Air Care home">
+      <img src="amair-logo.png" alt="AM Air Care">
+    </a>
+    <button class="menu-toggle" type="button" aria-controls="primary-nav" aria-expanded="false">
+      <span class="sr-only">Open navigation menu</span>
+      <span class="menu-lines" aria-hidden="true">
+        <span></span>
+        <span></span>
+        <span></span>
+      </span>
+    </button>
+    <nav class="navlinks" id="primary-nav" aria-label="Primary navigation">
+      <a href="#services">Services</a>
+      <a href="#gallery">Gallery</a>
+      <a href="#areas">Areas</a>
+      <a href="#offer">About</a>
+      <a href="#contact">Contact</a>
+    </nav>
+    <a class="nav-cta" href="tel:7867693606">๐Ÿ“ž 786.769.3606</a>
+  </div>
+</header>
+
+<section class="hero">
+  <div class="ring-field">
+    <div class="ring" style="width:520px;height:520px;top:-180px;right:-160px;"></div>
+    <div class="ring" style="width:320px;height:320px;bottom:-120px;left:-100px;"></div>
+  </div>
+  <div class="wrap">
+    <div>
+      <div class="eyebrow">Air Duct โ€ข Dryer Vent โ€ข Chimney โ€ข HVAC</div>
+      <h1>Your home <em>deserves</em> to breathe clean.</h1>
+      <p class="lead">AM Air Care clears out the dust, lint, and buildup hiding in your ducts, vents, and chimney โ€” so your air runs cleaner and your system runs safer.</p>
+      <div class="hero-ctas">
+        <a class="btn-primary" href="tel:7867693606">Call or Text Now โ†’</a>
+        <a class="btn-ghost" href="#offer">View current deals</a>
+      </div>
+      <div class="hero-stats">
+        <div>
+          <div class="num">100%</div>
+          <div class="lab">Family Owned</div>
+        </div>
+        <div>
+          <div class="num">24h</div>
+          <div class="lab">Response Time</div>
+        </div>
+      </div>
+    </div>
+    <div class="duct-visual">
+      <div class="duct-ring r1"></div>
+      <div class="duct-ring r2"></div>
+      <div class="duct-ring r3"></div>
+      <div class="duct-blade" aria-hidden="true">
+        <i style="left:50%;transform:rotate(0deg);"></i>
+        <i style="left:50%;transform:rotate(60deg);"></i>
+        <i style="left:50%;transform:rotate(120deg);"></i>
+        <i style="left:50%;transform:rotate(180deg);"></i>
+        <i style="left:50%;transform:rotate(240deg);"></i>
+        <i style="left:50%;transform:rotate(300deg);"></i>
+      </div>
+      <div class="duct-core">
+        <div class="big">CLEAN AIR</div>
+        <div class="small">Starts Here</div>
+      </div>
+    </div>
+  </div>
+</section>
+
+<section class="section" id="services">
+  <div class="wrap">
+    <div class="section-head">
+      <div>
+        <div class="tag">What We Do</div>
+        <h2>Our Services</h2>
+      </div>
+      <p>From the ducts behind your walls to the chimney on your roof โ€” we keep every part of your home's airflow system working the way it should.</p>
+    </div>
+    <div class="services-grid">
+      <div class="service-card">
+        <span class="service-num">01 / Air Flow</span>
+        <div class="service-icon">โ—Ž</div>
+        <h3>Air Duct Cleaning</h3>
+        <p>We remove dust, dirt, and allergens built up inside your ductwork for noticeably cleaner air throughout your home.</p>
+      </div>
+      <div class="service-card">
+        <span class="service-num">02 / Fire Safety</span>
+        <div class="service-icon">โŒ‡</div>
+        <h3>Dryer Vent Cleaning</h3>
+        <p>Clogged vents waste energy and create fire hazards. We clear the lint and buildup so your dryer runs efficiently and safely.</p>
+      </div>
+      <div class="service-card">
+        <span class="service-num">03 / Ventilation</span>
+        <div class="service-icon">โŒ‚</div>
+        <h3>Chimney Repair</h3>
+        <p>We inspect and repair your chimney to keep it structurally sound, properly ventilated, and safe to use.</p>
+      </div>
+      <div class="service-card">
+        <span class="service-num">04 / Performance</span>
+        <div class="service-icon">โš™</div>
+        <h3>HVAC System Maintenance</h3>
+        <p>Routine maintenance that improves performance, lowers energy costs, and extends the life of your system.</p>
+      </div>
+    </div>
+  </div>
+</section>
+
+<section class="section" id="gallery">
+  <div class="wrap">
+    <div class="section-head">
+      <div>
+        <div class="tag">Before &amp; After</div>
+        <h2>Before &amp; After Gallery</h2>
+      </div>
+      <p>Real cleaning results from HVAC systems, air ducts, dryer vents, and home airflow systems.</p>
+    </div>
+    <div class="before-after-gallery" aria-label="AM Air Care before and after photos">
+      <button class="gallery-photo tall" type="button" aria-label="Open AM Air Care before and after photo 1">
+        <img src="am-1.png" alt="AM Air Care before and after photo 1" loading="lazy">
+      </button>
+      <button class="gallery-photo" type="button" aria-label="Open AM Air Care before and after photo 2">
+        <img src="am-2.png" alt="AM Air Care before and after photo 2" loading="lazy">
+      </button>
+      <button class="gallery-photo" type="button" aria-label="Open AM Air Care before and after photo 3">
+        <img src="am-3.png" alt="AM Air Care before and after photo 3" loading="lazy">
+      </button>
+      <button class="gallery-photo" type="button" aria-label="Open AM Air Care before and after photo 4">
+        <img src="am-4.png" alt="AM Air Care before and after photo 4" loading="lazy">
+      </button>
+      <button class="gallery-photo" type="button" aria-label="Open AM Air Care before and after photo 5">
+        <img src="am-5.png" alt="AM Air Care before and after photo 5" loading="lazy">
+      </button>
+    </div>
+  </div>
+</section>
+
+<section class="section" id="areas">
+  <div class="wrap">
+    <div class="section-head">
+      <div>
+        <div class="tag">Service Areas</div>
+        <h2>Miami-Dade & South Florida</h2>
+      </div>
+      <p>AM Air Care serves homes across Miami-Dade and nearby South Florida communities.</p>
+    </div>
+    <div class="areas-grid">
+      <div class="area-panel">
+        <div class="area-note">Primary Coverage</div>
+        <h3>Miami-Dade County</h3>
+        <p>Air duct cleaning, dryer vent cleaning, chimney repair, and HVAC maintenance for Miami-Dade homes and neighborhoods.</p>
+        <div class="area-tags" aria-label="Miami-Dade service area examples">
+          <span>Miami</span>
+          <span>Miami Beach</span>
+          <span>Coral Gables</span>
+          <span>Doral</span>
+          <span>Hialeah</span>
+          <span>Kendall</span>
+          <span>Aventura</span>
+          <span>Homestead</span>
+        </div>
+      </div>
+      <div class="area-stack">
+        <div class="area-panel">
+          <div class="area-note">Regional Service</div>
+          <h3>South Florida</h3>
+          <p>We also cover surrounding South Florida communities. Call or text with your ZIP code and we will confirm availability.</p>
+        </div>
+        <div class="area-panel">
+          <div class="area-note">Scheduling</div>
+          <h3>Local, Fast Response</h3>
+          <p>Tell us what service you need and where you are located, and we will help find the next available appointment.</p>
+        </div>
+      </div>
+    </div>
+  </div>
+</section>
+
+<section class="section" id="offer">
+  <div class="wrap why-grid">
+    <div>
+      <div class="section-head" style="margin-bottom:30px;">
+        <div>
+          <div class="tag">Why AM Air Care</div>
+          <h2>Built On Trust, Not Upsells</h2>
+        </div>
+      </div>
+      <div class="why-list">
+        <div class="why-item">
+          <div class="why-marker">โœ“</div>
+          <div>
+            <h3>Honest pricing</h3>
+            <p>You'll know the cost upfront โ€” no surprise fees after the work is done.</p>
+          </div>
+        </div>
+        <div class="why-item">
+          <div class="why-marker">โœ“</div>
+          <div>
+            <h3>Local & responsive</h3>
+            <p>Call or text and get a real answer, fast โ€” not a call center.</p>
+          </div>
+        </div>
+        <div class="why-item">
+          <div class="why-marker">โœ“</div>
+          <div>
+            <h3>Safety-first work</h3>
+            <p>Every job is done with your home's air quality and fire safety in mind.</p>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="why-panel">
+      <div class="price-tag">Limited Time Offer</div>
+      <div class="price-amount">$99<sup>*</sup></div>
+      <p class="price-desc">HVAC maintenance cleaning plus a full system inspection for cleaner airflow, better performance, and lower operating costs.</p>
+      <ul class="price-includes">
+        <li>Complete system inspection</li>
+        <li>Evaporator coil inspection included</li>
+        <li>Dryer vent inspection included</li>
+        <li>Airflow & performance check</li>
+        <li>Improve energy efficiency</li>
+        <li>Extend HVAC system life</li>
+      </ul>
+    </div>
+  </div>
+</section>
+
+<section class="contact-section" id="contact">
+  <div class="wrap contact-grid">
+    <div class="contact-info">
+      <div class="area-note">Free Quote</div>
+      <h2>Get On The Schedule</h2>
+      <p class="contact-body">Tell us what you need cleaned, inspected, or repaired. We serve Miami-Dade and South Florida and will respond with availability and next steps.</p>
+      <a class="phone-big" href="tel:7867693606">786.769.3606</a>
+      <div class="contact-detail">
+        <span class="contact-label">Services</span>
+        <span class="contact-value">HVAC maintenance cleaning, air duct cleaning, dryer vent cleaning, chimney repair, and system maintenance.</span>
+      </div>
+      <div class="contact-detail">
+        <span class="contact-label">Areas</span>
+        <span class="contact-value">Miami-Dade County and nearby South Florida communities.</span>
+      </div>
+      <div class="contact-detail">
+        <span class="contact-label">Offer</span>
+        <span class="contact-value">$99 HVAC maintenance cleaning plus full system inspection for a limited time.</span>
+      </div>
+    </div>
+    <form class="quote-form" onsubmit="handleQuoteSubmit(event)">
+      <div class="form-row">
+        <div class="form-group">
+          <label class="form-label" for="quote-first-name">First Name</label>
+          <input class="form-input" id="quote-first-name" name="first_name" type="text" placeholder="John" required>
+        </div>
+        <div class="form-group">
+          <label class="form-label" for="quote-last-name">Last Name</label>
+          <input class="form-input" id="quote-last-name" name="last_name" type="text" placeholder="Smith" required>
+        </div>
+      </div>
+      <div class="form-row">
+        <div class="form-group">
+          <label class="form-label" for="quote-phone">Phone Number</label>
+          <input class="form-input" id="quote-phone" name="phone" type="tel" placeholder="786.769.3606" required>
+        </div>
+        <div class="form-group">
+          <label class="form-label" for="quote-email">Email Address</label>
+          <input class="form-input" id="quote-email" name="email" type="email" placeholder="[email protected]">
+        </div>
+      </div>
+      <div class="form-row">
+        <div class="form-group">
+          <label class="form-label" for="quote-service">Service Needed</label>
+          <select class="form-select" id="quote-service" name="service" required>
+            <option value="">Select a service...</option>
+            <option>HVAC Maintenance Cleaning</option>
+            <option>Air Duct Cleaning</option>
+            <option>Dryer Vent Cleaning</option>
+            <option>Chimney Repair</option>
+            <option>HVAC System Maintenance</option>
+            <option>Multiple Services</option>
+            <option>Other / Not Sure</option>
+          </select>
+        </div>
+        <div class="form-group">
+          <label class="form-label" for="quote-zip">ZIP Code</label>
+          <input class="form-input" id="quote-zip" name="zip" type="text" inputmode="numeric" placeholder="33101" required>
+        </div>
+      </div>
+      <div class="form-group">
+        <label class="form-label" for="quote-message">Tell Us What Is Going On</label>
+        <textarea class="form-input" id="quote-message" name="message" placeholder="Describe the service needed, home type, and preferred appointment window..."></textarea>
+      </div>
+      <button type="submit" class="btn-primary">Request Free Quote โ†’</button>
+      <div class="quote-success" id="quote-success">Message sent โ€” we will be in touch shortly</div>
+    </form>
+  </div>
+</section>
+
+<footer>
+  <div class="wrap foot-row">
+    <a class="brand" href="#" aria-label="AM Air Care home">
+      <img src="amair-logo.png" alt="AM Air Care">
+    </a>
+    <p class="mono">AIR DUCT CLEANING & CARE</p>
+    <p>ยฉ 2026 AM Air Care. All rights reserved.</p>
+  </div>
+</footer>
+
+<div class="image-modal" id="image-modal" role="dialog" aria-modal="true" aria-hidden="true">
+  <button class="image-modal-close" type="button" aria-label="Close full screen image">&times;</button>
+  <img id="image-modal-img" src="" alt="">
+</div>
+
+<a class="sticky-quote-cta" href="#contact" aria-label="Get a free quote">
+  <span>
+    <span class="sticky-quote-main">Get Free Quote</span>
+    <span class="sticky-quote-sub">Miami-Dade &amp; South Florida</span>
+  </span>
+  <span class="sticky-quote-arrow" aria-hidden="true">โ†’</span>
+</a>
+
+<script>
+  const header = document.querySelector('header');
+  const menuToggle = document.querySelector('.menu-toggle');
+  const primaryNav = document.querySelector('#primary-nav');
+  const menuLinks = Array.from(document.querySelectorAll('#primary-nav a'));
+  const navLinks = Array.from(document.querySelectorAll('#primary-nav a[href^="#"]'));
+  const heroSection = document.querySelector('.hero');
+  const stickyQuote = document.querySelector('.sticky-quote-cta');
+  const sections = navLinks
+    .map((link) => document.querySelector(link.getAttribute('href')))
+    .filter(Boolean);
+  const imageModal = document.getElementById('image-modal');
+  const imageModalImg = document.getElementById('image-modal-img');
+  const imageModalClose = imageModal.querySelector('.image-modal-close');
+  let lastFocusedElement = null;
+
+  function handleQuoteSubmit(event){
+    event.preventDefault();
+    const form = event.target;
+    const successMessage = document.getElementById('quote-success');
+
+    form.reset();
+    form.classList.add('is-submitted');
+    form.querySelectorAll('input, select, textarea, button[type="submit"]').forEach((control) => {
+      control.disabled = true;
+    });
+    successMessage.style.display = 'block';
+    successMessage.setAttribute('tabindex', '-1');
+    successMessage.focus();
+  }
+
+  function closeMenu(){
+    if (!menuToggle || !primaryNav) return;
+    menuToggle.setAttribute('aria-expanded', 'false');
+    menuToggle.querySelector('.sr-only').textContent = 'Open navigation menu';
+    primaryNav.classList.remove('is-open');
+  }
+
+  function openImageModal(image){
+    lastFocusedElement = document.activeElement;
+    imageModalImg.src = image.currentSrc || image.src;
+    imageModalImg.alt = image.alt;
+    imageModal.classList.add('is-open');
+    imageModal.setAttribute('aria-hidden', 'false');
+    document.body.classList.add('modal-open');
+    imageModalClose.focus();
+  }
+
+  function closeImageModal(){
+    imageModal.classList.remove('is-open');
+    imageModal.setAttribute('aria-hidden', 'true');
+    document.body.classList.remove('modal-open');
+    imageModalImg.removeAttribute('src');
+    imageModalImg.alt = '';
+
+    if (lastFocusedElement){
+      lastFocusedElement.focus();
+    }
+  }
+
+  if (menuToggle && primaryNav){
+    menuToggle.addEventListener('click', () => {
+      const isOpen = menuToggle.getAttribute('aria-expanded') === 'true';
+      menuToggle.setAttribute('aria-expanded', String(!isOpen));
+      menuToggle.querySelector('.sr-only').textContent = isOpen ? 'Open navigation menu' : 'Close navigation menu';
+      primaryNav.classList.toggle('is-open', !isOpen);
+    });
+
+    menuLinks.forEach((link) => link.addEventListener('click', closeMenu));
+
+    document.addEventListener('click', (event) => {
+      if (!header.contains(event.target)) closeMenu();
+    });
+
+    document.addEventListener('keydown', (event) => {
+      if (event.key === 'Escape') closeMenu();
+    });
+  }
+
+  document.querySelectorAll('.gallery-photo').forEach((photo) => {
+    photo.addEventListener('click', () => {
+      openImageModal(photo.querySelector('img'));
+    });
+  });
+
+  imageModalClose.addEventListener('click', closeImageModal);
+
+  imageModal.addEventListener('click', (event) => {
+    if (event.target === imageModal){
+      closeImageModal();
+    }
+  });
+
+  document.addEventListener('keydown', (event) => {
+    if (event.key === 'Escape' && imageModal.classList.contains('is-open')){
+      closeImageModal();
+    }
+  });
+
+  function setStickyQuoteVisibility(){
+    if (!heroSection || !stickyQuote) return;
+    const isMobile = window.matchMedia('(max-width: 880px)').matches;
+    const headerHeight = header ? header.offsetHeight : 0;
+    const heroBottom = heroSection.offsetTop + heroSection.offsetHeight;
+    const hasPassedHero = window.scrollY > heroBottom - headerHeight;
+
+    stickyQuote.classList.toggle('is-visible', isMobile && hasPassedHero);
+  }
+
+  function setActiveLink(){
+    const offset = (header ? header.offsetHeight : 0) + 90;
+    let activeId = '';
+    const isAtPageBottom = window.innerHeight + window.scrollY >= document.documentElement.scrollHeight - 2;
+
+    sections.forEach((section) => {
+      if (window.scrollY >= section.offsetTop - offset){
+        activeId = section.id;
+      }
+    });
+
+    if (isAtPageBottom && sections.length){
+      activeId = sections[sections.length - 1].id;
+    }
+
+    navLinks.forEach((link) => {
+      const isActive = link.getAttribute('href') === '#' + activeId;
+      link.classList.toggle('active', isActive);
+      if (isActive){
+        link.setAttribute('aria-current', 'true');
+      } else {
+        link.removeAttribute('aria-current');
+      }
+    });
+  }
+
+  let ticking = false;
+  window.addEventListener('scroll', () => {
+    if (ticking) return;
+    window.requestAnimationFrame(() => {
+      setActiveLink();
+      setStickyQuoteVisibility();
+      ticking = false;
+    });
+    ticking = true;
+  }, {passive:true});
+
+  window.addEventListener('resize', () => {
+    if (window.innerWidth > 880) closeMenu();
+    setActiveLink();
+    setStickyQuoteVisibility();
+  });
+
+  setActiveLink();
+  setStickyQuoteVisibility();
+</script>
+</body>
+</html>