Privacy Policy | Gencon — Clackamas County, OR /* ── Reset & Variables ── */ *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } :root { --charcoal: #1c1c1c; --warm-dark: #2a2218; --cream: #f7f3ed; --parchment: #ede8df; --gold: #b08d57; --gold-light: #c9a96e; --text: #2e2b26; --muted: #6b6560; --white: #ffffff; --serif: 'Cormorant Garamond', Georgia, serif; --sans: 'DM Sans', system-ui, sans-serif; --radius: 2px; --section-pad: clamp(64px, 8vw, 120px); --container: 1200px; } html { scroll-behavior: smooth; } body { font-family: var(--sans); font-size: 16px; color: var(--text); background: var(--cream); line-height: 1.7; -webkit-font-smoothing: antialiased; } img { display: block; max-width: 100%; height: auto; } a { color: inherit; text-decoration: none; } .container { width: min(100%, var(--container)); margin-inline: auto; padding-inline: clamp(20px, 5vw, 60px); } /* ── Utility ── */ .eyebrow { font-family: var(--sans); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); } .section-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; line-height: 1.2; color: var(--warm-dark); } .section-title em { font-style: italic; color: var(--gold); } .body-text { font-size: 1.05rem; color: var(--muted); max-width: 64ch; line-height: 1.8; } .divider { width: 48px; height: 2px; background: var(--gold); margin: 20px 0 28px; } /* ── Buttons ── */ .btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; font-family: var(--sans); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: all 0.25s ease; border: none; } .btn-primary { background: var(--gold); color: var(--white); } .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); } .btn-outline { background: transparent; color: var(--warm-dark); border: 1.5px solid var(--warm-dark); } .btn-outline:hover { background: var(--warm-dark); color: var(--white); } .btn-ghost-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.6); } .btn-ghost-white:hover { background: rgba(255,255,255,0.12); } /* ══════════════════════════════════════ BREADCRUMB ══════════════════════════════════════ */ .breadcrumb { padding: 14px 0; background: var(--parchment); border-bottom: 1px solid rgba(176,141,87,0.15); } .breadcrumb ol { display: flex; align-items: center; gap: 8px; list-style: none; font-size: 0.8rem; color: var(--muted); } .breadcrumb li + li::before { content: '/'; opacity: 0.4; } .breadcrumb a { color: var(--muted); } .breadcrumb a:hover { color: var(--gold); } .breadcrumb [aria-current] { color: var(--gold); font-weight: 500; } /* ══════════════════════════════════════ HERO — subdued for legal page ══════════════════════════════════════ */ .hero { position: relative; min-height: clamp(360px, 48vh, 480px); display: flex; align-items: flex-end; overflow: hidden; } .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; } .hero-overlay { position: absolute; inset: 0; background: linear-gradient( to top, rgba(26,20,12,0.92) 0%, rgba(26,20,12,0.65) 45%, rgba(26,20,12,0.3) 100% ); z-index: 1; } .hero-content { position: relative; z-index: 2; padding: 0 0 clamp(40px, 6vw, 70px); width: 100%; } .hero-content .eyebrow { color: var(--gold-light); margin-bottom: 16px; } .hero-h1 { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 500; line-height: 1.15; color: var(--white); max-width: 720px; margin-bottom: 16px; } .hero-h1 em { font-style: italic; color: var(--gold-light); } .hero-meta { font-size: 0.85rem; color: rgba(255,255,255,0.72); letter-spacing: 0.04em; } .hero-meta strong { color: rgba(255,255,255,0.92); font-weight: 500; } /* ══════════════════════════════════════ LEGAL DOCUMENT LAYOUT ══════════════════════════════════════ */ .legal { padding: var(--section-pad) 0; } .legal-grid { display: grid; grid-template-columns: 240px 1fr; gap: clamp(40px, 5vw, 80px); align-items: flex-start; } .legal-toc { position: sticky; top: 32px; padding: 28px 24px; background: var(--white); border-left: 3px solid var(--gold); } .legal-toc-title { font-family: var(--sans); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; } .legal-toc ol { list-style: none; counter-reset: toc; display: flex; flex-direction: column; gap: 10px; } .legal-toc li { counter-increment: toc; font-size: 0.82rem; line-height: 1.5; } .legal-toc li::before { content: counter(toc, decimal-leading-zero); font-family: var(--serif); font-size: 0.78rem; color: var(--gold); margin-right: 10px; font-weight: 600; } .legal-toc a { color: var(--muted); transition: color 0.2s; } .legal-toc a:hover { color: var(--warm-dark); } .legal-body { max-width: 720px; } .legal-intro { font-family: var(--serif); font-size: 1.25rem; font-style: italic; color: var(--warm-dark); line-height: 1.6; padding-bottom: 28px; margin-bottom: 36px; border-bottom: 1px solid rgba(176,141,87,0.25); } .legal-section { margin-bottom: 44px; scroll-margin-top: 24px; } .legal-section:last-child { margin-bottom: 0; } .legal-section h2 { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--warm-dark); line-height: 1.3; margin-bottom: 6px; display: flex; align-items: baseline; gap: 14px; } .legal-section h2::before { content: attr(data-num); font-family: var(--serif); font-size: 0.95rem; color: var(--gold); font-weight: 600; letter-spacing: 0.08em; flex-shrink: 0; } .legal-section h3 { font-family: var(--sans); font-size: 0.95rem; font-weight: 500; color: var(--warm-dark); margin-top: 22px; margin-bottom: 8px; letter-spacing: 0.02em; } .legal-section p { font-size: 0.98rem; color: var(--text); line-height: 1.8; margin-bottom: 14px; } .legal-section p:last-child { margin-bottom: 0; } .legal-section ul { list-style: none; margin: 8px 0 14px; padding-left: 0; } .legal-section ul li { position: relative; padding-left: 24px; margin-bottom: 8px; font-size: 0.98rem; color: var(--text); line-height: 1.7; } .legal-section ul li::before { content: ''; position: absolute; left: 0; top: 12px; width: 12px; height: 1px; background: var(--gold); } .legal-section a { color: var(--warm-dark); border-bottom: 1px solid var(--gold-light); transition: color 0.2s, border-color 0.2s; } .legal-section a:hover { color: var(--gold); border-color: var(--gold); } .legal-callout { background: var(--parchment); border-left: 3px solid var(--gold); padding: 20px 24px; margin: 18px 0; } .legal-callout p { font-size: 0.92rem; color: var(--warm-dark); margin-bottom: 0; } .legal-callout strong { font-weight: 500; color: var(--warm-dark); } @media (max-width: 900px) { .legal-grid { grid-template-columns: 1fr; } .legal-toc { position: relative; top: 0; order: 2; margin-top: 40px; } } /* ══════════════════════════════════════ CTA BAND — softer for legal page ══════════════════════════════════════ */ .cta-band { background: linear-gradient(135deg, var(--warm-dark) 0%, #1a1208 100%); padding: clamp(56px, 8vw, 100px) 0; text-align: center; position: relative; overflow: hidden; } .cta-band::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient( 45deg, transparent, transparent 40px, rgba(176,141,87,0.03) 40px, rgba(176,141,87,0.03) 41px ); } .cta-band-inner { position: relative; z-index: 1; } .cta-band .eyebrow { color: var(--gold-light); } .cta-band h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 500; color: var(--white); margin: 16px 0 12px; line-height: 1.2; } .cta-band h2 em { font-style: italic; color: var(--gold-light); } .cta-band p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 540px; margin: 0 auto 32px; } .cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; } .cta-phone-link { font-family: var(--serif); font-size: 1.5rem; color: var(--gold-light); font-weight: 500; display: block; margin-bottom: 24px; } .cta-phone-link:hover { color: var(--white); } /* ══════════════════════════════════════ INTERNAL LINKS / RELATED ══════════════════════════════════════ */ .related { padding: clamp(48px, 6vw, 80px) 0; } .related-header { text-align: center; margin-bottom: 40px; } .related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2px; } .related-card { background: var(--parchment); padding: 28px 24px; display: flex; align-items: center; gap: 14px; transition: background 0.2s; } .related-card:hover { background: var(--gold); color: white; } .related-card:hover .related-label, .related-card:hover .related-arrow, .related-card:hover .related-title { color: white; } .related-icon { flex-shrink: 0; color: var(--warm-dark); } .related-card:hover .related-icon { color: white; } .related-title { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--warm-dark); display: block; } .related-label { font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); } .related-arrow { margin-left: auto; color: var(--gold); }
  1. Home
  2. Privacy Policy

Legal

Privacy Policy

Last updated: May 1, 2026  ·  Effective: May 1, 2026

Privacy Policy

On This Page
  1. Information We Collect
  2. How We Use Your Information
  3. Cookies & Similar Technologies
  4. How We Share Information
  5. Third-Party Services
  6. Data Retention
  7. Data Security
  8. Your Privacy Rights
  9. Children's Privacy
  10. Do Not Track
  11. Changes to This Policy
  12. Contact Us

Gencon is a family-owned remodeling company based in Clackamas, Oregon. This Privacy Policy explains what information we collect when you visit our website or contact us about a project, how we use that information, and the choices you have.

Information We Collect

We collect two types of information: information you provide to us directly, and information we collect automatically when you use our website.

Information You Provide

When you request a free estimate, fill out a contact form, send us an email, or call us at 503-825-0123, you may share the following with us:

  • Your name
  • Your email address
  • Your phone number
  • Your project address or service area
  • Details about the project you're considering — for example, kitchen, bathroom, basement, ADU, or general remodeling needs
  • Photos or files you choose to send us
  • Any other information you voluntarily share in your message

Information Collected Automatically

When you visit our website, we (and the analytics or hosting services we use) may automatically collect:

  • IP address and approximate location derived from it
  • Browser type, operating system, and device type
  • Pages you view, the order you view them in, and how long you stay
  • The website or search query that referred you to us
  • Date and time of your visit

This information helps us understand how visitors find and use our site so we can improve it.

How We Use Your Information

We use the information we collect to:

  • Respond to your estimate requests and project inquiries
  • Schedule and prepare for in-home consultations
  • Communicate with you about an active or upcoming project
  • Send invoices, contracts, and related project documents
  • Improve our website's content, navigation, and performance
  • Protect against fraud, abuse, and technical issues
  • Comply with our legal obligations under Oregon and federal law

We do not sell your personal information. We do not share your information with third parties for their independent marketing purposes.

Cookies & Similar Technologies

Our website uses cookies and similar technologies — small files stored in your browser — to make the site work, remember your preferences, and measure how the site is used.

Types of Cookies We May Use

  • Strictly necessary: required for core site functions like form submissions and security.
  • Performance & analytics: help us understand which pages visitors find useful so we can improve them. These may be set by analytics providers we work with.
  • Functional: remember choices you make, such as a region or display preference.

Your Cookie Choices

Most browsers let you refuse or delete cookies through your settings. If you disable cookies, parts of our website may not work as expected. You can also use private or incognito browsing to limit how cookies are stored.

How We Share Information

We share information only in limited circumstances:

  • Service providers who help us operate our business — for example, our website host, email provider, scheduling tools, and accounting software. These providers are authorized to use your information only as needed to provide their services to us.
  • Trade partners and subcontractors when necessary to complete your project — for example, a licensed electrician or plumber working under our supervision. We share only what is needed for the work.
  • Legal compliance when required to respond to a subpoena, court order, or other legal process, or to protect the rights, property, or safety of Gencon, our clients, or the public.
  • Business transfers if Gencon is involved in a merger, acquisition, or sale of assets, your information may be transferred as part of that transaction. We would notify you of any such change.

Third-Party Services

Our website may include links to third-party websites and embedded content from services we use, such as Google Maps, Google Fonts, or analytics providers. These third parties operate under their own privacy policies, which we encourage you to review. Gencon is not responsible for the practices of websites we link to.

Data Retention

We keep your information only as long as needed for the purposes described in this policy, or as required by law. In general:

  • Estimate requests that don't lead to a signed contract are typically kept for up to two years for follow-up purposes, then deleted.
  • Project records (contracts, invoices, project notes, photos) are retained for as long as required by Oregon contractor licensing rules and applicable tax and warranty laws — typically several years after a project is complete.
  • Website analytics data is generally retained in aggregated form.

You can ask us to delete your information at any time, subject to the legal exceptions described below.

Data Security

We take reasonable steps to protect the information you share with us — including secure email handling, restricted access to project files, and the use of reputable software providers. No method of transmission or storage is perfectly secure, however, and we cannot guarantee absolute security. If you believe your interaction with us is no longer secure, please contact us immediately.

Your Privacy Rights

Depending on where you live, you may have specific rights over the personal information we hold about you. We honor these rights regardless of jurisdiction whenever it is reasonably possible.

Oregon Residents

Under the Oregon Consumer Privacy Act, Oregon residents have the right to:

  • Confirm whether we are processing your personal data and access that data
  • Correct inaccuracies in your personal data
  • Delete personal data we hold about you
  • Receive a portable copy of your personal data
  • Opt out of the sale of your personal data, targeted advertising, and certain types of profiling

Gencon does not sell personal data, does not engage in cross-context behavioral advertising, and does not profile consumers in ways that produce legal or similarly significant effects. To exercise any of the rights above, contact us using the details below.

California Residents

If you are a California resident, you may have additional rights under the California Consumer Privacy Act, including the right to know, delete, correct, and opt out of the sale or sharing of your personal information. We will respond to verifiable requests within the time required by law.

How to Exercise Your Rights

To make a privacy request, email office@genconnw.com or call 503-825-0123 with the subject line "Privacy Request." We may need to verify your identity before fulfilling certain requests. We will not discriminate against you for exercising any of these rights.

Right to appeal. If we decline a privacy request, you may appeal by replying to our decision. Oregon residents who believe their appeal has not been resolved may contact the Oregon Attorney General's Consumer Protection division at doj.state.or.us/consumer-protection or call 1-877-877-9392.

Children's Privacy

Our services are intended for adults considering home remodeling projects. We do not knowingly collect personal information from children under 13. If you believe a child has provided us with personal information, please contact us and we will delete it.

Do Not Track

Some browsers send a "Do Not Track" signal. Because there is no industry consensus on how to interpret these signals, our website does not currently respond to them. We do, however, honor opt-out requests submitted through verified universal opt-out mechanisms where required by law.

Changes to This Policy

We may update this Privacy Policy from time to time. When we do, we will revise the "Last updated" date at the top of the page. Material changes will be highlighted on our website. We encourage you to review this policy periodically.

Contact Us

Questions about this Privacy Policy, or about how Gencon handles your information? We're a small family business — you can reach the brothers directly.

  • Email: office@genconnw.com
  • Phone: 503-825-0123
  • Hours: Monday–Friday, 8am–5pm
  • Address: Clackamas, OR

Still Have Questions?

We're Three Brothers, Easy to Reach.

Whether it's a question about this policy or about a project you're considering, reach out and one of us will get back to you.

503-825-0123
Contact Us Email Us

Mon–Fri 8am–5pm · Clackamas, OR · office@genconnw.com

More From Gencon

Related Pages

Legal Terms of Service
→
Get In Touch Contact Gencon
→
Resources FAQ
→
Our Story About the Brothers
→
Gencon — Clackamas County Remodeling
  • Services
    What We Do Kitchen Remodeling Bathroom Remodeling ADU Construction Basement Finishing Flooring Home Additions
  • Service Areas
    Clackamas County Oregon City Lake Oswego Happy Valley Milwaukie West Linn Canby Sandy Gladstone
  • About
  • Reviews
  • FAQ
Get a Free Estimate
Services Kitchen Remodeling Bathroom Remodeling ADU Construction Basement Finishing Flooring Home Additions Service Areas Oregon City Lake Oswego Happy Valley Milwaukie West Linn Canby Sandy Gladstone Company About Reviews FAQ Get a Free Estimate
Gencon

Family-owned licensed general contractors delivering kitchen, bathroom, ADU, and full-home renovation services across Clackamas County, Oregon.

  • 503-825-0123
  • office@genconnw.com
  • Mon–Fri: 8:00 AM – 5:00 PM
  • Clackamas, OR

Services

  • Kitchen Remodeling
  • Bathroom Remodeling
  • ADU Construction
  • Basement Finishing
  • Flooring
  • Home Additions

Service Areas

  • Oregon City
  • Lake Oswego
  • Happy Valley
  • Milwaukie
  • West Linn
  • Canby
  • Sandy
  • Gladstone

Company

  • About Us
  • Reviews
  • FAQ
  • Contact
  • All Service Areas
  • Privacy Policy
  • Terms of Service
© Gencon. All rights reserved. Clackamas County, OR.
Privacy Terms Contact