:root{
  --green-900:#13371a;
  --green-800:#1b5e20;
  --green-700:#2e7d32;
  --green-600:#388e3c;
  --green-500:#4caf50;
  --lime:#7cc242;
  --ink:#1d2421;
  --muted:#5d6b63;
  --bg:#ffffff;
  --bg-soft:#f4f7f2;
  --line:#e3eadf;
  --shadow:0 18px 50px -20px rgba(20,60,25,.35);
  --radius:18px;
  --container:1180px;
  --ff-head:"Montserrat","Inter",system-ui,sans-serif;
  --ff-body:"Inter",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--ff-body);
  color:var(--ink);
  background:var(--bg);
  line-height:1.65;
  font-size:17px;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 22px}

h1,h2,h3{font-family:var(--ff-head);line-height:1.15;letter-spacing:-.02em;color:var(--green-900)}
h2{font-size:clamp(1.8rem,3.4vw,2.7rem);font-weight:800}
h3{font-size:1.2rem;font-weight:700}
.kicker{display:inline-block;font-family:var(--ff-head);font-weight:700;font-size:.82rem;letter-spacing:.14em;text-transform:uppercase;color:var(--green-600);margin-bottom:.5rem}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  font-family:var(--ff-head);font-weight:700;font-size:.98rem;
  padding:.8rem 1.4rem;border-radius:999px;border:2px solid transparent;
  cursor:pointer;transition:transform .15s ease,box-shadow .2s ease,background .2s ease,color .2s ease;
  white-space:nowrap;
}
.btn .ico{width:20px;height:20px;fill:currentColor}
.btn:hover{transform:translateY(-2px)}
.btn-lg{padding:1rem 1.7rem;font-size:1.05rem}
.btn-primary{background:var(--green-700);color:#fff;box-shadow:0 12px 26px -12px rgba(46,125,50,.8)}
.btn-primary:hover{background:var(--green-800)}
.btn-call{background:#ff7a18;color:#fff;box-shadow:0 12px 26px -10px rgba(255,122,24,.75)}
.btn-call:hover{background:#f06a05}
.btn-ghost{background:rgba(255,255,255,.12);color:#fff;border-color:rgba(255,255,255,.55);backdrop-filter:blur(4px)}
.btn-ghost:hover{background:rgba(255,255,255,.22)}

/* Header */
.site-header{
  position:sticky;top:0;z-index:60;
  background:rgba(255,255,255,.9);
  backdrop-filter:saturate(160%) blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{display:flex;align-items:center;gap:1rem;height:72px}
.brand{display:flex;align-items:center;gap:.6rem;font-family:var(--ff-head);font-weight:600;font-size:1.25rem;color:var(--green-900)}
.brand-text strong{font-weight:800;color:var(--green-700)}
.brand-mark{width:38px;height:38px;display:grid;place-items:center;background:var(--green-800);border-radius:11px}
.brand-mark svg{width:24px;height:24px;fill:none;stroke:var(--lime);stroke-width:3;stroke-linecap:round;stroke-linejoin:round}
.nav{margin-left:auto;display:flex;gap:1.6rem}
.nav a{font-weight:600;font-size:.97rem;color:var(--ink);position:relative;padding:.3rem 0}
.nav a::after{content:"";position:absolute;left:0;bottom:-2px;width:0;height:2px;background:var(--green-600);transition:width .2s ease}
.nav a:hover{color:var(--green-700)}
.nav a:hover::after{width:100%}
.header-call{margin-left:.4rem}
.menu-toggle{display:none;flex-direction:column;gap:5px;background:none;border:0;cursor:pointer;padding:8px}
.menu-toggle span{width:26px;height:3px;border-radius:3px;background:var(--green-900);transition:.25s}

/* Hero */
.hero{position:relative;min-height:92vh;display:flex;align-items:center;color:#fff;overflow:hidden}
.hero-bg{position:absolute;inset:0;background-size:cover;background-position:center;transform:scale(1.05)}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(115deg,rgba(13,55,26,.92) 0%,rgba(20,80,30,.62) 48%,rgba(20,80,30,.25) 100%)}
.hero-content{position:relative;max-width:720px;padding-top:48px;padding-bottom:48px}
.eyebrow{display:inline-block;font-family:var(--ff-head);font-weight:700;letter-spacing:.12em;text-transform:uppercase;font-size:.8rem;background:rgba(124,194,66,.22);border:1px solid rgba(124,194,66,.5);color:#dff0c8;padding:.4rem .9rem;border-radius:999px;margin-bottom:1.2rem}
.hero h1{color:#fff;font-size:clamp(2.3rem,5.6vw,4rem);font-weight:800;margin-bottom:1rem}
.hero h1 .hl{color:var(--lime)}
.hero .lead{font-size:clamp(1.05rem,2vw,1.25rem);color:#eaf3e4;max-width:600px;margin-bottom:1.8rem}
.hero-actions{display:flex;flex-wrap:wrap;gap:.9rem;margin-bottom:2rem}
.hero-badges{list-style:none;display:flex;flex-wrap:wrap;gap:1.4rem;font-size:.95rem;color:#e7f2e0}
.hero-badges li{display:flex;align-items:center;gap:.45rem}
.hero-badges strong{color:var(--lime)}
.hero-badges li::before{content:"✓";color:var(--lime);font-weight:800}

/* Sections */
.section{padding:84px 0}
.section-alt{background:var(--bg-soft)}
.section-head{max-width:680px;margin:0 auto 52px;text-align:center}
.section-head p{color:var(--muted);margin-top:.6rem}
.section-head.light h2,.section-head.light .kicker{color:#fff}
.section-head.light .kicker{color:var(--lime)}

/* Services grid */
.grid{display:grid;gap:24px}
.services{grid-template-columns:repeat(3,1fr)}
.card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:32px 28px;transition:transform .2s ease,box-shadow .25s ease,border-color .2s;
}
.card:hover{transform:translateY(-6px);box-shadow:var(--shadow);border-color:transparent}
.card-ico{width:56px;height:56px;display:grid;place-items:center;border-radius:14px;background:linear-gradient(140deg,var(--green-600),var(--lime));margin-bottom:1.1rem}
.card-ico svg{width:30px;height:30px;fill:none;stroke:#fff;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.card h3{margin-bottom:.5rem}
.card p{color:var(--muted);font-size:.98rem}

/* About */
.about{display:grid;grid-template-columns:1fr 1fr;gap:54px;align-items:center}
.about-media{position:relative}
.about-media img{border-radius:var(--radius);box-shadow:var(--shadow);aspect-ratio:4/3;object-fit:cover;width:100%}
.about-badge{position:absolute;left:-14px;bottom:-18px;background:#fff;border:1px solid var(--line);border-radius:14px;padding:14px 18px;box-shadow:var(--shadow);display:flex;flex-direction:column}
.about-badge strong{font-family:var(--ff-head);color:var(--green-700)}
.about-badge span{font-size:.85rem;color:var(--muted)}
.about-text h2{margin:.3rem 0 1rem}
.about-text p{color:var(--muted);margin-bottom:1.3rem}
.ticks{list-style:none;display:grid;gap:.7rem;margin-bottom:1.7rem}
.ticks li{position:relative;padding-left:2rem;font-weight:500}
.ticks li::before{content:"";position:absolute;left:0;top:3px;width:20px;height:20px;border-radius:50%;background:var(--green-600) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/13px no-repeat}

/* Gallery */
.gallery{display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:200px;gap:16px}
.g-item{position:relative;overflow:hidden;border-radius:14px;cursor:pointer}
.g-item img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.g-item::after{content:attr(data-cap);position:absolute;left:0;right:0;bottom:0;padding:24px 14px 12px;font-size:.85rem;font-weight:600;color:#fff;background:linear-gradient(transparent,rgba(13,55,26,.85));opacity:0;transform:translateY(8px);transition:.25s}
.g-item:hover img{transform:scale(1.08)}
.g-item:hover::after{opacity:1;transform:translateY(0)}
.g-tall{grid-row:span 2}
.g-wide{grid-column:span 2}

/* Why us */
.section-green{background:linear-gradient(150deg,var(--green-800),var(--green-900));color:#fff}
.features{grid-template-columns:repeat(4,1fr)}
.feature{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:var(--radius);padding:28px 24px;transition:.2s}
.feature:hover{background:rgba(255,255,255,.1);transform:translateY(-5px)}
.feat-num{font-family:var(--ff-head);font-weight:800;font-size:1.5rem;color:var(--lime)}
.feature h3{color:#fff;margin:.6rem 0 .4rem}
.feature p{color:#cfe0c6;font-size:.95rem}

/* CTA banner */
.cta-banner{background:var(--lime);background:linear-gradient(120deg,#7cc242,#5aa72f)}
.cta-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:46px 22px;flex-wrap:wrap}
.cta-inner h2{color:var(--green-900)}
.cta-inner p{color:#1f4a14;font-weight:500;margin-top:.3rem}

/* Contact */
.contact{display:grid;grid-template-columns:1fr 1.1fr;gap:34px;align-items:stretch}
.contact-cards{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.info-card{display:flex;align-items:center;gap:14px;background:#fff;border:1px solid var(--line);border-radius:14px;padding:18px;transition:.2s}
.info-card:hover{border-color:var(--green-500);box-shadow:var(--shadow);transform:translateY(-3px)}
.info-ico{flex:none;width:46px;height:46px;display:grid;place-items:center;border-radius:12px;background:var(--bg-soft)}
.info-ico svg{width:24px;height:24px;fill:none;stroke:var(--green-700);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.info-label{display:block;font-size:.78rem;text-transform:uppercase;letter-spacing:.08em;color:var(--muted)}
.info-card strong{font-family:var(--ff-head);color:var(--green-900);font-size:.98rem;word-break:break-word}
.contact-map{border-radius:var(--radius);overflow:hidden;border:1px solid var(--line);min-height:340px;box-shadow:var(--shadow)}
.contact-map iframe{width:100%;height:100%;min-height:340px;border:0;display:block}

/* Service areas */
.areas{margin-top:46px;text-align:center}
.areas h3{font-size:1.3rem}
.areas p{color:var(--muted);margin:.5rem 0 1.2rem}
.area-chips{list-style:none;display:flex;flex-wrap:wrap;justify-content:center;gap:10px}
.area-chips li{font-family:var(--ff-head);font-weight:600;font-size:.92rem;color:var(--green-800);background:var(--bg-soft);border:1px solid var(--line);padding:.5rem 1rem;border-radius:999px;transition:.2s}
.area-chips li:hover{background:var(--green-700);color:#fff;border-color:var(--green-700)}

/* Footer */
.site-footer{background:var(--green-900);color:#cfe0c6;padding-top:48px}
.footer-inner{display:flex;justify-content:space-between;gap:30px;flex-wrap:wrap;padding-bottom:28px}
.footer-brand{max-width:360px}
.footer-brand .brand{color:#fff;margin-bottom:.7rem}
.footer-brand .brand-text{color:#fff}
.footer-brand p{color:#a9c2a0;font-size:.95rem}
.footer-nav{display:flex;flex-wrap:wrap;gap:1.3rem;align-items:center}
.footer-nav a{font-weight:600;color:#dcebd2;color:#cfe0c6;transition:.2s}
.footer-nav a:hover{color:var(--lime)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding:18px 22px;font-size:.85rem;color:#90ab87}

/* Floating call */
.fab-call{position:fixed;right:18px;bottom:18px;z-index:70;width:60px;height:60px;border-radius:50%;background:#ff7a18;display:none;align-items:center;justify-content:center;box-shadow:0 14px 30px -8px rgba(255,122,24,.8);animation:pulse 2s infinite}
.fab-call svg{width:28px;height:28px;fill:#fff}
@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(255,122,24,.55)}70%{box-shadow:0 0 0 16px rgba(255,122,24,0)}100%{box-shadow:0 0 0 0 rgba(255,122,24,0)}}

/* Lightbox */
.lightbox{position:fixed;inset:0;z-index:100;background:rgba(8,20,10,.94);display:none;align-items:center;justify-content:center;padding:30px}
.lightbox.open{display:flex}
.lb-figure{max-width:min(1000px,92vw);max-height:88vh;text-align:center}
.lb-figure img{max-width:100%;max-height:80vh;border-radius:10px;margin:0 auto}
.lb-figure figcaption{color:#dff0c8;margin-top:.8rem;font-weight:600}
.lb-close{position:absolute;top:18px;right:24px;background:none;border:0;color:#fff;font-size:2.6rem;line-height:1;cursor:pointer}
.lb-nav{position:absolute;top:50%;transform:translateY(-50%);background:rgba(255,255,255,.12);border:0;color:#fff;font-size:2.4rem;width:54px;height:54px;border-radius:50%;cursor:pointer;transition:.2s}
.lb-nav:hover{background:rgba(255,255,255,.25)}
.lb-prev{left:18px}.lb-next{right:18px}

/* Reveal animation */
.reveal{opacity:0;transform:translateY(26px);transition:opacity .6s ease,transform .6s ease}
.reveal.in{opacity:1;transform:none}

/* Responsive */
@media (max-width:980px){
  .services{grid-template-columns:repeat(2,1fr)}
  .features{grid-template-columns:repeat(2,1fr)}
  .about{grid-template-columns:1fr;gap:38px}
  .about-media{order:-1}
  .contact{grid-template-columns:1fr}
  .gallery{grid-template-columns:repeat(2,1fr);grid-auto-rows:170px}
  .g-wide{grid-column:span 2}
  .g-tall{grid-row:span 1}
}
@media (max-width:760px){
  .nav{position:fixed;inset:72px 0 auto 0;flex-direction:column;background:#fff;gap:0;padding:8px 22px 22px;border-bottom:1px solid var(--line);box-shadow:var(--shadow);transform:translateY(-130%);transition:transform .3s ease;margin-left:0}
  .nav.open{transform:translateY(0)}
  .nav a{padding:.85rem 0;border-bottom:1px solid var(--line);width:100%}
  .nav a::after{display:none}
  .header-call span{display:none}
  .header-call{padding:.7rem;width:44px;height:44px}
  .header-call .ico{margin:0}
  .menu-toggle{display:flex;margin-left:auto}
  .menu-toggle.active span:nth-child(1){transform:translateY(8px) rotate(45deg)}
  .menu-toggle.active span:nth-child(2){opacity:0}
  .menu-toggle.active span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}
  .nav{margin-left:0}
  .fab-call{display:flex}
  .section{padding:62px 0}
  .hero{min-height:88vh}
  .cta-inner{flex-direction:column;text-align:center;align-items:center}
}
@media (max-width:480px){
  .services,.features,.contact-cards{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr 1fr}
}
