Terms of Service | 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; } /* Terms Content */ .terms-content { padding: 80px 0; } .content-wrapper { max-width: 800px; margin: 0 auto; } .last-updated { color: var(--gray-600); font-size: 0.875rem; margin-bottom: 2rem; padding: 1rem; background: var(--gray-50); border-radius: var(--radius); text-align: center; } .terms-section { margin-bottom: 3rem; } .terms-section h2 { margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--gray-200); } .terms-section h3 { font-size: 1.25rem; margin: 2rem 0 1rem; color: var(--gray-800); } .terms-section p { margin-bottom: 1rem; line-height: 1.8; } .terms-section ul, .terms-section ol { margin: 1rem 0 1.5rem 2rem; } .terms-section li { margin-bottom: 0.5rem; line-height: 1.8; } .contact-info { background: var(--gray-50); padding: 2rem; border-radius: var(--radius-lg); margin-top: 3rem; } .contact-info h3 { margin-bottom: 1rem; } .contact-info p { margin-bottom: 0.5rem; } .contact-info a { color: var(--primary); font-weight: 600; } .highlight-box { background: #FFF3CD; border-left: 4px solid #FFB700; padding: 1rem 1.5rem; margin: 1.5rem 0; border-radius: var(--radius); } .highlight-box p { margin-bottom: 0; font-weight: 500; } /* 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; } .content-wrapper { padding: 0 1rem; } .terms-section { margin-bottom: 2rem; } .terms-section h2 { font-size: 1.5rem; } } 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
  • Reviews
  • FAQ
  • Contact
(360) 910-9205 Free Quote
Home › Terms of Service

Terms of Service

Please read these terms carefully before using our services

Last Updated: January 1, 2025

Agreement to Terms

These Terms of Service ("Terms") constitute a legally binding agreement between you and E&K Contracting LLC ("Company," "we," "us," or "our") concerning your access to and use of the eandkcontracting.com website and any services provided by E&K Contracting.

By accessing our website or using our services, you agree to be bound by these Terms. If you disagree with any part of these terms, then you may not access our website or use our services.

Services Provided

E&K Contracting provides professional contracting services including but not limited to:

  • Interior and exterior painting
  • Gutter installation, repair, and cleaning
  • Drywall installation and repair
  • Siding installation and repair
  • Roofing repair and maintenance

All services are subject to availability and our service area limitations. We reserve the right to refuse service to anyone for any reason at any time.

Use of Website

Acceptable Use

You may use our website for lawful purposes only. You agree not to use the website:

  • In any way that violates any applicable federal, state, local, or international law or regulation
  • To transmit, or procure the sending of, any advertising or promotional material, including any "junk mail," "chain letter," "spam," or any other similar solicitation
  • To impersonate or attempt to impersonate the Company, a Company employee, another user, or any other person or entity
  • In any way that infringes upon the rights of others, or in any way is illegal, threatening, fraudulent, or harmful
  • To engage in any other conduct that restricts or inhibits anyone's use or enjoyment of the website

Website Content

The content on our website is provided for general information purposes only. It is not intended to amount to advice on which you should rely. You must obtain professional or specialist advice before taking, or refraining from, any action on the basis of the content on our website.

Estimates and Pricing

All estimates provided by E&K Contracting are valid for 30 days from the date of issue unless otherwise specified. Estimates are based on the scope of work discussed and may be subject to change if:

  • Additional work is discovered after project commencement
  • Changes are requested to the original scope of work
  • Materials costs change significantly
  • Unforeseen circumstances arise (e.g., weather delays, structural issues)

Important: Final pricing may vary from initial estimates. We will communicate any changes before proceeding with additional work.

Payment Terms

Payment terms are as follows unless otherwise agreed in writing:

  • A deposit may be required before work begins (typically 25-50% of total estimate)
  • Progress payments may be required for larger projects
  • Final payment is due upon completion of work
  • We accept cash, check, and major credit cards

Late payments may be subject to interest charges at the rate of 1.5% per month (18% annual percentage rate) or the maximum rate allowed by law, whichever is lower.

Warranties and Guarantees

Workmanship Warranty

E&K Contracting provides a limited warranty on our workmanship as follows:

  • Painting services: 2-year warranty on labor
  • Gutter installation: 5-year warranty on installation
  • Other services: Warranty periods vary by service type

Material Warranties

Materials used in our projects may carry manufacturer warranties. These warranties are separate from our workmanship warranty and are subject to the manufacturer's terms and conditions.

Warranty Exclusions

Our warranties do not cover:

  • Normal wear and tear
  • Damage caused by accidents, abuse, or misuse
  • Damage from natural disasters or "acts of God"
  • Work performed by others
  • Failure to properly maintain the work performed

Limitation of Liability

TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT SHALL E&K CONTRACTING, ITS OFFICERS, DIRECTORS, EMPLOYEES, OR AGENTS BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES ARISING OUT OF OR RELATING TO YOUR USE OF OUR SERVICES OR WEBSITE.

Our total liability to you for any damages arising from or related to these Terms or our services shall not exceed the amount you paid to us for the specific service giving rise to the claim.

Intellectual Property

The website and its entire contents, features, and functionality (including but not limited to all information, software, text, displays, images, video, and audio) are owned by E&K Contracting, its licensors, or other providers of such material and are protected by United States and international copyright, trademark, patent, trade secret, and other intellectual property laws.

You may not reproduce, distribute, modify, create derivative works of, publicly display, publicly perform, republish, download, store, or transmit any of the material on our website without our prior written consent.

Indemnification

You agree to defend, indemnify, and hold harmless E&K Contracting, its affiliates, licensors, and service providers, and its and their respective officers, directors, employees, contractors, agents, licensors, suppliers, successors, and assigns from and against any claims, liabilities, damages, judgments, awards, losses, costs, expenses, or fees (including reasonable attorneys' fees) arising out of or relating to your violation of these Terms or your use of the website.

Dispute Resolution

Informal Resolution

We prefer to resolve disputes informally. If you have any concern or dispute about our services, you agree to first try to resolve the dispute informally by contacting us at ekllc@live.com.

Binding Arbitration

If we cannot resolve a dispute informally, any dispute arising from these Terms or our services will be resolved through binding arbitration in Clark County, Washington, in accordance with the rules of the American Arbitration Association.

Class Action Waiver

You agree that any dispute resolution proceedings will be conducted only on an individual basis and not in a class, consolidated, or representative action.

Governing Law

These Terms shall be governed by and construed in accordance with the laws of the State of Washington, without regard to its conflict of law provisions. You agree to submit to the personal jurisdiction of the state and federal courts located in Clark County, Washington for any actions not subject to arbitration.

Changes to Terms

We reserve the right, at our sole discretion, to modify or replace these Terms at any time. If a revision is material, we will provide at least 30 days' notice prior to any new terms taking effect by posting the updated Terms on this page and updating the "Last Updated" date.

Your continued use of our website or services following the posting of revised Terms means that you accept and agree to the changes.

Severability

If any provision of these Terms is held to be unenforceable or invalid, such provision will be changed and interpreted to accomplish the objectives of such provision to the greatest extent possible under applicable law, and the remaining provisions will continue in full force and effect.

Contact Information

If you have any questions about these Terms of Service, please contact us:

E&K Contracting LLC

Address: 3515 Thompson Ave, Vancouver, WA 98660

Phone: (360) 910-9205

Email: ekllc@live.com

Business Hours: Monday - Friday, 8:00 AM - 6:00 PM PST

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
  • Reviews
  • FAQ
  • Project Gallery
  • Warranty
  • Privacy Policy
  • Terms of Service

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