Green Mountain Camas WA Painters & Gutter Contractors | 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; } .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/park-votdw1rwb8.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 Overview */ .community-overview { padding: 80px 0; } .overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .overview-content h2 { margin-bottom: 1.5rem; } .overview-content p { margin-bottom: 1.5rem; color: var(--gray-600); } .community-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; } .feature-item { background: var(--gray-50); padding: 1.5rem; border-radius: var(--radius-lg); text-align: center; } .feature-item strong { display: block; font-size: 1.5rem; color: var(--primary); margin-bottom: 0.5rem; } .community-images { display: grid; gap: 1rem; } .community-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); } .community-image img { width: 100%; height: 300px; object-fit: cover; transition: transform var(--transition); } .community-image:hover img { transform: scale(1.05); } /* Why Green Mountain Section */ .why-green-mountain { padding: 80px 0; background: var(--gray-50); } .growth-content { max-width: 900px; margin: 0 auto; text-align: center; } .growth-content h2 { margin-bottom: 2rem; } .growth-text { font-size: 1.125rem; line-height: 1.8; color: var(--gray-700); margin-bottom: 2rem; } .growth-text p { margin-bottom: 1.5rem; } .development-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-stats { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-top: 3rem; } .stat-card { 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; } .stat-card strong { display: block; font-size: 1.25rem; color: var(--primary); margin-bottom: 0.5rem; } /* Services Section */ .services-green-mountain { 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(320px, 1fr)); gap: 2rem; } .service-card { background: var(--gray-50); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); box-shadow: var(--shadow); } .service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); } .service-content { padding: 2rem; } .service-content h3 { margin-bottom: 1rem; } .service-content p { color: var(--gray-600); margin-bottom: 1rem; } .service-list { list-style: none; margin-bottom: 1.5rem; } .service-list li { position: relative; padding-left: 1.75rem; margin-bottom: 0.5rem; color: var(--gray-700); } .service-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: bold; font-size: 1.125rem; } /* Local Focus Section */ .local-focus { padding: 80px 0; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); } .local-focus h2, .local-focus h3 { color: var(--white); } .focus-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; margin-top: 3rem; } .focus-item { text-align: center; } .focus-icon { 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; margin: 0 auto 1.5rem; } .focus-item h3 { margin-bottom: 1rem; } .focus-item p { opacity: 0.9; } /* Map Section */ .map-section { padding: 80px 0; background: var(--gray-50); } .map-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .map-info h2 { margin-bottom: 1.5rem; } .service-areas-list { margin: 2rem 0; } .service-areas-list h4 { margin-bottom: 1rem; } .area-links { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; } .area-links a { background: var(--white); padding: 0.5rem 1rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: all var(--transition); } .area-links a:hover { background: var(--primary); color: var(--white); text-decoration: none; } .map-container { background: var(--white); padding: 1rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); } .map-container iframe { width: 100%; height: 400px; border: none; border-radius: var(--radius); } /* CTA Section */ .cta-section { padding: 80px 0; background: var(--accent); color: var(--white); text-align: center; } .cta-section h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; } .cta-section 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(--accent); } /* Quote Form Section */ .quote-section { padding: 80px 0; } .form-wrapper { background: var(--gray-50); padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); max-width: 600px; margin: 0 auto; } .form-header { text-align: center; margin-bottom: 2rem; } .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(--white); } .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); } .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) { .overview-grid, .map-content { grid-template-columns: 1fr; gap: 3rem; } .community-images { order: -1; } .community-features { grid-template-columns: 1fr; } .hero-buttons { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; } .hero-buttons .btn { width: 100%; } .map-container iframe { height: 300px; } }
E&K Contracting
(360) 910-9205 Free Quote

Green Mountain's Trusted Painting & Home Contractors

Professional exterior services for Camas's fastest-growing neighborhood. Family-owned since 2002, serving Green Mountain's new developments and established homes.

Get Free Estimate Call (360) 910-9205
  • Home
  • Camas, WA
  • Green Mountain

Serving Green Mountain's Growing Community

Green Mountain represents the perfect blend of natural beauty and modern living in Camas, Washington. As this vibrant neighborhood continues to grow with new developments like The Glades and The Landing, E&K Contracting is here to provide the quality exterior services your home deserves.

With the recent 17.6% increase in home values and a median price around $850,000, protecting your investment with proper maintenance is more important than ever. Our expertise in exterior painting, gutter installation, and home improvements helps maintain and enhance your property value.

Whether you've just moved into one of the new communities or have been enjoying Green Mountain's scenic trails and open spaces for years, we understand the unique needs of homes in this area – from handling the Pacific Northwest weather to maintaining the neighborhood's high aesthetic standards.

$850K Median Home Value
17.6% Annual Growth
Top-Rated School District
Growing New Developments
Green Mountain Open Space
Downtown Camas

Why Green Mountain Homeowners Trust E&K

Green Mountain isn't just another neighborhood – it's a thriving community that combines the best of Camas living with easy access to nature. The Green Mountain Open Space offers residents hiking, jogging, and biking trails right in their backyard, while new developments continue to attract families seeking quality of life.

This neighborhood's proactive HOA and strong community engagement create the perfect environment for families. With grand openings of new developments bringing food, music, and family activities, plus annual events like Camas Days (July 25-26, 2025), there's always something happening here.

The exceptional Camas School District, including Lacamas Lake Elementary, Liberty Middle School, and Camas High School, makes this area particularly attractive to families. With a population of nearly 30,000 and growing at 1.34% annually, Camas continues to be one of the most desirable places to live in Southwest Washington.

Premium Location Near Lacamas Lake & trails
Active Community Regular HOA events
Family-Focused Top-rated schools

Our Services for Green Mountain Homes

Specialized exterior services designed for Green Mountain's unique climate and community standards

Exterior Painting

Enhance your Green Mountain home's curb appeal with professional exterior painting that stands up to Northwest weather.

  • HOA-compliant color consultations
  • Premium weather-resistant paints
  • Complete prep work & priming
  • Deck & fence staining
Learn More

Gutter Services

Protect your investment from Camas's rainfall with quality gutter systems designed for our climate.

  • Seamless aluminum installation
  • Gutter guards for tree-heavy areas
  • Regular cleaning & maintenance
  • Downspout optimization
Learn More

Siding & Roofing

Complete exterior protection with modern siding options and reliable roofing repairs.

  • Vinyl & fiber cement siding
  • Roof leak detection & repair
  • Trim & fascia work
  • Storm damage repairs
Learn More

Your Green Mountain Neighbors Since 2002

Why local expertise matters for your home

🏡

New Development Experience

Experienced with The Glades, The Landing, and other Green Mountain developments. We understand HOA requirements and community standards.

🌲

Nature-Ready Solutions

Specialized in protecting homes near Green Mountain Open Space. Our gutter guards handle heavy tree coverage effectively.

💎

Premium Quality Focus

Matching Green Mountain's high standards with superior materials and craftsmanship that protects your significant investment.

Serving Green Mountain & Surrounding Areas

Based in Vancouver with quick service to Green Mountain and all of Camas. Our central location means we can typically provide same-day estimates and flexible scheduling for your convenience.

Nearby Areas We Serve:

Camas Prune Hill Lacamas Lake Downtown Camas

Also Serving:

Vancouver Battleground Woodland Ridgefield

Ready to Enhance Your Green Mountain Home?

Join your neighbors who trust E&K for quality exterior services

Get Free Estimate Call (360) 910-9205

Get Your Free Green Mountain Estimate

Quick response, professional service, community-focused values

E&K Contracting
Serving Green Mountain, Camas WA (360) 910-9205 ekllc@live.com
Home Painting Gutters Camas Contact

© 2025 E&K Contracting LLC - Green Mountain's Trusted Contractors | Family-Owned Since 2002 | Privacy | Terms