/* Reset and Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #8b6914;
    --color-primary-dark: #6b5010;
    --color-text: #333;
    --color-text-light: #666;
    --color-bg: #fff;
    --color-bg-warm: #faf8f5;
    --color-accent: #d4a574;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    text-decoration: none;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #3d2914 0%, #5c4033 50%, #8b6914 100%);
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/hero-bg.jpg') center/cover;
    opacity: 0.3;
}

.nav {
    position: relative;
    z-index: 10;
    padding: 20px 0;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.logo:hover {
    text-decoration: none;
    opacity: 0.9;
}

.nav-phone {
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 4px;
}

.nav-phone:hover {
    background: rgba(255,255,255,0.1);
    text-decoration: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--color-bg-warm);
}

.services h2, .projects h2, .contact h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 16px;
}

.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--color-primary);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.trust-signals {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.trust-item {
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.trust-item span {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Projects Section */
.projects {
    padding: 80px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.project-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}

.project-card:hover {
    transform: translateY(-4px);
}

.project-image {
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.project-info {
    padding: 16px;
    background: #fff;
}

.project-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.project-info p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.projects-cta {
    text-align: center;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--color-bg-warm);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.contact-item a, .contact-item span {
    font-size: 1.1rem;
    color: var(--color-text);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.contact-cta {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.cta-note {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Footer */
.footer {
    padding: 32px 0;
    background: #2a2a2a;
    color: rgba(255,255,255,0.7);
    text-align: center;
    font-size: 0.9rem;
}

.footer-credit {
    margin-top: 8px;
    font-size: 0.8rem;
}

.footer-credit a {
    color: rgba(255,255,255,0.5);
}

.footer-credit a:hover {
    color: rgba(255,255,255,0.8);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }

    .nav-phone {
        font-size: 0.9rem;
        padding: 8px 14px;
    }

    .services, .projects, .contact {
        padding: 60px 0;
    }

    .trust-signals {
        gap: 32px;
    }

    .trust-item strong {
        font-size: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-cta {
        order: -1;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        gap: 20px;
    }

    .service-card {
        padding: 24px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}
