FAQ - Frequently Asked Questions | E&K Contracting Vancouver WA /* 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 */ .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%; } /* Dropdown */ .dropdown { position: relative; } .dropdown-toggle::after { content: '▾'; margin-left: 0.25rem; font-size: 0.75rem; } .dropdown-menu { position: absolute; top: 100%; left: 0; background: var(--white); min-width: 280px; max-width: 350px; box-shadow: var(--shadow-xl); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all var(--transition); border-radius: var(--radius); padding: 0.5rem 0; margin-top: 0.5rem; list-style: none; max-height: 70vh; overflow-y: auto; } .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); } .dropdown-menu a { display: block; padding: 0.5rem 1.5rem; color: var(--gray-700); font-weight: 500; font-size: 0.875rem; transition: all var(--transition); } .dropdown-menu a strong { font-weight: 700; color: var(--primary); } .dropdown-menu li[style*="border-top"] { margin-top: 0.5rem; padding-top: 0.5rem; } .dropdown-menu a:hover { background: var(--gray-50); color: var(--primary); } .dropdown-menu a::after { display: none; } /* 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 */ .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); } /* Breadcrumb */ .breadcrumb { background: var(--gray-50); padding: 1rem 0; border-bottom: 1px solid var(--gray-200); } .breadcrumb-nav { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; } .breadcrumb-nav a { color: var(--gray-600); } .breadcrumb-nav span { color: var(--gray-400); } /* Page Header */ .page-header { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 60px 0; color: var(--white); text-align: center; } .page-header h1 { color: var(--white); margin-bottom: 1rem; } .page-header p { font-size: 1.125rem; opacity: 0.95; } /* FAQ Content */ .faq-content { 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); } /* FAQ Categories */ .faq-categories { display: flex; justify-content: center; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; } .category-btn { padding: 0.5rem 1.5rem; background: var(--gray-100); border: 2px solid transparent; border-radius: 50px; color: var(--gray-700); font-weight: 600; cursor: pointer; transition: all var(--transition); } .category-btn:hover { background: var(--gray-200); } .category-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); } /* FAQ List */ .faq-list { max-width: 800px; margin: 0 auto; } .faq-category { margin-bottom: 3rem; } .faq-category h3 { font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--primary); padding-bottom: 0.75rem; border-bottom: 2px solid var(--gray-200); } .faq-item { background: var(--white); margin-bottom: 1rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: all var(--transition); } .faq-item:hover { box-shadow: var(--shadow-lg); } .faq-question { padding: 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--gray-800); background: var(--white); transition: all var(--transition); } .faq-question:hover { background: var(--gray-50); } .faq-question::after { content: '+'; font-size: 1.5rem; color: var(--primary); transition: transform var(--transition); line-height: 1; } .faq-item.active .faq-question { background: var(--gray-50); } .faq-item.active .faq-question::after { transform: rotate(45deg); } .faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: all var(--transition); color: var(--gray-700); } .faq-item.active .faq-answer { padding: 0 1.5rem 1.5rem; max-height: 500px; } .faq-answer p { margin-bottom: 1rem; line-height: 1.8; } .faq-answer p:last-child { margin-bottom: 0; } .faq-answer ul, .faq-answer ol { margin: 1rem 0 1rem 2rem; } .faq-answer li { margin-bottom: 0.5rem; } /* CTA Section */ .cta-section { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); padding: 80px 0; text-align: center; color: var(--white); } .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-white { background: var(--white); color: var(--primary); } .btn-white:hover { background: var(--gray-100); box-shadow: var(--shadow-lg); } /* Footer */ .footer { background: var(--gray-900); color: var(--white); padding: 60px 0 30px; } .footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; } .footer-section h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 1.5rem; } .footer-section p, .footer-section a { color: rgba(255, 255, 255, 0.8); text-decoration: none; line-height: 1.8; } .footer-section a:hover { color: var(--accent); } .footer-section ul { list-style: none; } .footer-section ul li { margin-bottom: 0.75rem; } .footer-logo { height: 40px; margin-bottom: 1rem; } .footer-bottom { border-top: 1px solid var(--gray-800); padding-top: 2rem; text-align: center; color: rgba(255, 255, 255, 0.6); font-size: 0.875rem; } /* Mobile Styles */ @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; } .nav-menu li { width: 100%; margin-bottom: 0.5rem; } .nav-menu a { display: block; width: 100%; padding: 0.75rem 0; } .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: var(--gray-50); display: none; margin: 0; max-height: none; overflow-y: visible; padding: 0; margin-left: 1rem; } .dropdown.active .dropdown-menu { display: block; } .mobile-toggle { display: flex; } .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); } .nav-cta .btn { flex: 1; font-size: 0.875rem; padding: 0.75rem 1rem; } .footer-content { grid-template-columns: 1fr; gap: 2rem; } } @media (max-width: 768px) { .header-top { display: none; } .faq-categories { gap: 0.5rem; } .category-btn { font-size: 0.875rem; padding: 0.5rem 1rem; } .faq-category h3 { font-size: 1.25rem; } } 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
    • Painting Services
    • Interior Painting
    • Exterior Painting
    • Cabinet Painting
    • Deck Staining
    • Gutter Services
    • Seamless Gutters
    • Gutter Repair
    • Gutter Cleaning
    • Gutter Guards
    • Drywall Services
    • Drywall Installation
    • Texture Matching
    • Water Damage Repair
    • Siding Services
    • Vinyl Siding
    • Fiber Cement
    • Siding Repair
    • Trim Work
    • Roofing Services
    • Roof Inspection
    • Leak Repair
    • Shingle Replacement
    • Flashing Repair
  • Service Areas
  • About
  • Contact
(360) 910-9205 Free Quote
Home › FAQ

Frequently Asked Questions

Get answers to common questions about our services

How Can We Help You Today?

Browse our FAQs or call us at (360) 910-9205 for immediate assistance

General Questions

Are you licensed and insured?

Yes! E&K Contracting is fully licensed, bonded, and insured in Washington State. We carry comprehensive liability insurance and workers' compensation to protect both our team and your property.

We're happy to provide proof of insurance upon request. This gives you peace of mind knowing you're working with a professional, legitimate contractor.

What areas do you service?

We proudly serve all of Clark County, Washington, including:

  • Vancouver, WA (our home base) - including Felida, Salmon Creek, Minnehaha, Cascade Park, Fisher's Landing, and all other neighborhoods
  • Battleground, WA - including Meadow Glade, Brush Prairie, and Hockinson
  • Camas, WA - including Prune Hill and Lacamas Lake areas
  • Woodland, WA
  • Ridgefield, WA
  • La Center, WA

For a complete list of neighborhoods we serve, visit our Service Areas page.

How long have you been in business?

E&K Contracting has been serving Vancouver, WA and surrounding areas since 2002. That's over 20 years of experience in the contracting industry!

As a family-owned business, we've built our reputation on quality workmanship, honest pricing, and exceptional customer service. We've completed over 3,300 projects and maintain a 4.9-star Google rating.

Do you offer free estimates?

Yes, we provide free, no-obligation estimates for all our services. During the estimate, we'll:

  • Assess your project needs
  • Take measurements
  • Discuss your preferences and budget
  • Provide a detailed written estimate

Most estimates can be scheduled within 1-2 business days. Call (360) 910-9205 or use our online form to schedule yours.

Painting Services

How much does house painting cost in Vancouver, WA?

House painting costs in Vancouver typically range as follows:

  • Exterior painting: $3-6 per square foot
  • Interior painting: $2-4 per square foot
  • Cabinet painting: $75-150 per linear foot

The exact cost depends on several factors including home size, paint quality, surface condition, number of colors, and prep work required. Contact us at (360) 910-9205 for a free, accurate quote specific to your project.

How long does exterior painting take?

A typical exterior painting project takes 3-7 days, depending on:

  • Size of your home
  • Weather conditions
  • Amount of prep work needed
  • Number of colors
  • Crew size

We'll provide a specific timeline during your estimate. We work efficiently while ensuring quality isn't compromised.

Do I need to be home during painting?

For exterior painting, you don't need to be home once we've started the project. For interior painting, we prefer someone to be available for the first day to discuss any specific concerns or preferences.

We're fully insured and our crews are professional and trustworthy. We'll keep you updated on progress throughout the project.

What type of paint do you use?

We use only premium-quality paints from trusted brands including:

  • Sherwin-Williams
  • Benjamin Moore
  • Behr Premium

We'll recommend the best paint for your specific project based on surface type, exposure, and your preferences. All our paints come with manufacturer warranties.

Gutter Services

How often should gutters be cleaned in Vancouver, WA?

In Vancouver, WA, we recommend gutter cleaning:

  • Minimum: Twice per year (late spring and late fall)
  • With many trees: 3-4 times per year
  • With gutter guards: Once per year inspection/cleaning

Regular cleaning prevents water damage, foundation issues, and extends the life of your gutters. We offer maintenance plans to keep your gutters functioning properly year-round.

What's the difference between regular and seamless gutters?

Seamless gutters (which we specialize in) offer several advantages:

  • Custom-made on-site to fit your home exactly
  • No seams or joints (except at corners) means fewer leaks
  • More attractive appearance
  • Less maintenance required
  • Longer lifespan (20-30 years with proper care)

While seamless gutters cost slightly more initially, they save money long-term through reduced maintenance and repairs.

Do gutter guards really work?

Yes, quality gutter guards significantly reduce the amount of debris entering your gutters. Benefits include:

  • Reduced cleaning frequency (but not eliminated entirely)
  • Prevention of clogs and overflows
  • Protection against pest infestations
  • Extended gutter lifespan

We install high-quality gutter guards that allow water in while keeping most debris out. They're especially beneficial for homes with many trees.

Pricing & Payment

Do you offer financing?

Yes, we offer flexible payment options to make your home improvement projects more affordable. Options include:

  • Cash or check
  • All major credit cards
  • Payment plans for larger projects

Contact us to discuss financing options that work for your budget. We believe everyone deserves a beautiful, well-maintained home.

How accurate are your estimates?

Our estimates are highly accurate because we:

  • Conduct thorough on-site inspections
  • Take precise measurements
  • Account for all materials and labor
  • Include any necessary prep work

Our written estimates are valid for 30 days and clearly outline all costs. While unforeseen issues can occasionally arise, we'll always discuss any changes with you before proceeding.

Do you require a deposit?

For most projects, we require a deposit of 25-50% to secure your spot on our schedule and cover initial materials. The exact amount depends on:

  • Project size and scope
  • Material costs
  • Project timeline

The remaining balance is due upon satisfactory completion of the work. We never ask for full payment upfront.

Scheduling & Timeline

How far in advance do I need to schedule?

Our scheduling varies by season and service type:

  • Spring/Summer (busy season): 2-4 weeks advance booking recommended
  • Fall/Winter: 1-2 weeks typically available
  • Emergency repairs: Often same-week or next-day

We recommend calling as soon as you're considering a project. We can often accommodate urgent needs.

What happens if it rains during my project?

Weather is always a consideration in the Pacific Northwest. Here's how we handle it:

  • Exterior painting: We monitor weather closely and won't paint if rain is expected within 24 hours
  • Gutters/Roofing: Light rain usually doesn't affect these services
  • Interior work: Weather doesn't impact indoor projects

If weather delays your project, we'll communicate immediately and reschedule at your earliest convenience.

How long are your warranties?

We stand behind our work with comprehensive warranties:

  • Painting: 2-year warranty on labor
  • Gutter installation: 5-year warranty on installation
  • Drywall: 1-year warranty on repairs
  • Siding: Varies by material (up to 10 years)

Material warranties are provided by manufacturers and may extend longer. All warranty details are provided in writing with your project.

Still Have Questions?

We're here to help! Get personalized answers from our expert team.

Call (360) 910-9205 Get Free Quote
E&K Contracting

Vancouver Washington's trusted family contractors since 2002. Quality craftsmanship, honest pricing, and exceptional service.

3515 Thompson Ave
Vancouver, WA 98660

(360) 910-9205
ekllc@live.com

Mon-Fri: 8AM-6PM

Our Services

  • Interior Painting
  • Exterior Painting
  • Gutter Installation
  • Gutter Cleaning
  • Drywall Services
  • Siding Services
  • Roofing Services

Service Areas

  • Vancouver, WA
  • Battleground, WA
  • Camas, WA
  • Woodland, WA
  • Ridgefield, WA
  • La Center, WA
  • All Service Areas

Company

  • About Us
  • Contact
  • Privacy Policy
  • Terms of Service

© 2025 E&K Contracting LLC. All rights reserved. | Privacy | Terms | Sitemap