About E&K Contracting | Family-Owned Vancouver WA Contractors 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; } /* Skip Link */ .skip-link { position: absolute; top: -40px; left: 0; background: var(--primary); color: var(--white); padding: 8px; z-index: 100; } .skip-link:focus { top: 0; } /* Header - Copied from main site */ .header { position: sticky; top: 0; background: var(--white); box-shadow: var(--shadow); z-index: 1000; } .header-top { background: var(--primary); color: var(--white); padding: 0.5rem 0; font-size: 0.875rem; } .header-top-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; } .header-info { display: flex; gap: 1.5rem; flex-wrap: wrap; } .header-info a { color: var(--white); } .trust-badges { display: flex; gap: 1rem; } /* Navigation */ .nav { background: var(--white); } .nav-inner { display: flex; justify-content: space-between; align-items: center; height: 80px; } .logo img { height: 50px; } .nav-menu { display: flex; list-style: none; gap: 2rem; align-items: center; } .nav-menu a { color: var(--gray-700); font-weight: 600; padding: 0.5rem 0; position: relative; } .nav-menu a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent); transition: width var(--transition); } .nav-menu a:hover::after { width: 100%; } .nav-menu a.active { color: var(--primary); } .nav-menu a.active::after { width: 100%; } /* 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); } /* Nav CTA */ .nav-cta { display: flex; gap: 1rem; align-items: center; } /* Mobile Menu Toggle */ .mobile-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 0.5rem; } .mobile-toggle span { width: 25px; height: 3px; background: var(--primary); transition: all var(--transition); } /* Page Header */ .page-header { background: linear-gradient(rgba(27, 75, 115, 0.9), rgba(27, 75, 115, 0.9)), url('https://cdn.prod.website-files.com/67f147b35b0383b0565b0365/68227cd1c98a21dac699eb45_Screenshot%202025-05-12%20155652.png'); background-size: cover; background-position: center; padding: 80px 0; color: var(--white); text-align: center; } .page-header h1 { color: var(--white); margin-bottom: 1rem; } .breadcrumb { display: flex; justify-content: center; gap: 1rem; align-items: center; font-size: 0.875rem; margin-top: 1rem; } .breadcrumb a { color: var(--white); opacity: 0.8; } .breadcrumb a:hover { opacity: 1; } .breadcrumb span { opacity: 0.6; } /* Story Section */ .story-section { padding: 80px 0; } .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 4rem; } .story-content h2 { margin-bottom: 1.5rem; } .story-content p { margin-bottom: 1.5rem; font-size: 1.125rem; line-height: 1.8; } .highlight-box { background: var(--primary-light); color: var(--white); padding: 1.5rem; border-radius: var(--radius-lg); margin: 2rem 0; } .highlight-box p { margin: 0; font-size: 1.125rem; font-weight: 600; } .story-image { position: relative; } .story-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); } .experience-badge { position: absolute; bottom: -20px; right: -20px; background: var(--accent); color: var(--white); width: 120px; height: 120px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: var(--shadow-xl); font-weight: 700; } .experience-badge .number { font-size: 2.5rem; line-height: 1; } .experience-badge .text { font-size: 0.875rem; } /* Values Section */ .values-section { 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; } .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .value-card { background: var(--white); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); text-align: center; transition: all var(--transition); } .value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); } .value-icon { width: 80px; height: 80px; background: var(--accent); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2rem; font-weight: 700; } .value-card h3 { margin-bottom: 1rem; } .value-card p { color: var(--gray-600); } /* Team Section */ .team-section { padding: 80px 0; } .team-intro { max-width: 800px; margin: 0 auto 3rem; text-align: center; } .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 4rem; } .team-member { text-align: center; } .member-photo { width: 200px; height: 200px; background: var(--gray-200); border-radius: 50%; margin: 0 auto 1.5rem; overflow: hidden; position: relative; } .member-photo img { width: 100%; height: 100%; object-fit: cover; } .member-photo .placeholder { width: 100%; height: 100%; background: var(--primary-light); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 3rem; font-weight: 700; } .team-member h4 { font-size: 1.25rem; margin-bottom: 0.5rem; } .team-member .role { color: var(--accent); font-weight: 600; margin-bottom: 0.5rem; } .team-member p { color: var(--gray-600); font-size: 0.875rem; } /* Milestones Timeline */ .milestones-section { padding: 80px 0; background: var(--gray-50); } .timeline { max-width: 900px; margin: 0 auto; position: relative; } .timeline::before { content: ''; position: absolute; left: 50%; transform: translateX(-50%); width: 2px; height: 100%; background: var(--gray-300); } .timeline-item { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 2rem; margin-bottom: 3rem; align-items: center; } .timeline-content { background: var(--white); padding: 1.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); } .timeline-content.left { text-align: right; } .timeline-content.right { text-align: left; } .timeline-year { width: 60px; height: 60px; background: var(--accent); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; position: relative; z-index: 1; } .timeline-content h4 { margin-bottom: 0.5rem; } .timeline-content p { font-size: 0.875rem; color: var(--gray-600); margin: 0; } /* Stats Section */ .stats-section { padding: 80px 0; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; max-width: 900px; margin: 0 auto; } .stat-item { text-align: center; } .stat-number { font-size: 3rem; font-weight: 800; color: var(--white); display: block; margin-bottom: 0.5rem; } .stat-label { font-size: 1.125rem; opacity: 0.9; } /* Certifications */ .certifications-section { padding: 80px 0; } .cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; max-width: 900px; margin: 0 auto; } .cert-item { text-align: center; } .cert-icon { width: 100px; height: 100px; background: var(--gray-100); border: 3px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 2.5rem; color: var(--accent); } .cert-item h4 { font-size: 1.125rem; margin-bottom: 0.5rem; } .cert-item p { font-size: 0.875rem; color: var(--gray-600); } /* CTA Section */ .cta { padding: 80px 0; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); color: var(--white); text-align: center; } .cta h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; } .cta 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(--primary); } /* Footer */ .footer { background: var(--gray-900); color: var(--white); padding: 40px 0 20px; text-align: center; } .footer p { color: rgba(255, 255, 255, 0.8); margin-bottom: 0.5rem; } .footer a { color: var(--accent); } /* Responsive */ @media (max-width: 1024px) { .nav-menu { position: fixed; top: 0; left: -100%; width: 100%; height: 100vh; background: var(--white); flex-direction: column; justify-content: flex-start; align-items: flex-start; padding: 80px 2rem 2rem; transition: left var(--transition); overflow-y: auto; z-index: 999; } .nav-menu.active { left: 0; } .mobile-toggle { display: flex; } .story-grid { grid-template-columns: 1fr; gap: 3rem; } .timeline::before { left: 20px; } .timeline-item { grid-template-columns: 60px 1fr; gap: 1.5rem; } .timeline-content.left { text-align: left; order: 2; } .timeline-year { order: 1; } } @media (max-width: 768px) { .header-top { display: none; } .nav-cta { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); padding: 1rem; box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1); z-index: 1000; gap: 0.5rem; border-top: 1px solid var(--gray-200); } .values-grid, .team-grid { grid-template-columns: 1fr; } .experience-badge { position: static; margin: 2rem auto 0; } .stats-grid { grid-template-columns: repeat(2, 1fr); } } Skip to main content
3515 Thompson Ave, Vancouver, WA Mon-Fri: 8AM-6PM ekllc@live.com
โœ“ Licensed & Insured โœ“ Free Estimates โœ“ Family Owned
E&K Contracting
  • Home
  • Services
  • Service Areas
  • About
  • Contact
(360) 910-9205 Free Quote

About E&K Contracting

Your Trusted Family Contractors Since 2002

Home / About Us

Our Story: Built on Trust and Quality

E&K Contracting began in 2002 when Enrique, a master craftsman with decades of experience, partnered with Sandra to create a contracting company built on old-fashioned values and modern expertise. What started as a small operation has grown into Vancouver's most trusted family contracting business.

Today, E&K Contracting continues to be family-owned and operated. We've maintained our commitment to quality, honesty, and exceptional service while expanding our team and capabilities to better serve the Vancouver community.

"We treat every home like it's our own, and every customer like family. That's not just a saying โ€“ it's how we've done business for over 20 years."

Our journey has been marked by steady growth, countless satisfied customers, and a reputation for excellence that we guard carefully. We've weathered economic changes, evolved with new technologies, and consistently delivered results that exceed expectations.

E&K Contracting Team
20+ Years Strong

Our Core Values

The principles that guide everything we do

๐Ÿ†

Quality First

We never compromise on quality. From premium materials to meticulous attention to detail, excellence is our standard.

๐Ÿค

Honest & Transparent

Clear communication, fair pricing, and no hidden fees. We believe in doing business the right way.

๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ

Family Values

As a family business, we understand the importance of trust, respect, and treating people right.

๐Ÿ›ก๏ธ

Reliability

When we make a commitment, we keep it. On-time, on-budget, and done right the first time.

๐ŸŒŸ

Customer Focus

Your satisfaction is our success. We go above and beyond to ensure you're thrilled with the results.

๐ŸŒฑ

Community Pride

Vancouver is our home. We're invested in making our community more beautiful, one project at a time.

Meet Our Team

Skilled professionals dedicated to your project's success

Our team combines decades of experience with fresh perspectives and cutting-edge techniques. Every member is carefully selected, thoroughly trained, and shares our commitment to excellence.

E

Enrique

Owner & Master Craftsman

Founder with 20+ years experience. Personally ensures quality on every project.

S

Sandra

Owner & Business Director

Co-founder who manages business operations and customer satisfaction.

S

Sam

Office Manager

Your first point of contact. Coordinates schedules and ensures smooth communication.

M

Marco

Operations Manager

Oversees all projects from start to finish, ensuring quality and timelines.

Plus 10+ skilled painters, installers, and specialists

All employees are background-checked, insured, and committed to our values

Our Journey

Major milestones in the E&K Contracting story

Company Founded

Enrique and Sandra start E&K Contracting with a commitment to quality and family values

2002
2008

Major Expansion

Added gutter services and hired our first full-time crew members

1,000th Project

Celebrated serving 1,000 Vancouver area homes

2012
2017

Full Service Contractor

Expanded to include drywall, siding, and roofing services

3,300+ Homes Served

Continuing our legacy of excellence with 4.9โ˜… rating

2025
20+ Years in Business
3,300+ Happy Customers
4.9โ˜… Google Rating
15+ Team Members

Licensed, Insured & Certified

Your peace of mind is our priority

๐Ÿ“œ

Fully Licensed

Washington State licensed general contractor

๐Ÿ›ก๏ธ

Insured & Bonded

Complete liability coverage and bonding

โœ“

Lead-Safe Certified

EPA RRP certified for safe practices

๐Ÿ†

Industry Memberships

Active member of professional associations

Experience the E&K Difference

Join thousands of satisfied Vancouver homeowners

Get Free Estimate Call (360) 910-9205

© 2025 E&K Contracting LLC. All rights reserved.

3515 Thompson Ave, Vancouver, WA 98660 | (360) 910-9205 | ekllc@live.com

Home | Services | About | Contact