|
Jeb Bradshaw <jeb.bradshaw@gmail.com>
|
|
1:36 PM
(3 minutes ago)
|
|
|
|
to me

|
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,
initial-scale=1.0"/>
<title>Clean Slate Concrete | Fort Worth & DFW</title>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=DM+Sans:wght@300;400;500&display=swap"
rel="stylesheet"/>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
```
:root {
--stone: #f5f2ee;
--ash: #e8e3dc;
--slate: #3a3a3a;
--charcoal: #1a1a1a;
--accent: #c27d3e;
--light: #ffffff;
}
html { scroll-behavior: smooth; }
body {
font-family: 'DM Sans', sans-serif;
background: var(--stone);
color: var(--charcoal);
overflow-x: hidden;
}
/* ── NAV ── */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
display: flex; align-items: center; justify-content: space-between;
padding: 1.25rem 5%;
background: rgba(245,242,238,0.92);
backdrop-filter: blur(8px);
border-bottom: 1px solid var(--ash);
animation: fadeDown 0.6s ease both;
}
.nav-logo {
font-family: 'Playfair Display', serif;
font-size: 1.25rem;
color: var(--charcoal);
letter-spacing: 0.01em;
}
.nav-logo span { color: var(--accent); }
nav a {
text-decoration: none;
color: var(--slate);
font-size: 0.85rem;
font-weight: 500;
letter-spacing: 0.05em;
text-transform: uppercase;
transition: color 0.2s;
}
nav a:hover { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; }
/* ── HERO ── */
.hero {
min-height: 100vh;
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
padding: 8rem 5% 4rem;
gap: 4rem;
}
.hero-text { animation: fadeUp 0.8s 0.2s ease both; }
.hero-eyebrow {
font-size: 0.75rem;
font-weight: 500;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 1.25rem;
}
.hero h1 {
font-family: 'Playfair Display', serif;
font-size: clamp(2.8rem, 5vw, 4.5rem);
line-height: 1.1;
color: var(--charcoal);
margin-bottom: 1.5rem;
}
.hero h1 em {
font-style: normal;
color: var(--accent);
}
.hero-sub {
font-size: 1.05rem;
font-weight: 300;
line-height: 1.7;
color: var(--slate);
max-width: 420px;
margin-bottom: 2.5rem;
}
.btn-primary {
display: inline-block;
background: var(--charcoal);
color: var(--light);
padding: 0.9rem 2.2rem;
font-family: 'DM Sans', sans-serif;
font-size: 0.85rem;
font-weight: 500;
letter-spacing: 0.08em;
text-transform: uppercase;
text-decoration: none;
border: none;
cursor: pointer;
transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--accent);
transform: translateY(-2px); }
.hero-visual {
animation: fadeUp 0.8s 0.4s ease both;
position: relative;
}
.hero-photo-wrap {
position: relative;
overflow: hidden;
}
.hero-photo-wrap img {
width: 100%;
height: 480px;
object-fit: cover;
display: block;
}
.hero-photo-wrap .photo-placeholder {
width: 100%;
height: 480px;
background: var(--charcoal);
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 0.75rem;
color: rgba(255,255,255,0.3);
font-size: 0.8rem;
letter-spacing: 0.1em;
text-transform: uppercase;
}
.hero-photo-wrap .photo-placeholder svg {
width: 40px; height: 40px;
opacity: 0.3;
}
.concrete-card {
background: var(--charcoal);
padding: 2rem 2.5rem;
position: relative;
overflow: hidden;
}
.concrete-card::after {
content: '';
position: absolute; top: 0; left: 0; right: 0;
height: 3px;
background: var(--accent);
}
.stat-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.5rem;
position: relative;
}
.stat { border-left: 2px solid rgba(194,125,62,0.4);
padding-left: 1rem; }
.stat-num {
font-family: 'Playfair Display', serif;
font-size: 2rem;
color: var(--light);
line-height: 1;
}
.stat-label {
font-size: 0.72rem;
color: rgba(255,255,255,0.5);
text-transform: uppercase;
letter-spacing: 0.08em;
margin-top: 0.35rem;
}
/* ── SERVICES ── */
.services {
padding: 6rem 5%;
background: var(--light);
}
.section-label {
font-size: 0.75rem;
font-weight: 500;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 0.75rem;
}
.section-title {
font-family: 'Playfair Display', serif;
font-size: clamp(2rem, 3.5vw, 2.75rem);
color: var(--charcoal);
margin-bottom: 3.5rem;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 1.5px;
background: var(--ash);
}
.service-item {
background: var(--light);
padding: 2.5rem;
transition: background 0.25s;
}
.service-item:hover { background: var(--stone); }
.service-icon {
width: 44px; height: 44px;
margin-bottom: 1.5rem;
color: var(--accent);
}
.service-item h3 {
font-family: 'Playfair Display', serif;
font-size: 1.3rem;
margin-bottom: 0.75rem;
}
.service-item p {
font-size: 0.9rem;
font-weight: 300;
line-height: 1.7;
color: var(--slate);
}
/* ── WHY US ── */
.why {
padding: 6rem 5%;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 5rem;
align-items: center;
}
.why-text .section-title { margin-bottom: 1.5rem; }
.why-text p {
font-size: 0.95rem;
font-weight: 300;
line-height: 1.8;
color: var(--slate);
margin-bottom: 2rem;
}
.check-list { list-style: none; display: flex; flex-direction: column; gap:
0.75rem; }
.check-list li {
display: flex; align-items: flex-start; gap: 0.75rem;
font-size: 0.9rem; color: var(--slate); font-weight: 400;
}
.check-list li::before {
content: '—';
color: var(--accent);
font-weight: 700;
flex-shrink: 0;
margin-top: 1px;
}
.why-accent-block {
background: var(--charcoal);
padding: 3.5rem;
position: relative;
}
.why-accent-block::after {
content: '';
position: absolute; bottom: -12px; right: -12px;
width: 100%; height: 100%;
border: 2px solid var(--accent);
z-index: -1;
}
.why-accent-block blockquote {
font-family: 'Playfair Display', serif;
font-size: 1.5rem;
line-height: 1.5;
color: var(--light);
font-style: italic;
margin-bottom: 1.5rem;
}
.why-accent-block cite {
font-size: 0.8rem;
color: rgba(255,255,255,0.45);
letter-spacing: 0.1em;
text-transform: uppercase;
font-style: normal;
}
/* ── CONTACT ── */
.contact {
padding: 6rem 5%;
background: var(--light);
}
.contact-inner {
display: grid;
grid-template-columns: 1fr 1.4fr;
gap: 5rem;
align-items: start;
}
.contact-info .section-title { margin-bottom: 1.25rem; }
.contact-info p {
font-size: 0.95rem;
font-weight: 300;
line-height: 1.8;
color: var(--slate);
margin-bottom: 2rem;
}
.contact-detail {
display: flex; align-items: center; gap: 0.75rem;
margin-bottom: 0.85rem;
font-size: 0.9rem;
color: var(--charcoal);
text-decoration: none;
}
.contact-detail:hover { color: var(--accent); }
.contact-detail svg { width: 18px; height: 18px;
color: var(--accent); flex-shrink: 0; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr;
gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
font-size: 0.72rem;
font-weight: 500;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--slate);
}
.field input, .field textarea, .field select {
background: var(--stone);
border: 1px solid var(--ash);
border-radius: 0;
padding: 0.75rem 1rem;
font-family: 'DM Sans', sans-serif;
font-size: 0.9rem;
color: var(--charcoal);
transition: border-color 0.2s;
outline: none;
-webkit-appearance: none;
}
.field input:focus, .field textarea:focus,
.field select:focus {
border-color: var(--accent);
}
.field textarea { resize: vertical; min-height:
120px; }
.form-submit {
align-self: flex-start;
}
#form-success {
display: none;
background: var(--stone);
border-left: 3px solid var(--accent);
padding: 1rem 1.25rem;
font-size: 0.9rem;
color: var(--slate);
}
/* ── PORTFOLIO ── */
.portfolio {
padding: 6rem 5%;
background: var(--stone);
}
.portfolio-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 3px;
margin-top: 3rem;
}
.portfolio-item {
position: relative;
overflow: hidden;
aspect-ratio: 4/3;
background: var(--ash);
cursor: pointer;
}
.portfolio-item img {
width: 100%; height: 100%;
object-fit: cover;
display: block;
transition: transform 0.5s ease;
}
.portfolio-item:hover img {
transform: scale(1.05); }
.portfolio-item .img-placeholder {
width: 100%; height: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 0.5rem;
color: rgba(0,0,0,0.25);
font-size: 0.72rem;
letter-spacing: 0.12em;
text-transform: uppercase;
background: var(--ash);
}
.portfolio-item .img-placeholder svg
{ width: 32px; height: 32px; opacity: 0.3; }
.portfolio-overlay {
position: absolute; inset: 0;
background: rgba(26,26,26,0);
display: flex; align-items: flex-end;
padding: 1.25rem;
transition: background 0.3s;
}
.portfolio-item:hover .portfolio-overlay {
background: rgba(26,26,26,0.55); }
.portfolio-caption {
color: var(--light);
font-size: 0.82rem;
font-weight: 500;
letter-spacing: 0.05em;
opacity: 0;
transform: translateY(6px);
transition: opacity 0.3s, transform 0.3s;
}
.portfolio-item:hover .portfolio-caption { opacity:
1; transform: translateY(0); }
/* Lightbox */
.lightbox {
display: none;
position: fixed; inset: 0; z-index: 200;
background: rgba(0,0,0,0.92);
align-items: center;
justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
max-width: 90vw;
max-height: 85vh;
object-fit: contain;
box-shadow: 0 0 60px rgba(0,0,0,0.5);
}
.lightbox-close {
position: absolute; top: 1.5rem; right: 1.5rem;
background: none; border: none; cursor: pointer;
color: rgba(255,255,255,0.7); font-size: 2rem;
line-height: 1;
transition: color 0.2s;
}
.lightbox-close:hover { color: var(--accent); }
/* ── FOOTER ── */
footer {
background: var(--charcoal);
padding: 2rem 5%;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 1rem;
}
footer .nav-logo { color: var(--light); }
footer p {
font-size: 0.78rem;
color: rgba(255,255,255,0.35);
}
/* ── ANIMATIONS ── */
@keyframes fadeDown {
from { opacity: 0; transform: translateY(-16px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
from { opacity: 0; transform: translateY(24px); }
to { opacity: 1; transform: translateY(0); }
}
/* ── RESPONSIVE ── */
@media (max-width: 768px) {
.hero, .why, .contact-inner {
grid-template-columns: 1fr;
gap: 2.5rem;
}
.hero { padding-top: 6rem; }
.form-row { grid-template-columns: 1fr; }
.why-accent-block::after { display: none; }
.nav-links { display: none; }
.portfolio-grid { grid-template-columns: 1fr 1fr; }
.stat-grid { grid-template-columns: 1fr 1fr; gap:
1.25rem; }
}
```
</style>
</head>
<body>
<!-- NAV -->
<nav>
<div class="nav-logo">Clean Slate
<span>Concrete</span></div>
<div class="nav-links">
<a href="#services">Services</a>
<a href="#portfolio">Work</a>
<a href="#why">About</a>
<a href="#contact">Contact</a>
</div>
<a href="#contact" class="btn-primary">Free Estimate</a>
</nav>
<!-- HERO -->
<section class="hero">
<div class="hero-text">
<p class="hero-eyebrow">Fort Worth & DFW</p>
<h1>A <em>fresh start</em> begins with solid ground.</h1>
<p class="hero-sub">Driveways and patios built right the first
time. Clean lines, lasting craftsmanship, and honest work — right here in
DFW.</p>
<a href="#contact" class="btn-primary">Get a Free Estimate</a>
</div>
<div class="hero-visual">
<div class="hero-photo-wrap">
<!-- Replace hero.jpg with your own photo filename -->
<img src="images/hero.jpg"
alt="Freshly poured concrete driveway"
onerror="this.style.display='none';
this.nextElementSibling.style.display='flex';"
/>
<div class="photo-placeholder" style="display:none;">
<svg viewBox="0 0
24 24" fill="none" stroke="currentColor"
stroke-width="1.5">
<rect x="3" y="3"
width="18" height="18" rx="2"/><circle
cx="8.5" cy="8.5" r="1.5"/>
<path d="M21 15l-5-5L5 21"/>
</svg>
Add hero.jpg to your images/ folder
</div>
</div>
<div class="concrete-card">
<div class="stat-grid">
<div class="stat">
<div class="stat-num">15+</div>
<div class="stat-label">Years Experience</div>
</div>
<div class="stat">
<div class="stat-num">500+</div>
<div class="stat-label">Projects Completed</div>
</div>
<div class="stat">
<div class="stat-num">DFW</div>
<div class="stat-label">Service Area</div>
</div>
<div class="stat">
<div class="stat-num">100%</div>
<div class="stat-label">Licensed & Insured</div>
</div>
</div>
</div>
</div>
</section>
<!-- SERVICES -->
<section class="services" id="services">
<p class="section-label">What We Do</p>
<h2 class="section-title">Built for how you live.</h2>
<div class="services-grid">
<div class="service-item">
<svg class="service-icon" viewBox="0 0 24 24" fill="none"
stroke="currentColor"
stroke-width="1.5">
<rect x="3" y="3"
width="18" height="18" rx="1"/><path
d="M3 9h18M9 21V9"/>
</svg>
<h3>Driveways</h3>
<p>From simple replacements to custom stamped concrete, we pour driveways
that hold up to Texas heat and look great doing it.</p>
</div>
<div class="service-item">
<svg class="service-icon" viewBox="0 0 24 24" fill="none"
stroke="currentColor"
stroke-width="1.5">
<path d="M3 21h18M5 21V7l7-4 7 4v14"/><path d="M9
21v-6h6v6"/>
</svg>
<h3>Patios</h3>
<p>Outdoor living starts with the right foundation. We design and pour
patios that complement your home and stand the test of time.</p>
</div>
<div class="service-item">
<svg class="service-icon" viewBox="0 0 24 24" fill="none"
stroke="currentColor"
stroke-width="1.5">
<circle cx="12" cy="12" r="9"/><path
d="M12 3v9l4 4"/>
</svg>
<h3>Repairs & Resurfacing</h3>
<p>Cracked or spalling concrete doesn't always need a full replacement.
We assess and restore existing slabs to save you time and money.</p>
</div>
<div class="service-item">
<svg class="service-icon" viewBox="0 0 24 24" fill="none"
stroke="currentColor"
stroke-width="1.5">
<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/>
</svg>
<h3>Free Estimates</h3>
<p>No pressure, no obligation. We'll come to your property, walk the
project with you, and give you a straight number.</p>
</div>
</div>
</section>
<!-- WHY -->
<section class="why" id="why">
<div class="why-text">
<p class="section-label">Why Clean Slate</p>
<h2 class="section-title">We treat your home like it's our
own.</h2>
<p>We're a small, owner-operated crew based right here in Fort Worth. No
subcontracting, no surprises — just experienced hands on every job from start
to finish.</p>
<ul class="check-list">
<li>Owner on-site for every project</li>
<li>Fully licensed and insured in Texas</li>
<li>Transparent pricing with written quotes</li>
<li>Clean job sites, on-time completions</li>
<li>Local references available on request</li>
</ul>
</div>
<div class="why-accent-block">
<blockquote>"They poured our driveway and back patio and the work
was flawless. Showed up when they said they would and left the yard cleaner
than they found it."</blockquote>
<cite>— Jennifer M., Fort Worth, TX</cite>
</div>
</section>
<!-- CONTACT -->
<section class="contact" id="contact">
<div class="contact-inner">
<div class="contact-info">
<p class="section-label">Get in Touch</p>
<h2 class="section-title">Let's talk about your
project.</h2>
<p>Whether you have a clear plan or just a rough idea, we're happy to
help. Reach out by phone, email, or fill out the form and we'll be in touch
within one business day.</p>
<a href="tel:8175550100"
class="contact-detail">
<svg viewBox="0 0
24 24" fill="none" stroke="currentColor"
stroke-width="1.5">
<path d="M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07A19.5
19.5 0 013.07 9.81 19.79 19.79 0 01.1 1.18 2 2 0 012.11 0h3a2 2 0 012
1.72c.127.96.361 1.903.7 2.81a2 2 0 01-.45 2.11L6.09 7.91a16 16 0 006
6l1.27-1.27a2 2 0 012.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0122
16.92z"/>
</svg>
(817) 555-0100
</a>
<a href="mailto:info@cleanslatedfw.com"
class="contact-detail">
<svg viewBox="0 0
24 24" fill="none" stroke="currentColor"
stroke-width="1.5">
<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1
0-2-.9-2-2V6c0-1.1.9-2 2-2z"/><polyline points="22,6 12,13
2,6"/>
</svg>
info@cleanslatedfw.com
</a>
</div>
```
<form class="contact-form" id="contactForm">
<div class="form-row">
<div class="field">
<label for="fname">First
Name</label>
<input type="text" id="fname"
name="fname" placeholder="John"
required />
</div>
<div class="field">
<label for="lname">Last
Name</label>
<input type="text" id="lname"
name="lname" placeholder="Smith"
required />
</div>
</div>
<div class="form-row">
<div class="field">
<label for="phone">Phone</label>
<input type="tel" id="phone"
name="phone" placeholder="(817) 000-0000" />
</div>
<div class="field">
<label for="email">Email</label>
<input type="email" id="email" name="email"
placeholder="you@example.com"
required />
</div>
</div>
<div class="field">
<label for="project">Project Type</label>
<select id="project" name="project">
<option value="">Select one…</option>
<option>New Driveway</option>
<option>Driveway Replacement</option>
<option>Patio</option>
<option>Repair / Resurfacing</option>
<option>Other</option>
</select>
</div>
<div class="field">
<label for="message">Tell us more</label>
<textarea id="message"
name="message" placeholder="Approximate size, timeline, any
details you have…"></textarea>
</div>
<div class="form-submit">
<button type="submit" class="btn-primary">Send
Message</button>
</div>
<div id="form-success">Thanks! We'll be in touch within one
business day.</div>
</form>
```
</div>
</section>
<!-- FOOTER -->
<footer>
<div class="nav-logo">Clean Slate
<span>Concrete</span></div>
<p>© 2026 Clean Slate Concrete · Fort Worth, TX · All rights
reserved.</p>
</footer>
<script>
document.getElementById('contactForm').addEventListener('submit', function(e) {
e.preventDefault();
this.style.display = 'none';
document.getElementById('form-success').style.display = 'block';
});
</script>
</body>
</html>