Orchards Vancouver WA Contractors | Gutters, Painting & Siding | 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; loading: lazy; } .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; width: auto; } .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); } .btn-outline { background: transparent; color: var(--white); border-color: var(--white); } .btn-outline:hover { background: var(--white); color: var(--primary); } /* 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/parky-1l6xmdp2ev.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; } /* About Orchards Section */ .about-orchards { padding: 80px 0; } .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .about-content h2 { margin-bottom: 1.5rem; } .about-content p { margin-bottom: 1.5rem; color: var(--gray-600); } .infrastructure-commitment { background: var(--gray-50); padding: 1.5rem; border-radius: var(--radius-lg); border-left: 4px solid var(--accent); margin: 2rem 0; } .infrastructure-commitment h3 { font-size: 1.25rem; margin-bottom: 1rem; } .orchards-features { display: grid; gap: 1rem; margin-top: 2rem; } .orchards-feature { display: flex; align-items: start; gap: 1rem; } .feature-icon { width: 40px; height: 40px; background: var(--accent); color: var(--white); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 700; } .orchards-images { display: grid; gap: 1rem; } .orchards-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); } .orchards-image img { width: 100%; height: 300px; object-fit: cover; transition: transform var(--transition); } .orchards-image:hover img { transform: scale(1.05); } /* Building Orchards Section */ .building-orchards { padding: 80px 0; background: var(--gray-50); } .building-content { max-width: 900px; margin: 0 auto; text-align: center; } .building-content h2 { margin-bottom: 2rem; } .community-quote { background: var(--white); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); margin: 2rem 0; font-style: italic; font-size: 1.125rem; line-height: 1.8; position: relative; } .community-quote::before { content: '"'; position: absolute; top: 1rem; left: 1.5rem; font-size: 4rem; color: var(--accent); opacity: 0.2; font-family: Georgia, serif; } .improvement-areas { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; } .improvement-card { background: var(--white); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); transition: all var(--transition); } .improvement-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); } .improvement-card h3 { margin-bottom: 1rem; font-size: 1.5rem; } .improvement-list { list-style: none; text-align: left; } .improvement-list li { position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem; color: var(--gray-700); } .improvement-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-weight: bold; } /* Services Section */ .services-orchards { padding: 80px 0; } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; } .service-card { background: var(--gray-50); padding: 2rem; border-radius: var(--radius-lg); transition: all var(--transition); position: relative; overflow: hidden; } .service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--accent); transform: scaleX(0); transition: transform var(--transition); transform-origin: left; } .service-card:hover::before { transform: scaleX(1); } .service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); } .service-card h3 { margin-bottom: 1rem; } .service-features { list-style: none; margin: 1rem 0; } .service-features li { position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem; color: var(--gray-700); } .service-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: bold; } /* Map Section */ .map-section { padding: 80px 0; background: var(--gray-50); } .map-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; } .map-info h2 { margin-bottom: 1.5rem; } .service-boundaries { background: var(--white); padding: 1.5rem; border-radius: var(--radius-lg); margin: 2rem 0; } .service-boundaries h3 { font-size: 1.25rem; margin-bottom: 1rem; } .boundary-list { list-style: none; } .boundary-list li { padding: 0.5rem 0; border-bottom: 1px solid var(--gray-200); } .boundary-list li:last-child { border-bottom: none; } .map-wrapper { background: var(--white); padding: 1rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); height: 450px; } .map-placeholder { width: 100%; height: 100%; background: var(--gray-100); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--gray-500); } /* Testimonials Section */ .testimonials-orchards { padding: 80px 0; } .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; margin-top: 3rem; } .testimonial { background: var(--gray-50); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); position: relative; } .testimonial::before { content: '"'; position: absolute; top: 1rem; left: 1.5rem; font-size: 4rem; color: var(--accent); opacity: 0.2; font-family: Georgia, serif; } .testimonial-stars { color: #FFD700; font-size: 1.25rem; margin-bottom: 1rem; } .testimonial-text { color: var(--gray-700); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; } .testimonial-author { display: flex; align-items: center; gap: 1rem; } .author-avatar { width: 48px; height: 48px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; } .author-info h5 { font-size: 1rem; margin-bottom: 0.25rem; } .author-info p { font-size: 0.875rem; color: var(--gray-500); margin: 0; } /* CTA Section */ .cta-orchards { padding: 80px 0; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); color: var(--white); text-align: center; } .cta-orchards h2 { color: var(--white); margin-bottom: 1rem; } .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; } /* Quote Form Section */ .quote-section { padding: 80px 0; background: var(--gray-50); } .quote-wrapper { max-width: 600px; margin: 0 auto; } .form-wrapper { background: var(--white); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); } .form-header { text-align: center; margin-bottom: 1.5rem; } .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(--gray-50); } .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); background: var(--white); } .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); } .form-trust { display: flex; justify-content: center; gap: 2rem; margin-top: 1.5rem; font-size: 0.875rem; color: var(--gray-600); } /* Footer */ .footer { background: var(--gray-900); color: var(--white); padding: 60px 0 30px; text-align: center; } .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; } /* Section Headers */ .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); } /* Mobile Styles */ @media (max-width: 768px) { .about-grid, .map-content { grid-template-columns: 1fr; gap: 3rem; } .orchards-images { order: -1; } .hero-buttons { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; } .hero-buttons .btn { width: 100%; } .improvement-areas { grid-template-columns: 1fr; } .testimonials-grid { grid-template-columns: 1fr; } .header-cta .btn:last-child { display: none; } }
E&K Contracting
(360) 910-9205 Free Quote

Orchards' Trusted Exterior Contractors

E&K Contracting: Building up Orchards' infrastructure and home values since 2002. Professional gutters, painting, siding & roofing services.

Get Free Estimate Call (360) 910-9205
  1. Home
  2. Service Areas
  3. Vancouver
  4. Orchards

Serving Orchards Neighborhood Since 2002

Orchards, a diverse East Vancouver neighborhood stretching from NE 76th Avenue to NE 119th Avenue, represents one of Vancouver's most established residential communities. Originally farmland, Orchards has evolved into a family-friendly area known for its affordable housing and strong community spirit.

We understand that residents have mixed feelings about Orchards' infrastructure, with some expressing concerns about the area's development pace. At E&K Contracting, we see these challenges as opportunities. Our family-owned business has been dedicated to improving Orchards homes for over 20 years, contributing to the neighborhood's ongoing transformation through quality exterior improvements.

Our Commitment to Building Up Orchards

We're not just contractors – we're partners in Orchards' growth. Every gutter system we install, every home we paint, and every siding project we complete contributes to Orchards' infrastructure improvement and rising property values. We believe in this neighborhood's potential and are committed to helping it reach new heights.

✓

Established Community

Deep roots with multi-generational families and a strong sense of neighborhood identity

✓

Affordable Living

One of Vancouver's most accessible neighborhoods for homeownership

✓

Growing Potential

Infrastructure improvements and home upgrades are driving neighborhood transformation

Orchards Park Vancouver WA
Orchards Community Park

Building Up Orchards, One Home at a Time

While some residents express concerns about Orchards' infrastructure, we see a neighborhood with tremendous potential. E&K Contracting is committed to being part of the solution, helping transform Orchards through quality exterior improvements that protect homes and enhance curb appeal.

Community discussions reveal that while Orchards faces infrastructure challenges common to growing neighborhoods, many residents appreciate its affordability, diversity, and potential for growth. We're here to help realize that potential through professional contracting services.

Curb Appeal Enhancement

  • Professional exterior painting
  • Modern siding installation
  • Fresh trim and accent work
  • Color consulting services

Infrastructure Protection

  • Quality gutter systems
  • Proper water drainage
  • Foundation protection
  • Weather-resistant materials

Property Value Growth

  • Strategic home improvements
  • Long-lasting materials
  • Professional workmanship
  • Warranty-backed services

Professional Exterior Services in Orchards

Comprehensive solutions to improve your home and strengthen our neighborhood

Gutter Services

Protect your Orchards home from water damage with professional gutter solutions.

  • Seamless aluminum gutters
  • Gutter repair & replacement
  • Professional cleaning
  • Leaf guard installation
Learn More

Exterior Painting

Transform your home's appearance and protect it from Pacific Northwest weather.

  • Complete exterior painting
  • Deck & fence staining
  • Pressure washing prep
  • Premium paint products
Learn More

Siding & More

Complete exterior solutions including siding, drywall, and roofing repairs.

  • Vinyl & fiber cement siding
  • Drywall repair services
  • Roofing maintenance
  • Trim & fascia work
View Services

Serving All of Orchards

E&K Contracting provides comprehensive exterior services throughout the Orchards neighborhood. Our local knowledge and quick response times ensure your project gets the attention it deserves.

Orchards Service Area Includes:

  • North Orchards (near NE 119th Ave)
  • Central Orchards (Fourth Plain corridor)
  • South Orchards (near NE 76th Ave)
  • Orchards Elementary area
  • Covington Middle School vicinity
  • All surrounding Orchards neighborhoods

Quick Response Times: Most estimates within 24 hours

Service Radius: All of Orchards and East Vancouver

Interactive Map of Orchards Service Area

What Orchards Residents Say

Real reviews from your Orchards neighbors

★★★★★

"E&K replaced our gutters and painted our home. They understand Orchards isn't the fanciest neighborhood, but they treated our home like it was a mansion. Great prices and even better service!"

DM
David Martinez

Orchards, Vancouver WA

★★★★★

"As someone who cares about improving our neighborhood, I appreciate E&K's commitment to quality. They did our siding and the transformation was amazing. Helping make Orchards better, one house at a time!"

KW
Karen Wilson

Central Orchards

★★★★★

"Fair pricing for our Orchards budget, but premium quality work. E&K understands this neighborhood and works with us to make improvements affordable. Highly recommend!"

JT
James Thompson

North Orchards

Ready to Improve Your Orchards Home?

Join your neighbors in building up our community through quality home improvements

Get Free Estimate Call (360) 910-9205

Get Your Free Orchards Estimate

Let's work together to improve your home and our neighborhood

✓ No Obligation ✓ Same-Day Response ✓ Fair Pricing
E&K Contracting
3515 Thompson Ave, Vancouver, WA 98660 (360) 910-9205 ekllc@live.com
Home About Vancouver All Areas Contact

© 2025 E&K Contracting LLC - Orchards' Trusted Exterior Contractors | Building Up Our Neighborhood Since 2002 | Privacy | Terms