:root {
    --primary: #a84b23;
    /* Earthy Terra Cotta/Rust */
    --primary-hover: #8f3f1d;
    --secondary: #2c3e50;
    /* Deep Slate Blue */
    --bg: #fdfdfc;
    --bg-alt: #f1f2f4;
    --text-dark: #2b2b2b;
    --text-light: #ffffff;
    --border: #e0e0e0;
    --transition: all 0.2s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg);
    line-height: 1.7;
}

h1,
h2,
h3,
h4 {
    font-family: 'Lora', serif;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    /* Harder edges for a 'contractor' feel */
    text-decoration: none;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--secondary);
}

/* Header */
header {
    position: absolute;
    /* Not fixed, feels more traditional */
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    background: rgba(44, 62, 80, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 4px solid var(--primary);
}

.logo {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: #dfba8c;
    /* Subdued gold/wood tone */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

nav a:hover {
    color: #dfba8c;
}

.nav-phone {
    background: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    color: white !important;
}

.nav-phone:hover {
    background: var(--primary-hover);
    color: white !important;
}

/* Hero Section */
.hero {
    height: 85vh;
    min-height: 600px;
    background: linear-gradient(rgba(28, 40, 65, 0.8), rgba(28, 40, 65, 0.7)), url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex;
    align-items: center;
    padding: 0 5%;
    padding-top: 80px;
    /* offset header */
}

.hero-content {
    max-width: 700px;
    color: var(--text-light);
}

.hero h1 {
    color: var(--text-light);
    font-size: 3.5rem;
}

.hero p {
    color: #e2e8f0;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-family: 'Open Sans', sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* About / Intro Section */
.about {
    padding: 5rem 5%;
    background: var(--bg);
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    position: relative;
    padding-bottom: 1rem;
}

.about-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Services */
.services {
    padding: 5rem 5%;
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.services-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 1rem auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 4px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    border-color: #bcc3ca;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.service-content p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Why Choose Us (Features) */
.features {
    padding: 5rem 5%;
    background: var(--secondary);
    color: white;
}

.features h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature {
    padding: 1rem;
}

.feature i {
    font-size: 2.5rem;
    color: #dfba8c;
    margin-bottom: 1rem;
}

.feature h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #d1d5db;
    font-size: 0.95rem;
}

/* Call to Action */
.cta {
    padding: 5rem 5%;
    background-color: var(--bg);
    text-align: center;
}

.cta-box {
    background: white;
    border: 2px solid var(--border);
    padding: 3rem 2rem;
    border-radius: 4px;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    margin-bottom: 1rem;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.cta .btn-primary {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* Footer */
footer {
    background: #1a202c;
    color: #a0aec0;
    padding: 4rem 5% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: white;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #a0aec0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: white;
    text-decoration: underline;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--primary);
    margin-top: 0.3rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    nav ul {
        display: none;
    }

    .about {
        flex-direction: column;
    }
}