:root {
    --color-primary: #2d5016;
    --color-primary-light: #4a7c2a;
    --color-primary-dark: #1a3309;
    --color-accent: #c17817;
    --color-text: #2a2a2a;
    --color-text-light: #5a5a5a;
    --color-bg: #fdfdf9;
    --color-bg-alt: #f5f3ed;
    --color-border: #e0ddd1;
    --color-white: #ffffff;
    
    --font-display: 'Merriweather', serif;
    --font-body: 'Work Sans', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(45, 80, 22, 0.08);
    --shadow-md: 0 4px 16px rgba(45, 80, 22, 0.12);
    --shadow-lg: 0 8px 32px rgba(45, 80, 22, 0.16);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-primary);
}

.nav-cta {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: var(--color-bg-alt);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid var(--color-border);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 52px;
    line-height: 1.15;
    color: var(--color-primary-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--color-accent);
    position: relative;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--color-text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

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

.btn-secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

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

.btn-secondary-large {
    padding: 18px 40px;
    font-size: 18px;
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
}

.card-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.stack-card {
    position: absolute;
    background: var(--color-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 240px;
    height: 180px;
    border: 1px solid var(--color-border);
}

.card-1 {
    top: 0;
    right: 40px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    color: var(--color-white);
    animation: floatCard 4s ease-in-out infinite;
    z-index: 3;
}

.card-2 {
    top: 100px;
    right: 120px;
    animation: floatCard 4s ease-in-out 0.5s infinite;
    z-index: 2;
}

.card-3 {
    top: 200px;
    right: 60px;
    animation: floatCard 4s ease-in-out 1s infinite;
    z-index: 1;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.card-icon {
    font-size: 48px;
}

.card-text {
    font-weight: 600;
    font-size: 18px;
    text-align: center;
}

.card-1 .card-text {
    color: var(--color-white);
}

/* Services Preview */
.services-preview {
    background: var(--color-bg-alt);
    padding: 100px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 18px;
    color: var(--color-text-light);
}

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

.service-card {
    background: var(--color-white);
    padding: 36px 28px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: all 0.4s ease;
    animation: fadeIn 0.6s ease-out both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 16px;
}

.services-cta {
    text-align: center;
}

/* Why Local Section */
.why-local {
    padding: 100px 24px;
}

.why-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-text h2 {
    font-family: var(--font-display);
    font-size: 38px;
    color: var(--color-primary-dark);
    margin-bottom: 24px;
}

.why-text p {
    font-size: 17px;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.why-list {
    list-style: none;
    margin-top: 32px;
}

.why-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--color-text);
    font-size: 16px;
}

.why-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 18px;
}

.why-visual {
    display: flex;
    justify-content: center;
}

.map-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    color: var(--color-white);
}

.map-marker {
    font-size: 72px;
    margin-bottom: 16px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.map-text {
    text-align: center;
    font-size: 18px;
    line-height: 1.4;
}

.map-text strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-top: 4px;
}

/* Coverage Area */
.coverage-area {
    background: var(--color-bg-alt);
    padding: 80px 24px;
    text-align: center;
}

.coverage-area h2 {
    font-family: var(--font-display);
    font-size: 38px;
    color: var(--color-primary-dark);
    margin-bottom: 16px;
}

.coverage-intro {
    font-size: 17px;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.neighborhoods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.neighborhood-tag {
    background: var(--color-white);
    padding: 12px 24px;
    border-radius: 24px;
    color: var(--color-primary);
    font-weight: 600;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.neighborhood-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.coverage-note {
    color: var(--color-text-light);
    font-size: 15px;
}

.coverage-note a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.coverage-note a:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    padding: 80px 24px;
}

.cta-box {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--color-primary-dark);
    color: var(--color-white);
    padding: 60px 24px 30px;
}

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

.footer-col h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 16px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    opacity: 0.9;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: var(--color-white);
    text-decoration: none;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        grid-template-columns: 1fr;
        padding: 60px 24px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .stack-card {
        width: 180px;
        height: 140px;
        padding: 20px;
    }
    
    .card-icon {
        font-size: 36px;
    }
    
    .card-text {
        font-size: 14px;
    }
    
    .why-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-secondary {
        text-align: center;
    }
}
