Horseshoe Lake Woodland WA Painters & Lakeside Contractors | E&K Contracting /* CSS Reset & Variables */ :root { --primary: #1B4B73; --primary-dark: #0F3559; --primary-light: #2B5F8A; --accent: #4A9B5E; --accent-dark: #3F8650; --white: #FFFFFF; --black: #1A1A1A; --gray-50: #FAFAFA; --gray-100: #F5F5F5; --gray-200: #E5E5E5; --gray-300: #D4D4D4; --gray-400: #A3A3A3; --gray-500: #737373; --gray-600: #525252; --gray-700: #404040; --gray-800: #262626; --gray-900: #171717; --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif; --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05); --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1); --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1); --radius: 8px; --radius-lg: 12px; --transition: 0.3s ease; } * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; font-size: 16px; } body { font-family: var(--font-body); color: var(--gray-700); line-height: 1.6; background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; } h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--primary); line-height: 1.2; font-weight: 700; } h1 { font-size: clamp(2rem, 5vw, 3.5rem); } h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); } h3 { font-size: clamp(1.5rem, 3vw, 2rem); } a { color: var(--primary); text-decoration: none; } a:hover { text-decoration: underline; } img { max-width: 100%; height: auto; } .container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; } /* Header */ .header { background: var(--white); box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; } .header-inner { display: flex; justify-content: space-between; align-items: center; height: 80px; } .logo img { height: 50px; } .header-cta { display: flex; gap: 1rem; align-items: center; } /* Buttons */ .btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.5rem; border-radius: var(--radius); font-weight: 600; transition: all var(--transition); border: 2px solid transparent; cursor: pointer; text-decoration: none; } .btn:hover { text-decoration: none; transform: translateY(-2px); } .btn-primary { background: var(--accent); color: var(--white); } .btn-primary:hover { background: var(--accent-dark); box-shadow: var(--shadow-lg); } .btn-secondary { background: var(--primary); color: var(--white); } .btn-secondary:hover { background: var(--primary-dark); box-shadow: var(--shadow-lg); } /* Hero Section */ .hero { background: linear-gradient(rgba(27, 75, 115, 0.85), rgba(27, 75, 115, 0.85)), url('https://assets.ycodeapp.com/assets/app112695/Images/park-ds9d1vxuzp.webp'); background-size: cover; background-position: center; padding: 100px 0; color: var(--white); } .hero-content { max-width: 800px; text-align: center; margin: 0 auto; } .hero h1 { color: var(--white); margin-bottom: 1.5rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); } .hero-subtitle { font-size: 1.25rem; margin-bottom: 2rem; opacity: 0.95; } .hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; } /* Breadcrumb */ .breadcrumb { background: var(--gray-50); padding: 1rem 0; border-bottom: 1px solid var(--gray-200); } .breadcrumb-list { display: flex; align-items: center; gap: 0.5rem; list-style: none; font-size: 0.875rem; } .breadcrumb-list li::after { content: '›'; margin-left: 0.5rem; color: var(--gray-400); } .breadcrumb-list li:last-child::after { display: none; } .breadcrumb-list a { color: var(--gray-600); } .breadcrumb-list li:last-child { color: var(--primary); font-weight: 600; } /* Lakeside Living Section */ .lakeside-living { padding: 80px 0; } .lakeside-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .lakeside-content h2 { margin-bottom: 1.5rem; } .lakeside-content p { margin-bottom: 1.5rem; color: var(--gray-600); } .lake-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; } .feature-item { background: var(--gray-50); padding: 1.5rem; border-radius: var(--radius-lg); text-align: center; } .feature-item strong { display: block; font-size: 1.5rem; color: var(--primary); margin-bottom: 0.5rem; } .lakeside-images { display: grid; gap: 1rem; } .lakeside-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); } .lakeside-image img { width: 100%; height: 300px; object-fit: cover; transition: transform var(--transition); } .lakeside-image:hover img { transform: scale(1.05); } .image-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: var(--white); padding: 1rem; font-size: 0.875rem; font-weight: 600; } /* Community Events Section */ .community-events { padding: 80px 0; background: var(--gray-50); } .events-content { max-width: 900px; margin: 0 auto; text-align: center; } .events-content h2 { margin-bottom: 2rem; } .events-text { font-size: 1.125rem; line-height: 1.8; color: var(--gray-700); margin-bottom: 2rem; } .events-text p { margin-bottom: 1.5rem; } .park-highlight { background: var(--white); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); margin: 2rem 0; border-left: 4px solid var(--accent); } .events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; } .event-card { background: var(--white); padding: 1.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); text-align: center; } .event-icon { width: 60px; height: 60px; background: var(--accent); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 1rem; } .event-card h4 { margin-bottom: 0.5rem; } /* Real Estate Section */ .real-estate { padding: 80px 0; } .estate-content { max-width: 900px; margin: 0 auto; } .estate-overview { text-align: center; margin-bottom: 3rem; } .estate-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; } .estate-stat { background: var(--gray-50); padding: 2rem; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow); } .estate-price { font-size: 2.5rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; } .estate-label { color: var(--gray-600); font-size: 0.875rem; } .estate-example { background: var(--white); border: 2px solid var(--gray-200); padding: 1.5rem; border-radius: var(--radius-lg); margin-top: 2rem; } /* Services Section */ .services-horseshoe { padding: 80px 0; background: var(--gray-50); } .section-header { text-align: center; max-width: 800px; margin: 0 auto 3rem; } .section-header h2 { margin-bottom: 1rem; } .section-header p { font-size: 1.125rem; color: var(--gray-600); } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; } .service-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); box-shadow: var(--shadow); } .service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); } .service-content { padding: 2rem; } .service-content h3 { margin-bottom: 1rem; } .service-content p { color: var(--gray-600); margin-bottom: 1rem; } .service-list { list-style: none; margin-bottom: 1.5rem; } .service-list li { position: relative; padding-left: 1.75rem; margin-bottom: 0.5rem; color: var(--gray-700); } .service-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: bold; font-size: 1.125rem; } /* Park Activities Section */ .park-activities { padding: 80px 0; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); } .park-activities h2, .park-activities h3 { color: var(--white); } .activities-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; margin-top: 3rem; } .activity-item { text-align: center; } .activity-icon { width: 80px; height: 80px; background: rgba(255, 255, 255, 0.1); border: 2px solid rgba(255, 255, 255, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 1.5rem; } .activity-item h3 { margin-bottom: 1rem; } .activity-item p { opacity: 0.9; } /* Map Section */ .map-section { padding: 80px 0; background: var(--gray-50); } .map-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .map-info h2 { margin-bottom: 1.5rem; } .service-areas-list { margin: 2rem 0; } .service-areas-list h4 { margin-bottom: 1rem; } .area-links { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; } .area-links a { background: var(--white); padding: 0.5rem 1rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: all var(--transition); } .area-links a:hover { background: var(--primary); color: var(--white); text-decoration: none; } .map-container { background: var(--white); padding: 1rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); } .map-container iframe { width: 100%; height: 400px; border: none; border-radius: var(--radius); } /* Testimonial Section */ .testimonial-section { padding: 80px 0; } .testimonial-container { max-width: 900px; margin: 0 auto; margin-top: 3rem; } .testimonial { background: var(--gray-50); padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); text-align: center; } .testimonial-stars { color: #FFD700; font-size: 1.5rem; margin-bottom: 1.5rem; } .testimonial-text { font-size: 1.125rem; line-height: 1.8; color: var(--gray-700); margin-bottom: 2rem; font-style: italic; } .testimonial-author { display: flex; align-items: center; justify-content: center; gap: 1rem; } .author-avatar { width: 60px; height: 60px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.25rem; } .author-info h5 { font-size: 1.125rem; margin-bottom: 0.25rem; } .author-info p { color: var(--gray-500); margin: 0; } /* CTA Section */ .cta-section { padding: 80px 0; background: var(--accent); color: var(--white); text-align: center; } .cta-section h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; } .cta-section p { font-size: 1.25rem; margin-bottom: 2rem; } .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; } .btn-outline { background: transparent; color: var(--white); border-color: var(--white); } .btn-outline:hover { background: var(--white); color: var(--accent); } /* Quote Form Section */ .quote-section { padding: 80px 0; background: var(--gray-50); } .form-wrapper { background: var(--white); padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); max-width: 600px; margin: 0 auto; } .form-header { text-align: center; margin-bottom: 2rem; } .form-header h2 { font-size: 2rem; margin-bottom: 0.5rem; } .form-group { margin-bottom: 1.25rem; } .form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--gray-700); } .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem; border: 2px solid var(--gray-200); border-radius: var(--radius); font-size: 1rem; font-family: var(--font-body); transition: border-color var(--transition); background: var(--white); } .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); } .form-submit { width: 100%; background: var(--accent); color: var(--white); font-size: 1.125rem; font-weight: 700; padding: 1rem; border: none; border-radius: var(--radius); cursor: pointer; transition: all var(--transition); } .form-submit:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); } /* Footer */ .footer { background: var(--gray-900); color: var(--white); padding: 60px 0 30px; text-align: center; } .footer-content { margin-bottom: 2rem; } .footer-logo { height: 40px; margin-bottom: 1.5rem; } .footer-info { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; } .footer-info a { color: var(--white); } .footer-nav { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; } .footer-nav a { color: rgba(255, 255, 255, 0.8); } .footer-nav a:hover { color: var(--accent); } .footer-bottom { border-top: 1px solid var(--gray-800); padding-top: 2rem; color: rgba(255, 255, 255, 0.6); font-size: 0.875rem; } /* Mobile Styles */ @media (max-width: 768px) { .lakeside-grid, .map-content { grid-template-columns: 1fr; gap: 3rem; } .lakeside-images { order: -1; } .lake-features { grid-template-columns: 1fr; } .hero-buttons { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; } .hero-buttons .btn { width: 100%; } .map-container iframe { height: 300px; } }
E&K Contracting
(360) 910-9205 Free Quote

Horseshoe Lake's Premier Lakeside Contractors

Professional painting, gutters & exterior services for Horseshoe Lake homes. Protecting your lakeside investment near Woodland's favorite recreational destination since 2002.

Get Free Estimate Call (360) 910-9205
  • Home
  • Woodland, WA
  • Horseshoe Lake

Serving Horseshoe Lake's Vibrant Community

Horseshoe Lake combines the best of lakeside living with a strong community atmosphere in Woodland. This cherished neighborhood offers residents year-round recreation, family-friendly events, and the peaceful charm of waterfront living.

E&K Contracting specializes in protecting lakeside properties from the unique challenges they face. Whether your home overlooks the swimming area or backs up to the hiking trails, our exterior painting and gutter services are designed to handle moisture, weather, and the demands of waterfront living.

With homes near Horseshoe Lake Park ranging from $574,900 to over $609,900, protecting your investment with quality exterior maintenance is crucial. Our experience with lakeside properties ensures your home stays beautiful and protected year-round.

$574,900 Median Home Price
Lake Park Year-Round Recreation
Community Family Events
Premium Lakeside Living
Horseshoe Lake Park
Horseshoe Lake Park
Community Recreation
Active Community Life

Where Community Comes Together

Horseshoe Lake isn't just about beautiful homes – it's about the vibrant community that makes this neighborhood special. Throughout the year, residents and visitors gather for events that celebrate the best of lakeside living and small-town charm.

Heart of the Community: Horseshoe Lake Park serves as the neighborhood's gathering place, offering swimming, fishing, hiking trails, picnic areas, playgrounds, and horseshoe pits. The park features a large shelter with a fireplace and stunning lake views available for rent, plus a public boat launch and ample fishable shoreline that visitors rave about for swimming, floating, and paddleboarding.

From the excitement of Planters Days with its fireworks, parades, and carnival rides to the relaxed evenings of Hot Summer Nights & Movies in the Park, there's always something happening at Horseshoe Lake. First Friday Night of Fun events bring neighbors together monthly, often featuring dinners by the Veterans of Foreign Wars.

🎆

Planters Days

Annual celebration with fireworks, parades & carnival

🎬

Movies in the Park

Hot Summer Nights starting at 5:30 PM

🎉

First Friday Fun

Monthly gatherings with VFW dinners

🎵

Live Music

Local bands at community events

Protecting Horseshoe Lake's Valuable Properties

With rising home values and strong demand for lakeside living, maintaining your property's exterior is more important than ever

$574,900
Median Listing Price
$609,900
Premium Properties
Growing
Property Values

Example Property

176 Raspberry Lane - 5 bedroom, 2 bath home listed at $609,900

Properties like this require regular maintenance to preserve their value and lakeside appeal

Specialized Services for Lakeside Homes

Expert solutions designed for Horseshoe Lake's unique waterfront environment

Lakeside Home Painting

Protect your waterfront investment with moisture-resistant painting solutions.

  • Waterproof exterior coatings
  • Mildew-resistant applications
  • Dock & deck staining
  • Complete color transformations
Learn More

Waterfront Gutter Systems

Essential protection for homes near Horseshoe Lake's recreational areas.

  • Heavy-duty lakeside gutters
  • Overflow protection systems
  • Leaf guards for tree coverage
  • Seasonal maintenance plans
Learn More

Lake Home Exteriors

Complete exterior services that stand up to waterfront conditions.

  • Moisture-resistant siding
  • Weather damage repair
  • Trim & fascia work
  • Storm protection
Learn More

Living the Horseshoe Lake Lifestyle

Year-round recreation right at your doorstep

🏊

Swimming & Water Sports

Popular swimming area with floating and paddleboarding opportunities that residents love.

🎣

Fishing & Boating

Public boat launch and extensive fishable shoreline for anglers and boating enthusiasts.

🥾

Trails & Nature

Scenic hiking trails around the lake perfect for morning walks and wildlife viewing.

Serving Horseshoe Lake & Beyond

Located in the heart of Woodland, Horseshoe Lake offers the perfect blend of recreational lakeside living and community connection. We're proud to serve this unique neighborhood and understand the special maintenance needs of waterfront properties.

Nearby Neighborhoods:

Downtown Woodland Woodland Bottoms Hayes Lewis River Road

Also Serving:

Vancouver Battleground Ridgefield La Center

What Horseshoe Lake Residents Say

Trusted by your lakeside neighbors

★★★★★

"Living right by the lake and park means our house takes a beating from moisture and weather. E&K installed special gutters that handle all the runoff, and their paint job has held up beautifully against the humidity. They really understand lakefront properties!"

BT
Brian Thompson

Horseshoe Lake Homeowner

Ready to Protect Your Lakeside Investment?

Join Horseshoe Lake neighbors who trust E&K for quality waterfront property care

Get Free Estimate Call (360) 910-9205

Get Your Free Horseshoe Lake Estimate

Specialized service for lakeside and waterfront properties

E&K Contracting
Serving Horseshoe Lake, Woodland WA (360) 910-9205 ekllc@live.com
Home Painting Gutters Woodland Contact

© 2025 E&K Contracting LLC - Horseshoe Lake's Lakeside Property Specialists | Family-Owned Since 2002 | Privacy | Terms