Salmon Creek 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 */ .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/1-8llbdxc3rh.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 Salmon Creek Section */ .about-salmon-creek { 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); } .community-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; } .area-images { display: grid; gap: 1rem; } .area-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); } .area-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); } .area-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 Features */ .community-features { padding: 80px 0; background: var(--gray-50); } .features-intro { text-align: center; max-width: 800px; margin: 0 auto 3rem; } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-bottom: 3rem; } .feature-card { background: var(--white); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); text-align: center; transition: all var(--transition); } .feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); } .feature-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; } .feature-card h3 { margin-bottom: 1rem; } .feature-card p { color: var(--gray-600); } /* Services Section */ .services-salmon-creek { padding: 80px 0; } .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(350px, 1fr)); gap: 2rem; } .service-card { background: var(--white); border: 2px solid var(--gray-100); padding: 2.5rem; border-radius: var(--radius-lg); transition: all var(--transition); } .service-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: var(--shadow-xl); } .service-card h3 { margin-bottom: 1rem; font-size: 1.75rem; } .service-card p { color: var(--gray-600); margin-bottom: 1.5rem; } .service-list { list-style: none; margin-bottom: 2rem; } .service-list li { position: relative; padding-left: 1.75rem; margin-bottom: 0.75rem; color: var(--gray-700); } .service-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: bold; font-size: 1.125rem; } /* Why Choose Section */ .why-salmon-creek { padding: 80px 0; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); } .why-salmon-creek h2 { color: var(--white); text-align: center; margin-bottom: 3rem; } .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; } .why-item { text-align: center; } .why-item h3 { color: var(--white); margin-bottom: 1rem; } .why-item p { opacity: 0.9; } /* Recent Work */ .recent-work { padding: 80px 0; background: var(--gray-50); } .work-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; margin-top: 3rem; } .work-item { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition); } .work-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); } .work-details { padding: 1.5rem; } .work-type { display: inline-block; background: var(--primary); color: var(--white); padding: 0.25rem 0.75rem; border-radius: var(--radius); font-size: 0.875rem; font-weight: 600; margin-bottom: 0.75rem; } .work-details h4 { margin-bottom: 0.5rem; } .work-details p { color: var(--gray-600); font-size: 0.875rem; } /* Testimonial Section */ .testimonial-salmon-creek { padding: 80px 0; } .testimonial-container { max-width: 900px; margin: 0 auto; } .testimonial-card { background: var(--white); padding: 3rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); text-align: center; border: 2px solid var(--gray-100); } .quote-mark { font-size: 4rem; color: var(--accent); opacity: 0.3; line-height: 1; margin-bottom: 1rem; } .testimonial-text { font-size: 1.25rem; line-height: 1.8; color: var(--gray-700); margin-bottom: 2rem; font-style: italic; } .testimonial-author { font-weight: 600; color: var(--primary); font-size: 1.125rem; } .author-location { color: var(--gray-500); font-size: 0.875rem; margin-top: 0.25rem; } .stars { color: #FFD700; font-size: 1.5rem; margin-bottom: 1.5rem; } /* CTA Section */ .cta-section { padding: 80px 0; background: var(--accent); color: var(--white); text-align: center; } .cta-section h2 { color: var(--white); margin-bottom: 1rem; } .cta-section p { font-size: 1.25rem; margin-bottom: 2rem; opacity: 0.95; } .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; } .quote-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .quote-info h2 { margin-bottom: 1.5rem; } .contact-benefits { margin: 2rem 0; } .benefit-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; } .benefit-check { width: 24px; height: 24px; background: var(--accent); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: bold; } .form-wrapper { background: var(--gray-50); padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); } .form-header { text-align: center; margin-bottom: 2rem; } .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-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) { .about-grid, .quote-content { grid-template-columns: 1fr; gap: 3rem; } .area-images { order: -1; } .hero-buttons { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; } .hero-buttons .btn { width: 100%; } .services-grid, .work-gallery { grid-template-columns: 1fr; } .header-cta .btn span { display: none; } }
E&K Contracting
Call (360) 910-9205 Free Quote

Salmon Creek's Trusted Exterior Contractors

Family-owned since 2002, serving growing families near WSU Vancouver with quality gutters, painting, siding & roofing services

Get Free Estimate Call (360) 910-9205
  • Home
  • Vancouver
  • Salmon Creek

Serving Salmon Creek's Growing Community

Salmon Creek is one of Vancouver's fastest-growing neighborhoods, attracting young families, professionals, and students from nearby WSU Vancouver. As a Mexican-American family business that's been part of the Vancouver community since 2002, E&K Contracting understands what Salmon Creek homeowners need.

From new construction homes to established properties near Klineline Pond at Salmon Creek Regional Park, we provide expert exterior services that protect your investment. Whether you're enjoying weekend activities at the park or commuting to WSU Vancouver, you can trust your home is in good hands with E&K.

Our co-owner Sandra's service as Vancouver School Board President reflects our commitment to communities like Salmon Creek, where families are building their futures. We bring that same dedication to every gutter installation, painting project, and exterior repair we complete.

15 Minutes to WSU Vancouver
700+ Projects in Salmon Creek
20+ Years Experience
4.9★ Customer Rating
Salmon Creek Neighborhood
Salmon Creek Residential Area
Salmon Creek Homes
Quality Homes We Serve
Salmon Creek Community
Growing Community

Why Salmon Creek Families Choose E&K

Understanding what makes your neighborhood special helps us serve you better

1

Growing Families

We work around your schedule, understanding the demands of family life near excellent schools and WSU Vancouver.

2

New & Established Homes

Experience with both new construction and older homes means we handle any exterior challenge.

3

Community Focused

As Chamber members and school board leaders, we're invested in Salmon Creek's continued growth.

Exterior Services for Salmon Creek Homes

Comprehensive solutions for your growing investment

Gutter Services

Protect your Salmon Creek home from Northwest rain with our professional gutter solutions.

  • Seamless aluminum gutter installation
  • Gutter cleaning & maintenance
  • Downspout repairs & rerouting
  • Leaf guard installation
  • Free inspection & estimates
Learn About Gutters

Exterior Painting

Transform your home's appearance with our meticulous painting services.

  • Complete exterior house painting
  • Trim & detail work
  • Deck & fence staining
  • Pressure washing prep
  • 5-year warranty
Explore Painting

Siding & More

Complete exterior services to maintain and enhance your property.

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

The E&K Difference in Salmon Creek

Quick Response Times

Located just minutes away, we provide same-day estimates and fast service for Salmon Creek residents.

Family Values

As a Mexican-American family business, we understand the importance of home and treat yours with respect.

Proven Track Record

Over 3,300 projects completed, including 700+ in Salmon Creek. From homes to commercial properties like Moda Center suites.

Recent Salmon Creek Projects

Quality work for your neighbors

Gutter Installation

Complete Gutter System Near WSU Vancouver

Installed 150ft of seamless gutters with leaf guards on a two-story home. Custom downspout placement to protect foundation.

Exterior Painting

Full House Repaint - Salmon Creek Estates

Complete exterior transformation including siding, trim, and garage doors. Used premium paint for long-lasting protection.

Siding Repair

Storm Damage Repair Near Klineline Pond

Replaced damaged siding sections and repaired exterior drywall. Color-matched perfectly to existing siding.

Salmon Creek Homeowners Trust E&K

"
★★★★★

We needed our gutters replaced before the rainy season. E&K came out the same day for an estimate and completed the work within a week. As a busy family with kids at Salmon Creek Elementary, we appreciated their flexibility and professionalism. Knowing they're local and that Sandra served on the school board made us feel even better about our choice!

The Martinez Family
Salmon Creek, near WSU Vancouver

Protect Your Salmon Creek Home Today

Don't wait for the next storm - ensure your home is properly protected

Get Free Estimate Call (360) 910-9205

Free Estimates for Salmon Creek Residents

Whether you live near Klineline Pond, WSU Vancouver, or anywhere in Salmon Creek, we're here to help protect and beautify your home with expert exterior services.

✓
Same-Day Response
Quick estimates for Salmon Creek homeowners
✓
Family-Owned Quality
20+ years serving Vancouver families
✓
Community Leaders
Chamber members, school board service

Call now: (360) 910-9205

Get Your Free Quote

Quick response guaranteed

E&K Contracting
Proudly Serving Salmon Creek (360) 910-9205 ekllc@live.com
Home Vancouver Services About Contact

© 2025 E&K Contracting LLC - Salmon Creek's Trusted Exterior Contractors | Chamber Member | Family-Owned Since 2002