/* Variables & Reset */
:root {
    --primary: #2d4a3e; /* Forest Green */
    --primary-dark: #1e332a;
    --accent: #8fbc8f; /* Sage Green */
    --bg-color: #fcfbf8; /* Warm off-white */
    --bg-light: #f2efe9;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --font-heading: 'Georgia', 'Playfair Display', serif;
    --font-body: 'Segoe UI', 'Helvetica Neue', sans-serif;
    --spacing: 2rem;
    --radius: 4px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding { padding: 5rem 0; }
.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

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

.btn-white:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* Header & Nav */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

.main-nav a:not(.btn-nav):hover { color: var(--primary); }

.main-nav a:not(.btn-nav).active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--accent);
    margin-top: 4px;
}

.btn-nav {
    background: var(--accent);
    color: var(--white) !important;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius);
}

.btn-nav:hover { background: var(--primary); }

.mobile-toggle { display: none; }

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(45, 74, 62, 0.6); /* Primary color overlay */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Intro Section */
.eyebrow {
    display: block;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.intro-text p { margin-bottom: 1rem; font-size: 1.1rem; color: var(--text-light); }

.intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    text-align: center;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stat-number, .stat-icon {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    transition: transform 0.3s ease;
    border-bottom: 4px solid var(--accent);
}

.service-card:hover { transform: translateY(-5px); }
.service-card h3 { color: var(--primary); margin-bottom: 1rem; }

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius);
    background: #ddd;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

/* CTA Strip */
.cta-strip {
    background-color: var(--primary);
    color: var(--white);
    padding: 4rem 0;
}

.cta-strip h2 { color: var(--white); }
.cta-strip p { margin-bottom: 2rem; opacity: 0.9; }

/* About Page */
.page-header {
    background-color: var(--bg-light);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 { font-size: 3rem; margin-bottom: 0.5rem; }
.lead { font-size: 1.25rem; color: var(--text-light); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature-list { margin-top: 1.5rem; }
.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.dual-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 4rem 0;
}

.dual-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.info-item { margin-bottom: 1.5rem; }
.info-item .label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.info-item .value {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary);
}

.fb-link { color: #1877F2; font-weight: 600; }

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: inherit;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45,74,62,0.1);
}

.map-placeholder {
    background-color: #e5e5e5;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

/* Footer */
.site-footer {
    background-color: var(--primary-dark);
    color: #ccc;
    padding: 4rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 { color: var(--white); margin-bottom: 1rem; }
.footer-links h4, .footer-contact h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-links li { margin-bottom: 0.5rem; }
.footer-links a:hover { color: var(--accent); }
.footer-contact p { margin-bottom: 0.5rem; }
.footer-contact a { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-inner { position: relative; }
    .mobile-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }
    
    .mobile-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--primary);
        margin: 5px 0;
        transition: 0.3s;
    }

    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        padding: 5rem 2rem;
        transition: 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .main-nav.active { right: 0; }
    .main-nav ul { flex-direction: column; align-items: flex-start; }

    .hero h1 { font-size: 2.2rem; }
    .intro-grid, .about-grid, .footer-grid, .contact-wrapper, .dual-image { grid-template-columns: 1fr; gap: 2rem; }
    .stat-card { padding: 1.5rem; }
}