:root{
      --green:#355d3a;
      --green-dark:#27422a;
      --green-soft:#4c7450;
      --text:#1f2937;
      --muted:#6b7280;
      --line:#e5e7eb;
      --bg:#f7f7f4;
      --white:#ffffff;
      --shadow:0 18px 40px rgba(0,0,0,.10);
      --shadow-strong:0 24px 60px rgba(0,0,0,.16);
      --max:1240px;
      --header-offset:110px;
    }

    *{margin:0;padding:0;box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      font-family:Arial, Helvetica, sans-serif;
      background:var(--bg);
      color:var(--text);
      line-height:1.6;
      overflow-x:hidden;
    }

    a{text-decoration:none;color:inherit}
    img{display:block;max-width:100%}
    button,input,select,textarea{font:inherit}
    .container{width:min(var(--max),92%);margin:auto}

    section[id], div[id]{
      scroll-margin-top: var(--header-offset);
    }

    .topbar{
      background:var(--green);
      color:#fff;
      padding:11px 0;
    }
    .topbar-inner{
      display:flex;
      justify-content:flex-end;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
    }
    .topbar-call{
      font-size:15px;
      letter-spacing:.3px;
    }
    .topbar-call strong{
      font-weight:500;
      border-bottom:1px solid rgba(255,255,255,.55);
    }
    .topbar-btn{
      background:#fff;
      color:var(--green-dark);
      padding:10px 20px;
      font-weight:700;
      letter-spacing:.7px;
      border-radius:4px;
      border:1px solid rgba(0,0,0,.06);
      transition:.25s ease;
      font-size:13px;
      display:inline-block;
    }
    .topbar-btn:hover{transform:translateY(-2px)}

    header{
      background:#fff;
      border-bottom:1px solid var(--line);
      position:sticky;
      top:0;
      z-index:1000;
    }
    .nav{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:20px;
      padding:12px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
      flex:1;
    }
    .brand-logo{
      width:84px;
      height:84px;
      object-fit:contain;
      flex-shrink:0;
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      justify-content:center;
      min-width:0;
    }
    .brand-text h1{
      font-size:22px;
      line-height:1.02;
      color:#243324;
      margin-bottom:3px;
      font-weight:700;
    }
    .brand-text span{
      display:block;
      font-size:9px;
      letter-spacing:2.4px;
      text-transform:uppercase;
      color:#607063;
      line-height:1.25;
    }

    .menu-toggle{
      display:none;
      width:44px;
      height:44px;
      border:none;
      background:#f3f4f6;
      border-radius:12px;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      flex-shrink:0;
      position:relative;
    }
    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after{
      content:"";
      display:block;
      width:22px;
      height:2px;
      background:#1f2937;
      border-radius:999px;
      transition:.25s ease;
      position:absolute;
    }
    .menu-toggle span{opacity:1}
    .menu-toggle::before{transform:translateY(-7px)}
    .menu-toggle::after{transform:translateY(7px)}
    .menu-toggle.active span{opacity:0}
    .menu-toggle.active::before{transform:rotate(45deg)}
    .menu-toggle.active::after{transform:rotate(-45deg)}

    .nav-wrap{
      display:flex;
      align-items:center;
    }

    nav ul{
      list-style:none;
      display:flex;
      gap:22px;
      align-items:center;
      font-weight:600;
      color:#1f2937;
    }
    nav a{
      position:relative;
      font-size:13px;
      letter-spacing:.5px;
      transition:.25s ease;
      padding:7px 0;
    }
    nav a::after{
      content:"";
      position:absolute;
      left:0;
      bottom:0;
      width:0;
      height:2px;
      background:var(--green);
      transition:.25s ease;
    }
    nav a:hover{color:var(--green)}
    nav a:hover::after{width:100%}

    .nav-social{
      display:flex;
      gap:10px;
      margin-left:12px;
      align-items:center;
    }
    .nav-social a{
      width:36px;
      height:36px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      background:#f3f4f6;
      border:1px solid #dfe3e8;
      transition:.25s ease;
    }
    .nav-social a:hover{
      background:var(--green);
      transform:translateY(-2px);
    }
    .nav-social a:hover svg{
      fill:#fff;
    }
    .nav-social svg{
      width:18px;
      height:18px;
      fill:#243324;
      display:block;
    }

    .hero{
      position:relative;
      min-height:600px;
      overflow:hidden;
      color:#fff;
      background:#1f2d1f;
    }
    .hero-slides{
      position:absolute;
      inset:0;
      z-index:1;
    }
    .hero-slide{
      position:absolute;
      inset:0;
      opacity:0;
      transition:opacity 1s ease;
    }
    .hero-slide.active{opacity:1}
    .hero-slide img{
      width:100%;
      height:100%;
      object-fit:cover;
    }

    .hero-overlay{
      position:absolute;
      inset:0;
      background:
        linear-gradient(to right, rgba(20,30,20,.70) 0%, rgba(20,30,20,.56) 42%, rgba(20,30,20,.28) 100%),
        linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,.28));
      z-index:2;
    }

    .hero-content{
      position:relative;
      z-index:3;
      width:100%;
      padding:48px 0 80px;
    }

    .hero-inner{
      display:grid;
      grid-template-columns:1.18fr .82fr;
      gap:42px;
      align-items:end;
      min-height:430px;
    }

    .hero-left{
      max-width:700px;
      padding-top:10px;
    }

    .eyebrow{
      display:inline-block;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.24);
      border-radius:999px;
      padding:9px 15px;
      font-size:11px;
      letter-spacing:1px;
      text-transform:uppercase;
      margin-bottom:18px;
      color:#fff;
    }

    .hero h2{
      font-family:Georgia, "Times New Roman", serif;
      font-size:clamp(34px,4.8vw,58px);
      line-height:1.03;
      margin-bottom:14px;
      color:#fff;
      max-width:700px;
    }

    .hero .subline{
      font-family:Georgia, "Times New Roman", serif;
      font-size:clamp(18px,2.5vw,28px);
      color:#fff;
      margin-bottom:16px;
      line-height:1.15;
    }

    .hero p{
      max-width:620px;
      font-size:17px;
      color:#f3f4f6;
      margin-bottom:24px;
    }

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

    .btn-call{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:#9a3d12;
      color:#fff;
      font-weight:700;
      padding:14px 28px;
      border-radius:4px;
      min-width:150px;
      box-shadow:0 10px 22px rgba(0,0,0,.18);
      transition:.25s ease;
    }
    .btn-call:hover{transform:translateY(-2px)}

    .hero-form-wrap{
      display:flex;
      justify-content:flex-end;
      align-items:flex-end;
      padding-top:90px;
    }

    .quote-card{
      width:100%;
      max-width:360px;
      background:rgba(255,255,255,.97);
      color:var(--text);
      padding:24px 20px 20px;
      box-shadow:0 24px 55px rgba(0,0,0,.20);
      margin-top:90px;
      position:relative;
      z-index:5;
    }

    .quote-card h3{
      font-size:17px;
      line-height:1.2;
      margin-bottom:6px;
      color:#8a3a17;
      text-transform:uppercase;
      font-family:Georgia, "Times New Roman", serif;
    }
    .quote-card h3 em{font-style:italic}
    .quote-card p{
      color:#8b5e43;
      font-size:13px;
      margin-bottom:14px;
      font-style:italic;
    }

    .form-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:10px;
    }

    .input, select, textarea{
      width:100%;
      padding:12px 13px;
      border:1px solid #cfd4d8;
      background:#fff;
      font-size:14px;
      outline:none;
      border-radius:0;
    }
    textarea{
      min-height:105px;
      resize:vertical;
    }

    .submit-btn{
      width:100%;
      border:none;
      padding:13px 16px;
      background:var(--green);
      color:#fff;
      font-weight:700;
      cursor:pointer;
      margin-top:8px;
      font-size:14px;
      border-radius:0;
      transition:.25s ease;
    }
    .submit-btn:hover{background:var(--green-dark)}
    .submit-btn.loading,
    .submit-btn:disabled{
      opacity:.85;
      cursor:not-allowed;
    }

    .form-message{
      margin-top:12px;
      padding:12px 14px;
      border-radius:10px;
      font-size:14px;
      font-weight:600;
      display:none;
    }
    .form-message.show{
      display:block;
    }
    .form-message.success{
      background:#eaf7ee;
      color:#1f6b35;
      border:1px solid #b9dfc4;
    }
    .form-message.error{
      background:#fff1f1;
      color:#a12626;
      border:1px solid #efc3c3;
    }

    .hero-dots{
      position:absolute;
      left:50%;
      bottom:22px;
      transform:translateX(-50%);
      z-index:4;
      display:flex;
      gap:9px;
    }
    .hero-dot{
      width:10px;
      height:10px;
      border-radius:50%;
      background:rgba(255,255,255,.45);
      border:none;
      cursor:pointer;
    }
    .hero-dot.active{background:#fff}

    .feature-band{
      background:linear-gradient(135deg,var(--green-dark),var(--green));
      color:#fff;
      padding:42px 0;
    }
    .feature-grid{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:18px;
      text-align:center;
    }
    .feature-item{padding:10px}
    .feature-icon{
      font-size:32px;
      margin-bottom:10px;
    }
    .feature-item h3{
      font-size:15px;
      font-weight:500;
      line-height:1.35;
    }

    .section{padding:84px 0}
    .section-head{
      text-align:center;
      margin-bottom:40px;
    }
    .section-head h2{
      font-size:clamp(30px,4vw,46px);
      color:#203020;
      margin-bottom:10px;
      line-height:1.1;
    }
    .section-head p{
      max-width:760px;
      margin:auto;
      color:var(--muted);
      font-size:15px;
    }

    .process-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:24px;
    }
    .card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:24px;
      box-shadow:var(--shadow);
      padding:30px;
    }
    .card h3{
      font-size:26px;
      line-height:1.2;
      color:#243324;
      margin-bottom:12px;
    }
    .card p{color:var(--muted)}
    .tick-list{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
      margin-top:20px;
    }
    .tick{
      padding:13px 14px;
      background:#f4f6f1;
      border:1px solid #e7eadf;
      border-radius:16px;
      font-weight:700;
      color:#344334;
      font-size:14px;
    }

    .service-grid{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:18px;
    }
    .service{
      background:#fff;
      border:1px solid var(--line);
      border-radius:22px;
      padding:22px;
      box-shadow:var(--shadow);
      transition:transform .28s ease, box-shadow .28s ease;
    }
    .service:hover{
      transform:translateY(-6px);
      box-shadow:0 20px 42px rgba(0,0,0,.12);
    }
    .service-icon-box{
      width:60px;
      height:60px;
      border-radius:18px;
      background:linear-gradient(135deg,var(--green-dark),var(--green-soft));
      margin-bottom:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
    }
    .service-icon-box svg{
      width:28px;
      height:28px;
      stroke:#fff;
      fill:none;
      stroke-width:2;
      stroke-linecap:round;
      stroke-linejoin:round;
    }
    .service h3{
      font-size:19px;
      margin-bottom:8px;
      color:#223022;
      line-height:1.2;
    }
    .service p{
      color:var(--muted);
      font-size:14px;
    }

    .gallery-stage{
      position:relative;
      min-height:900px;
      perspective:1200px;
    }
    .gallery-grid{
      position:relative;
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:18px;
      align-items:start;
    }
    .gallery-card{
      position:relative;
      border-radius:22px;
      overflow:hidden;
      box-shadow:var(--shadow);
      border:1px solid var(--line);
      background:#fff;
      cursor:pointer;
      opacity:0;
      transform:translate(var(--tx,0), var(--ty,40px)) scale(.88) rotate(var(--r,0deg));
      transition:transform .35s ease, box-shadow .35s ease;
      animation:scatterIn 1.1s cubic-bezier(.19,1,.22,1) forwards;
    }
    .gallery-card:nth-child(1){--tx:-120px;--ty:120px;--r:-9deg;animation-delay:.05s}
    .gallery-card:nth-child(2){--tx:140px;--ty:-70px;--r:8deg;animation-delay:.12s}
    .gallery-card:nth-child(3){--tx:-80px;--ty:150px;--r:-7deg;animation-delay:.19s}
    .gallery-card:nth-child(4){--tx:110px;--ty:90px;--r:7deg;animation-delay:.26s}
    .gallery-card:nth-child(5){--tx:-150px;--ty:-80px;--r:-10deg;animation-delay:.33s}
    .gallery-card:nth-child(6){--tx:130px;--ty:140px;--r:8deg;animation-delay:.40s}
    .gallery-card:nth-child(7){--tx:-110px;--ty:100px;--r:-8deg;animation-delay:.47s}
    .gallery-card:nth-child(8){--tx:90px;--ty:-90px;--r:7deg;animation-delay:.54s}
    .gallery-card:nth-child(9){--tx:-140px;--ty:60px;--r:-9deg;animation-delay:.61s}
    .gallery-card:nth-child(10){--tx:120px;--ty:120px;--r:8deg;animation-delay:.68s}

    @keyframes scatterIn{
      0%{
        opacity:0;
        transform:translate(var(--tx), var(--ty)) scale(.82) rotate(var(--r));
      }
      70%{opacity:1}
      100%{
        opacity:1;
        transform:translate(0,0) scale(1) rotate(0);
      }
    }

    .gallery-card:hover{
      transform:translateY(-8px) scale(1.02) !important;
      box-shadow:var(--shadow-strong);
      z-index:2;
    }

    .gallery-card img{
      width:100%;
      height:260px;
      object-fit:cover;
      transition:transform .8s ease;
      animation:softZoom 9s ease-in-out infinite alternate;
    }
    @keyframes softZoom{
      0%{transform:scale(1)}
      50%{transform:scale(1.05)}
      100%{transform:scale(1.02)}
    }
    .gallery-card:hover img{transform:scale(1.1)}

    .gallery-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,.08));
      display:flex;
      align-items:flex-end;
      padding:16px;
    }
    .gallery-overlay h3{
      color:#fff;
      font-size:18px;
      line-height:1.2;
      margin-bottom:4px;
    }
    .gallery-overlay p{
      color:#e5e7eb;
      font-size:13px;
    }

    .lightbox{
      position:fixed;
      inset:0;
      background:rgba(0,0,0,.9);
      display:none;
      align-items:center;
      justify-content:center;
      z-index:3000;
      padding:20px;
    }
    .lightbox.active{display:flex}
    .lightbox img{
      max-width:min(1200px,96vw);
      max-height:88vh;
      border-radius:14px;
      box-shadow:0 20px 50px rgba(0,0,0,.35);
    }
    .lightbox-close{
      position:absolute;
      top:18px;
      right:18px;
      width:46px;
      height:46px;
      border:none;
      border-radius:50%;
      background:#fff;
      color:#111827;
      font-size:24px;
      cursor:pointer;
    }

    .cta{
      background:linear-gradient(135deg,var(--green-dark),var(--green));
      color:#fff;
      padding:40px;
      border-radius:30px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:20px;
      flex-wrap:wrap;
      box-shadow:0 24px 50px rgba(0,0,0,.10);
    }
    .cta h3{
      font-size:34px;
      line-height:1.08;
    }
    .cta p{
      color:#edf4eb;
      max-width:720px;
      margin-top:10px;
    }
    .cta-btn{
      background:#fff;
      color:var(--green-dark);
      padding:14px 24px;
      border-radius:999px;
      font-weight:700;
      display:inline-block;
    }

    footer{
      background:#1f2d21;
      color:#d9e4d7;
      margin-top:24px;
      padding:40px 0 20px;
    }
    .footer-top{
      display:grid;
      grid-template-columns:1.6fr 1fr 1fr;
      gap:28px;
      align-items:center;
      padding-bottom:20px;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:14px;
    }
    .footer-logo{
      width:84px;
      height:84px;
      object-fit:contain;
      flex-shrink:0;
    }
    .footer-brand-text h3{
      color:#fff;
      font-size:22px;
      margin-bottom:5px;
      line-height:1.05;
    }
    .footer-brand-text p{
      color:#c9d6c7;
      font-size:13px;
    }
    .footer-col h4{
      color:#fff;
      font-size:16px;
      margin-bottom:10px;
    }
    .footer-col p,
    .footer-col a{
      color:#d9e4d7;
      display:block;
      margin-bottom:7px;
      font-size:13px;
    }

    .footer-social{
      display:flex;
      gap:10px;
      margin-top:12px;
    }
    .footer-social a{
      width:40px;
      height:40px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.14);
    }
    .footer-social svg{
      width:18px;
      height:18px;
      fill:#fff;
      display:block;
    }

    .footer-bottom{
      border-top:1px solid rgba(255,255,255,.08);
      padding-top:14px;
      font-size:12px;
      color:#c8d5c7;
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
    }

    .reveal{
      opacity:0;
      transform:translateY(24px);
      transition:opacity .75s ease, transform .75s ease;
    }
    .reveal.active{
      opacity:1;
      transform:none;
    }

    @media(max-width:1280px){
      .service-grid{grid-template-columns:repeat(4,1fr)}
      .gallery-grid{grid-template-columns:repeat(4,1fr)}
    }

    @media(max-width:1160px){
      .hero-inner{grid-template-columns:1fr 350px}
      .feature-grid{grid-template-columns:repeat(3,1fr)}
      .service-grid{grid-template-columns:repeat(3,1fr)}
      .gallery-grid{grid-template-columns:repeat(3,1fr)}
      .footer-top{grid-template-columns:1fr 1fr}
    }

    @media(max-width:980px){
      :root{ --header-offset:95px; }

      .nav{flex-wrap:wrap}
      .menu-toggle{display:flex}
      .nav-wrap{width:100%;display:block}
      nav{
        width:100%;
        display:none;
        padding-top:10px;
      }
      nav.open{display:block}
      nav ul{
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        background:#fff;
        border:1px solid var(--line);
        border-radius:16px;
        overflow:hidden;
      }
      nav li{width:100%}
      nav a{
        display:block;
        width:100%;
        padding:14px 18px;
        border-bottom:1px solid var(--line);
      }
      nav li:last-child a{border-bottom:none}

      .nav-social{
        margin:12px 0 0 18px;
      }

      .hero{min-height:auto}
      .hero-inner{
        grid-template-columns:1fr;
        gap:24px;
        min-height:auto;
      }
      .hero-form-wrap{
        justify-content:flex-start;
        padding-top:0;
      }
      .quote-card{
        max-width:100%;
        margin-top:16px;
      }
      .hero-content{
        padding:48px 0 82px;
      }

      .process-grid,
      .tick-list{
        grid-template-columns:1fr;
      }
      .feature-grid{grid-template-columns:1fr 1fr}
      .service-grid{grid-template-columns:repeat(2,1fr)}
      .footer-top{grid-template-columns:1fr}
      .hero h2{font-size:42px}
      .section{padding:72px 0}
      .gallery-grid{grid-template-columns:repeat(2,1fr)}
    }

    @media(max-width:640px){
      :root{ --header-offset:85px; }

      .brand-logo{
        width:74px;
        height:74px;
      }
      .brand-text h1{
        font-size:18px;
      }
      .brand-text span{
        font-size:8px;
        letter-spacing:1.4px;
      }
      .topbar-inner{
        justify-content:center;
      }
      .feature-grid{grid-template-columns:1fr}
      .service-grid{grid-template-columns:1fr}
      .gallery-grid{grid-template-columns:1fr}
      .hero h2{font-size:32px}
      .hero .subline{font-size:18px}
      .hero p{font-size:15px}
      .cta h3{font-size:26px}
      .topbar-call{font-size:14px}
      .topbar-btn{padding:9px 16px;font-size:12px}
      .quote-card{padding:20px 16px}
      .footer-brand{align-items:flex-start}
      .footer-logo{
        width:74px;
        height:74px;
      }
      .footer-brand-text h3{font-size:20px}
      .gallery-card img{height:230px}
    }
.service-icon-box span{font-size:24px;color:#fff;font-weight:700;}
