Vancouver WA Exterior Contractors | E&K Contracting | Family-Owned Since 2002 /* 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 (simplified for location page) */ .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/waterfront%20(2)-vk05adhtz0.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; } /* Community Story Section */ .community-story { padding: 80px 0; background: var(--gray-50); } .story-content { max-width: 900px; margin: 0 auto; text-align: center; } .story-content h2 { margin-bottom: 2rem; } .story-text { font-size: 1.125rem; line-height: 1.8; color: var(--gray-700); margin-bottom: 2rem; } .story-text p { margin-bottom: 1.5rem; } .story-highlight { background: var(--white); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); margin: 2rem 0; border-left: 4px solid var(--accent); } .community-badges { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-top: 3rem; } .community-badge { background: var(--white); padding: 1.5rem 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); text-align: center; flex: 1; min-width: 200px; max-width: 300px; } .community-badge strong { display: block; font-size: 1.25rem; color: var(--primary); margin-bottom: 0.5rem; } /* About Vancouver Section */ .about-vancouver { 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); } .vancouver-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; } .stat-item { background: var(--gray-50); padding: 1.5rem; border-radius: var(--radius-lg); text-align: center; } .stat-item strong { display: block; font-size: 2rem; color: var(--primary); margin-bottom: 0.5rem; } .landmarks-images { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; } .landmark-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); } .landmark-image img { width: 100%; height: 250px; object-fit: cover; transition: transform var(--transition); } .landmark-image:hover img { transform: scale(1.05); } .landmark-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; } /* Services in Vancouver */ .services-vancouver { 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(300px, 1fr)); gap: 2rem; } .service-card { background: var(--white); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); transition: all var(--transition); } .service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); } .service-card h3 { margin-bottom: 1rem; font-size: 1.5rem; } .service-card p { color: var(--gray-600); margin-bottom: 1rem; } .service-features { list-style: none; margin-bottom: 1.5rem; } .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; } /* Neighborhoods Section */ .neighborhoods { padding: 80px 0; } .neighborhoods-intro { text-align: center; max-width: 800px; margin: 0 auto 3rem; } .neighborhoods-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; } .neighborhood-card { background: var(--gray-50); padding: 1.5rem; border-radius: var(--radius-lg); transition: all var(--transition); text-align: center; } .neighborhood-card:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); box-shadow: var(--shadow-lg); } .neighborhood-card h4 { margin-bottom: 0.5rem; } .neighborhood-card:hover h4 { color: var(--white); } .neighborhood-card p { font-size: 0.875rem; margin: 0; } .neighborhood-card:hover p { color: rgba(255, 255, 255, 0.9); } /* Service Areas Grid */ .service-areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin: 2rem 0; } .service-area-link { background: var(--gray-50); padding: 1rem; border-radius: var(--radius); text-align: center; transition: all var(--transition); font-size: 0.9rem; } .service-area-link:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); } /* Why Vancouver Loves Us */ .why-vancouver { padding: 80px 0; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); } .why-vancouver h2, .why-vancouver h3 { color: var(--white); } .why-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; margin-top: 3rem; } .why-item { text-align: center; } .why-number { 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; font-weight: 700; margin: 0 auto 1.5rem; } .why-item h3 { margin-bottom: 1rem; } .why-item p { opacity: 0.9; } /* Local Testimonials */ .local-testimonials { padding: 80px 0; background: var(--gray-50); } .testimonials-slider { max-width: 900px; margin: 0 auto; margin-top: 3rem; } .testimonial { background: var(--white); 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; } /* Service Process */ .service-process { padding: 80px 0; } .process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; } .process-step { text-align: center; } .step-number { 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; font-weight: 700; margin: 0 auto 1.5rem; } .process-step h4 { margin-bottom: 1rem; } .process-step p { color: var(--gray-600); } /* Quote Form Section */ .quote-section { padding: 80px 0; background: var(--gray-50); } .quote-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .quote-info h2 { margin-bottom: 1.5rem; } .contact-methods { margin: 2rem 0; } .contact-method { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; } .contact-label { min-width: 40px; height: 40px; background: var(--primary); color: var(--white); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.125rem; } .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 h3 { font-size: 1.75rem; 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); } .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); } /* Mobile Styles */ @media (max-width: 768px) { .about-grid, .quote-content { grid-template-columns: 1fr; gap: 3rem; } .landmarks-images { order: -1; } .neighborhoods-grid { grid-template-columns: 1fr; } .why-content { gap: 2rem; } .hero-buttons { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; } .hero-buttons .btn { width: 100%; } }
E&K Contracting
(360) 910-9205 Free Quote

Vancouver's Premier Exterior Contractors

Family-owned since 2002, specializing in gutters, exterior painting, siding, drywall & roofing. Proud community leaders serving all Vancouver neighborhoods.

Get Free Estimate Call (360) 910-9205
  • Home
  • Service Areas
  • Vancouver, WA

Building Vancouver's Future Since 2002

E&K Contracting isn't just another contractor in Vancouver - we're your neighbors, community leaders, and proud members of the Greater Vancouver Chamber of Commerce. For over 20 years, we've been an integral part of Vancouver's growth and development.

Founded by Enrique and Sandra, a Mexican-American couple with deep roots in Vancouver, our story began when Enrique's brother passed the family business to them before returning to Mexico. What started as a small operation in 2002 has grown into Vancouver's most trusted contracting company, completing over 3,300 projects. Our portfolio ranges from residential homes throughout Clark County to prestigious commercial projects like remodeling the luxury suites at Portland's Moda Center.

Our specialization in exterior work - including gutters, painting, siding, drywall, and roofing - has helped protect and beautify homes throughout Clark County. From the historic charm of downtown to the modern developments in Felida, we understand the unique architectural needs of every Vancouver neighborhood. Learn more about our story and commitment to excellence.

2002 Family Business Started
3,300+ Projects Completed
20+ Years in Vancouver
100% Community Focused
Officer Row Vancouver WA
Historic Officer Row
Fort Vancouver
Fort Vancouver National Site
Vancouver Waterfront
Vancouver Waterfront

More Than Contractors - We're Community Leaders

At E&K Contracting, our commitment to Vancouver goes far beyond our professional services. Sandra, co-owner of E&K, has served as President of the Vancouver School Board, dedicating herself to improving education for our community's children. This level of civic engagement reflects our deep roots and genuine care for Vancouver's future.

"When you choose E&K Contracting, you're not just hiring contractors - you're supporting a family business that reinvests in our community, supports local schools, and takes pride in making Vancouver a better place for everyone."

- Enrique & Sandra, Owners

As proud Mexican-American business owners and active members of the Greater Vancouver Chamber of Commerce, we understand the importance of diversity, quality craftsmanship, and community service. Our journey from taking over a small family operation to becoming Vancouver's premier exterior contracting company is a testament to the American dream and the supportive spirit of our Vancouver community. Read more client reviews and testimonials to see why Vancouver trusts us.

School Board Leadership Sandra served as President
Chamber Member Active in local business community
Family-Owned Mexican-American heritage

Our Exterior Specialties in Vancouver, WA

Professional exterior contracting services that protect and beautify Vancouver homes

Exterior Painting Services

Transform your Vancouver home's curb appeal with our professional exterior painting services.

  • Weather-resistant paints for Pacific Northwest climate
  • Complete surface preparation and priming
  • Deck & fence staining
  • Pressure washing services
Learn More

Complete Gutter Services

Protect your home from Vancouver's rainy climate with quality gutter systems.

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

Siding & Exterior Work

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

  • Vinyl & fiber cement siding
  • Exterior drywall repair
  • Roofing repairs & maintenance
  • Trim & fascia work
View All Services

Interior Services Available Too

Beyond our exterior specialties, we also offer interior painting, cabinet painting, drywall installation, and texture matching services to complete your home improvement project.

Exterior Services Throughout Vancouver Neighborhoods

From downtown to the outskirts, we provide professional exterior contracting services throughout Vancouver's diverse neighborhoods

Felida

Upscale neighborhood with beautiful homes

Salmon Creek

Growing area near WSU Vancouver

Cascade Park

Established East Vancouver community

Minnehaha

Historic neighborhood near Fort Vancouver

Fisher's Landing

Family-friendly East Vancouver area

Hazel Dell

North Vancouver community

Orchards

East Vancouver residential area

Downtown Vancouver

Urban core & waterfront district

Burton Image Walnut Grove Bagley Downs Fourth Plain Heritage Valley Crown Park Meadow Glade

Serving Surrounding Clark County Areas

Camas Battle Ground Ridgefield La Center Woodland Brush Prairie Hockinson Grass Valley

View all service areas in Clark County and beyond

Why Vancouver Homeowners Choose E&K

What makes us Vancouver's most trusted exterior contractors

01

Deep Local Roots

Mexican-American family business serving Vancouver since 2002, with leadership in local schools and active Chamber membership.

02

Proven Track Record

Over 3,300 successful projects from residential homes to commercial landmarks like the Moda Center suites.

03

Exterior Specialists

Focused expertise in gutters, exterior painting, siding, drywall, and roofing - protecting Vancouver homes from Northwest weather.

What Vancouver Residents Say

Real reviews from your Vancouver neighbors - read more testimonials

★★★★★

"E&K did our gutters and exterior painting. Not only was the work exceptional, but knowing Sandra's involvement with the school board made us feel good about supporting a company that gives back to our community. True professionals!"

RC
Robert Chen

Salmon Creek, Vancouver WA

Our Vancouver Service Process

Simple, transparent, and efficient - learn more about our process in our frequently asked questions

1

Contact Us

Call (360) 910-9205 or contact us online for a free estimate

2

Free Estimate

We'll visit your Vancouver home and provide a detailed quote

3

Schedule Service

Choose a convenient time that works for your schedule

4

Quality Work

Our experienced team completes your project to perfection

Get Your Free Exterior Services Estimate

Join thousands of satisfied Vancouver homeowners who trust E&K Contracting for their exterior home improvement needs. As active community members and Chamber participants, we're invested in Vancouver's future.

1
Visit Our Office
3515 Thompson Ave, Vancouver, WA 98660
2
Call Us
(360) 910-9205
3
Email Us
ekllc@live.com

Service Hours: Monday - Friday, 8:00 AM - 6:00 PM

Visit our main contact page for additional ways to reach us.

Request Your Free Quote

We'll respond within 1 hour during business hours

E&K Contracting
3515 Thompson Ave, Vancouver, WA 98660 (360) 910-9205 ekllc@live.com
Home About Service Areas Reviews Contact FAQ

© 2025 E&K Contracting LLC - Vancouver WA's Trusted Exterior Contractors | Mexican-American Family Business | Chamber Member | Privacy | Terms