<!-- wp:code -->
<pre class="wp-block-code"><code>&lt;!DOCTYPE html&gt;
&lt;html lang="en"&gt;
&lt;head&gt;
&lt;meta charset="UTF-8"&gt;
&lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&gt;
&lt;title&gt;Hecks Engraving &amp; Design&lt;/title&gt;

&lt;style&gt;
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    line-height:1.6;
    color:#333;
}

.hero{
    background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url('https://images.unsplash.com/photo-1565043589221-1a6fd9ae45c7?auto=format&amp;fit=crop&amp;w=1600&amp;q=80');
    background-size:cover;
    background-position:center;
    color:white;
    text-align:center;
    padding:120px 20px;
}

.hero h1{
    font-size:3rem;
    margin-bottom:15px;
}

.hero p{
    font-size:1.2rem;
    margin-bottom:25px;
}

.btn{
    display:inline-block;
    background:#0066cc;
    color:white;
    text-decoration:none;
    padding:12px 25px;
    border-radius:5px;
    font-weight:bold;
}

section{
    padding:70px 10%;
}

h2{
    text-align:center;
    margin-bottom:30px;
    color:#0066cc;
}

.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:#f8f8f8;
    padding:25px;
    border-radius:10px;
    box-shadow:0 3px 10px rgba(0,0,0,.1);
}

.card h3{
    margin-bottom:15px;
}

.about{
    background:#f4f4f4;
}

.contact{
    text-align:center;
}

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:20px;
}

@media(max-width:768px){
.hero h1{
font-size:2.2rem;
}
}
&lt;/style&gt;
&lt;/head&gt;

&lt;body&gt;

&lt;section class="hero"&gt;
    &lt;h1&gt;Hecks Engraving &amp; Design&lt;/h1&gt;
    &lt;p&gt;Custom 3D Printing &amp; Laser Engraving Solutions in Zilwaukee, Michigan&lt;/p&gt;
    &lt;a href="#contact" class="btn"&gt;Get a Quote&lt;/a&gt;
&lt;/section&gt;

&lt;section&gt;
    &lt;h2&gt;Our Services&lt;/h2&gt;

    &lt;div class="services"&gt;

        &lt;div class="card"&gt;
            &lt;h3&gt;3D Printing&lt;/h3&gt;
            &lt;p&gt;
                High-quality custom 3D printed parts, prototypes, hobby items,
                replacement components, business displays, and personalized gifts.
            &lt;/p&gt;
        &lt;/div&gt;

        &lt;div class="card"&gt;
            &lt;h3&gt;Laser Engraving&lt;/h3&gt;
            &lt;p&gt;
                Precision engraving on wood, acrylic, leather, glass,
                tumblers, plaques, awards, and custom promotional products.
            &lt;/p&gt;
        &lt;/div&gt;

        &lt;div class="card"&gt;
            &lt;h3&gt;Custom Design&lt;/h3&gt;
            &lt;p&gt;
                Need help bringing an idea to life? We can assist with
                custom designs, personalization, and product development.
            &lt;/p&gt;
        &lt;/div&gt;

    &lt;/div&gt;
&lt;/section&gt;

&lt;section class="about"&gt;
    &lt;h2&gt;About Us&lt;/h2&gt;

    &lt;p style="max-width:900px;margin:auto;text-align:center;"&gt;
        Hecks Engraving &amp; Design is a locally owned business serving
        Zilwaukee, Saginaw County, and the Great Lakes Bay Region.
        We specialize in custom laser engraving and professional 3D printing,
        helping individuals, organizations, and businesses create unique,
        personalized products with exceptional attention to detail.
    &lt;/p&gt;
&lt;/section&gt;

&lt;section id="contact" class="contact"&gt;
    &lt;h2&gt;Contact Us&lt;/h2&gt;

    &lt;p&gt;&lt;strong&gt;Hecks Engraving &amp; Design&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;Zilwaukee, Michigan&lt;/p&gt;
    &lt;p&gt;Email: your@email.com&lt;/p&gt;
    &lt;p&gt;Phone: (555) 555-5555&lt;/p&gt;

    &lt;br&gt;

    &lt;a href="mailto:your@email.com" class="btn"&gt;
        Request a Quote
    &lt;/a&gt;
&lt;/section&gt;

&lt;footer&gt;
    &lt;p&gt;&amp;copy; 2026 Hecks Engraving &amp; Design. All Rights Reserved.&lt;/p&gt;
&lt;/footer&gt;

&lt;/body&gt;
&lt;/html&gt;
</code></pre>
<!-- /wp:code -->