*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--primary:#2d5016;--primary-light:#4a7a2e;--text:#1a1a1a;--text-light:#555;--bg:#fafaf7;--white:#fff;--border:#e5e5e0;--radius:8px;--max-w:960px}
html{font-size:16px;scroll-behavior:smooth}
body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:var(--text);background:var(--bg);line-height:1.6}

/* NAV */
header{background:var(--white);border-bottom:1px solid var(--border);position:sticky;top:0;z-index:10}
nav{max-width:var(--max-w);margin:0 auto;padding:.75rem 1.5rem;display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap}
.logo{font-weight:700;font-size:1.25rem;color:var(--primary);text-decoration:none}
nav ul{list-style:none;display:flex;gap:1.25rem;flex:1}
nav a{color:var(--text);text-decoration:none;font-size:.9rem}
nav a:hover,nav a.active{color:var(--primary)}
.cta-phone{margin-left:auto;background:var(--primary);color:var(--white);padding:.5rem 1rem;border-radius:var(--radius);font-size:.9rem;text-decoration:none;white-space:nowrap}
.cta-phone:hover{background:var(--primary-light)}

/* HERO */
.hero{max-width:var(--max-w);margin:0 auto;padding:3rem 1.5rem 2.5rem}
.hero h1{font-size:2rem;line-height:1.2;margin-bottom:.75rem}
.hero p{font-size:1.1rem;color:var(--text-light);max-width:640px;margin-bottom:1.5rem}
.hero-cta{display:flex;gap:.75rem;flex-wrap:wrap;margin-bottom:1rem}
.hero-rating{font-size:.95rem;color:var(--text-light)}
.hero-rating .stars{color:#e6a817;margin-right:.25rem}

/* BUTTONS */
.btn{display:inline-block;padding:.7rem 1.5rem;border-radius:var(--radius);font-size:1rem;text-decoration:none;font-weight:500;transition:background .2s}
.btn-primary{background:var(--primary);color:var(--white)}
.btn-primary:hover{background:var(--primary-light)}
.btn-secondary{background:var(--white);color:var(--primary);border:1px solid var(--primary)}
.btn-secondary:hover{background:var(--primary);color:var(--white)}

/* SECTIONS */
section{max-width:var(--max-w);margin:0 auto;padding:2.5rem 1.5rem}
section h2{font-size:1.5rem;margin-bottom:1rem}
section h3{font-size:1.15rem;margin-bottom:.5rem}

/* SERVICES GRID */
.services-grid,.benefits-grid,.contact-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1.25rem}
.service-card,.benefit,.contact-card{background:var(--white);padding:1.5rem;border-radius:var(--radius);border:1px solid var(--border)}
.service-card h3 a{color:var(--primary);text-decoration:none}
.service-card h3 a:hover{text-decoration:underline}
.benefit strong{display:block;font-size:1.3rem;color:var(--primary);margin-bottom:.25rem}

/* SERVICE DETAIL */
.service-detail ul{padding-left:1.25rem;margin:.75rem 0}
.service-detail li{margin-bottom:.35rem}

/* SERVICE TYPES */
.type-card{background:var(--white);padding:1.5rem;border-radius:var(--radius);border:1px solid var(--border);margin-bottom:1rem}

/* FAQ */
details{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:1rem 1.25rem;margin-bottom:.75rem}
summary{cursor:pointer;font-weight:600;font-size:1rem}
details p{margin-top:.75rem;color:var(--text-light)}

/* PRICING */
.price-category{margin-bottom:2rem}
table{width:100%;border-collapse:collapse;background:var(--white);border-radius:var(--radius);overflow:hidden;border:1px solid var(--border)}
th,td{padding:.75rem 1rem;text-align:left;border-bottom:1px solid var(--border)}
th{background:var(--primary);color:var(--white);font-weight:500;font-size:.9rem}
td{font-size:.95rem}
tr:last-child td{border-bottom:none}
.price-note{font-size:.9rem;color:var(--text-light);margin-top:1rem}

/* MAP */
.map-container{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;margin-bottom:1.5rem;min-height:300px;display:flex;align-items:center;justify-content:center}
.map-placeholder{padding:2rem;text-align:center;color:var(--text-light)}
.directions{display:grid;grid-template-columns:1fr 1fr;gap:1rem}

/* CTA SECTION */
.cta-section{text-align:center;background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:2.5rem 1.5rem;margin:2rem auto}
.cta-section p{color:var(--text-light);margin-bottom:1.25rem}

/* FOOTER */
footer{background:var(--text);color:var(--bg);margin-top:3rem;padding:2rem 1.5rem}
.footer-content{max-width:var(--max-w);margin:0 auto;display:flex;justify-content:space-between;flex-wrap:wrap;gap:1.5rem}
.footer-info p{margin-bottom:.25rem;font-size:.9rem}
.footer-info a{color:var(--bg)}
.footer-nav{display:flex;flex-direction:column;gap:.5rem}
.footer-nav a{color:var(--bg);text-decoration:none;font-size:.9rem}
.footer-nav a:hover{text-decoration:underline}

/* MOBILE */
@media(max-width:640px){
    nav{justify-content:space-between}
    nav ul{order:3;width:100%;justify-content:center;gap:1rem}
    .hero h1{font-size:1.5rem}
    .directions{grid-template-columns:1fr}
    table{font-size:.85rem}
    th,td{padding:.5rem .75rem}
}
