/* GreenTech Imports — shared styles. Desktop layout follows the approved PNG designs (935px mockups, scaled x1.4). */

@font-face{font-family:"Merriweather";font-weight:700;font-style:normal;font-display:swap;src:url(../fonts/merriweather-latin-700-normal.woff2) format("woff2")}
@font-face{font-family:"Merriweather";font-weight:900;font-style:normal;font-display:swap;src:url(../fonts/merriweather-latin-900-normal.woff2) format("woff2")}
@font-face{font-family:"Inter";font-weight:400;font-style:normal;font-display:swap;src:url(../fonts/inter-latin-400-normal.woff2) format("woff2")}
@font-face{font-family:"Inter";font-weight:500;font-style:normal;font-display:swap;src:url(../fonts/inter-latin-500-normal.woff2) format("woff2")}
@font-face{font-family:"Inter";font-weight:600;font-style:normal;font-display:swap;src:url(../fonts/inter-latin-600-normal.woff2) format("woff2")}
@font-face{font-family:"Inter";font-weight:700;font-style:normal;font-display:swap;src:url(../fonts/inter-latin-700-normal.woff2) format("woff2")}
@font-face{font-family:"Caveat";font-weight:600;font-style:normal;font-display:swap;src:url(../fonts/caveat-latin-600-normal.woff2) format("woff2")}
@font-face{font-family:"Caveat";font-weight:700;font-style:normal;font-display:swap;src:url(../fonts/caveat-latin-700-normal.woff2) format("woff2")}

:root{
  --green:#07882f;
  --green-hover:#06742a;
  --green-deep:#0c3a21;
  --ink:#0f3322;
  --text:#34423a;
  --muted:#56635b;
  --cream:#f9f9f6;
  --mint:#eef3ea;
  --mint-2:#f1f8f0;
  --band:#03381c;
  --footer:#02371c;
  --line:#e3e8e2;
  --serif:"Merriweather",Georgia,"Times New Roman",serif;
  --sans:"Inter",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  --script:"Caveat","Segoe Print","Bradley Hand",cursive;
  --wrap:1310px;
  --shadow:0 4px 16px rgba(20,60,35,.08);
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{margin:0;font-family:var(--sans);color:var(--text);background:#fff;font-size:17px;line-height:1.5;overflow-x:hidden}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit;color:inherit}
h1,h2,h3,h4{font-family:var(--serif);color:var(--ink);margin:0;font-weight:700;letter-spacing:-.01em}
p{margin:0}
ul{list-style:none;margin:0;padding:0}
.ico{width:1em;height:1em;flex:none;display:inline-block;vertical-align:middle}
:focus-visible{outline:3px solid #f2c200;outline-offset:2px;border-radius:4px}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 25px}

/* ---------- Buttons ---------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:12px;border-radius:11px;font-weight:600;cursor:pointer;border:2px solid transparent;transition:background-color .15s,color .15s,border-color .15s;white-space:nowrap}
.btn .ico{font-size:1.35em}
.btn .ico-arrow{font-size:1.05em}
.btn-green{background:var(--green);color:#fff}
.btn-green:hover{background:var(--green-hover)}
.btn-outline{background:#fff;color:var(--green);border-color:var(--green)}
.btn-outline:hover{background:#f0f8f2}
.btn-lg{height:66px;padding:0 28px;font-size:20px}

/* ---------- Header ---------- */
.site-header{position:relative;z-index:30;background:#fff;height:123px}
.header-leaves{position:absolute;left:0;top:0;width:56px;height:196px;object-fit:cover;object-position:left top;pointer-events:none;z-index:1}
.header-inner{height:100%;display:flex;align-items:center;position:relative}
.brand{display:flex;align-items:center;gap:18px;position:relative;z-index:2}
.brand-logo{width:140px;height:140px;margin-top:17px;border-radius:50%;filter:drop-shadow(0 3px 6px rgba(0,0,0,.18))}
.brand-text{display:flex;flex-direction:column;align-items:center;margin-top:-4px}
.brand-name{font-family:var(--serif);font-weight:900;font-size:30px;color:var(--ink);line-height:1.15;letter-spacing:-.015em}
.brand-tag{font-size:16px;color:#28372e;font-weight:500;margin-top:4px;word-spacing:2px}
.brand-tag i{font-style:normal;margin:0 6px}
.main-nav{margin-left:auto;margin-right:56px}
.main-nav>ul{display:flex;gap:44px;align-items:center}
.main-nav a,.nav-drop-btn{font-size:16px;font-weight:500;color:#2d3a32;display:inline-flex;align-items:center;gap:6px;padding:10px 0;position:relative;background:none;border:0;cursor:pointer}
.main-nav a:hover,.nav-drop-btn:hover{color:var(--green)}
.main-nav .active>a,.main-nav .active>.nav-drop-btn{color:var(--green);font-weight:600}
.main-nav .active>a::after,.main-nav .active>.nav-drop-btn::after{content:"";position:absolute;left:0;right:0;bottom:-2px;height:3px;border-radius:2px;background:var(--green)}
.nav-drop-btn .ico{font-size:14px}
.has-drop{position:relative}
.nav-drop-btn a{padding:0}
.dropdown{position:absolute;top:calc(100% + 10px);left:-18px;min-width:230px;background:#fff;border-radius:12px;box-shadow:0 12px 32px rgba(10,50,25,.16);padding:10px;opacity:0;visibility:hidden;transform:translateY(-6px);transition:opacity .15s,transform .15s,visibility .15s}
.has-drop:hover .dropdown,.has-drop.open .dropdown{opacity:1;visibility:visible;transform:none}
.dropdown a{display:block;padding:9px 12px;border-radius:8px;font-size:15px}
.dropdown a:hover{background:var(--mint-2)}
.dropdown a::after{display:none}
.btn-quote{display:flex;align-items:center;gap:16px;background:var(--green);color:#fff;border-radius:11px;height:70px;padding:0 26px 0 22px;min-width:258px}
.btn-quote:hover{background:var(--green-hover)}
.btn-quote>.ico{font-size:36px}
.btn-quote span{display:flex;flex-direction:column;line-height:1.15}
.btn-quote strong{font-size:23px;font-weight:600}
.btn-quote small{font-size:14px;font-weight:600;display:flex;align-items:center;gap:6px}
.btn-quote small .ico{font-size:15px}
.nav-toggle{display:none;margin-left:auto;background:none;border:0;width:48px;height:48px;padding:10px;cursor:pointer;color:var(--ink)}
.nav-toggle span{display:block;height:3px;border-radius:2px;background:currentColor;margin:6px 0;transition:transform .2s,opacity .2s}
.nav-open .nav-toggle span:nth-child(1){transform:translateY(9px) rotate(45deg)}
.nav-open .nav-toggle span:nth-child(2){opacity:0}
.nav-open .nav-toggle span:nth-child(3){transform:translateY(-9px) rotate(-45deg)}

/* ---------- Hero ---------- */
.hero{position:relative;overflow:hidden;background:linear-gradient(180deg,#fdfefc 0%,#f6f8f3 100%)}
.hero-media{position:absolute;top:0;right:0;bottom:0;width:52%;
  -webkit-mask-image:linear-gradient(90deg,transparent 0,#000 24%);mask-image:linear-gradient(90deg,transparent 0,#000 24%)}
.hero-media img{width:100%;height:100%;object-fit:cover;object-position:left center}
.hero .wrap{position:relative;z-index:2;padding-left:45px}
.hero-content{display:flex;flex-direction:column;justify-content:center}
.hero h1{font-weight:900;font-size:57px;line-height:1.06;letter-spacing:-.02em;color:var(--green-deep)}
.hero-lead{font-size:24px;line-height:1.3;color:#2c3a33;margin-top:12px;max-width:560px}
.features{display:flex;margin-top:28px}
.feature{display:flex;flex-direction:column;align-items:center;text-align:center;padding:0 22px;border-left:1.5px solid #c9d3cb;font-size:15px;font-weight:500;line-height:1.25;color:#24332b}
.feature:first-child{border-left:0;padding-left:0}
.feature .ico{font-size:38px;color:var(--green);margin-bottom:10px}
.hero-actions{display:flex;gap:23px;margin-top:30px}
.hero-actions .btn-green{min-width:270px}
.hero-actions .btn-outline{min-width:290px}

.hero-home{height:504px}
.hero-home .hero-content{height:504px;padding-bottom:4px}
.hero-home .features{margin-top:36px}
.hero-home .feature:first-child{padding-left:0;margin-left:-6px}

.hero-about{height:427px}
.hero-about .hero-media{width:53%}
.hero-about .hero-content{height:427px;padding-top:12px}
.hero-about h1{font-size:60px;line-height:1.02}
.hero-about .hero-lead{font-size:23.5px;max-width:500px;color:#27403a}
.hero-about .features{margin-top:22px}

.hero-products{height:358px}
.hero-products .hero-media{width:45%;-webkit-mask-image:linear-gradient(90deg,transparent 0,#000 16%);mask-image:linear-gradient(90deg,transparent 0,#000 16%)}
.hero-products .hero-content{height:358px;padding-top:6px}
.hero-products h1{font-size:57px}
.hero-products .hero-lead{max-width:560px}
.hero-products .features{margin-top:30px;gap:0}
.hero-products .feature{border-left:0;padding:0 32px}

.hero-gallery{height:374px}
.hero-gallery .hero-media{width:57.5%}
.hero-gallery .hero-content{height:374px;padding-bottom:40px}
.hero-gallery .hero-lead{font-size:22px;max-width:520px}

.hero-contact{height:395px}
.hero-contact .hero-media{width:58.5%}
.hero-contact .hero-content{height:395px;padding-top:10px}
.hero-contact h1{font-size:62px}
.hero-contact .hero-lead{font-size:23px;line-height:1.24;max-width:500px;color:#1f2f27}
.hero-contact .features{margin-top:18px}

/* ---------- Section headings ---------- */
.sec-head{text-align:center}
.sec-head h2{font-size:41px;line-height:1.2;font-weight:900;color:var(--green-deep)}
.sec-head p{font-size:19px;color:#35423b;margin-top:6px}
.leaf-rule{display:flex;align-items:center;justify-content:center;gap:10px;color:var(--green);margin:4px auto 10px}
.leaf-rule::before,.leaf-rule::after{content:"";width:64px;height:2px;background:var(--green)}
.leaf-rule .ico{font-size:26px}
.leaf-inline{color:var(--green);font-size:24px;vertical-align:-3px}

/* ---------- Category cards ---------- */
.categories{background:var(--cream);padding:24px 0 38px}
.cat-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:15px;margin-top:36px}
.cat-card{background:#fff;border-radius:8px;overflow:hidden;box-shadow:0 2px 10px rgba(30,60,40,.07);display:block;transition:box-shadow .15s}
.cat-card:hover{box-shadow:0 8px 22px rgba(30,60,40,.14)}
.cat-card img{width:100%;aspect-ratio:140/160;object-fit:cover}
.cat-card div{padding:14px 8px 16px;text-align:center}
.cat-card h3{font-size:18px;line-height:1.3;color:#15271d}
.cat-card p{font-size:13px;line-height:1.5;color:#46534b;margin-top:4px}

/* ---------- Why / values ---------- */
.why{position:relative;background:var(--mint);padding:18px 0 32px;overflow:hidden}
.side-leaves{position:absolute;top:0;height:100%;width:54px;object-fit:cover;pointer-events:none}
.side-leaves.l{left:0;object-position:left center}
.side-leaves.r{right:0;object-position:right center}
.why .sec-head h2{font-size:37px}
.why .sec-head p{font-size:17px;margin-top:2px}
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:15px;margin:26px 29px 0}
.why-card{background:#fbfcfa;border-radius:8px;text-align:center;padding:10px 14px 24px}
.icon-circle{width:73px;height:73px;border-radius:50%;background:var(--green);color:#fff;display:grid;place-items:center;margin:0 auto 10px}
.icon-circle .ico{font-size:40px}
.why-card h3{font-size:21px;line-height:1.3;color:#15271d}
.why-card p{font-size:17px;line-height:1.4;color:#3b4740;margin-top:8px}

/* ---------- Ideas strip ---------- */
.ideas{padding:20px 0 16px;background:#fff}
.ideas .sec-head h2{font-size:37px}
.ideas .sec-head p{font-size:18px;margin-top:2px}
.ideas-strip{display:grid;grid-template-columns:repeat(6,1fr);gap:7px;padding:0 8px;margin-top:18px}
.ideas-strip img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:4px}

/* ---------- CTA band ---------- */
.cta-band{position:relative;background:radial-gradient(ellipse at 50% 60%,#07482a 0%,var(--band) 70%);color:#fff;overflow:hidden;height:218px}
.cta-band .cta-left{position:absolute;left:0;top:0;height:100%;width:105px;object-fit:cover;object-position:left center}
.cta-band .cta-right{position:absolute;right:0;top:0;height:100%;width:413px;object-fit:cover;object-position:right center;
  -webkit-mask-image:linear-gradient(90deg,transparent 0,#000 14%);mask-image:linear-gradient(90deg,transparent 0,#000 14%)}
.cta-script{position:absolute;left:108px;top:24px;font-family:var(--script);font-weight:600;font-size:43px;line-height:1.02;transform:rotate(-8deg);transform-origin:left top;color:#fff}
.cta-script span{display:block}
.cta-script span:nth-child(2){padding-left:24px}
.cta-script span:nth-child(3){padding-left:62px}
.cta-script .ico{font-size:.95em;color:#7ed957;vertical-align:-4px;margin-left:8px}
.cta-center{position:relative;z-index:2;text-align:center;padding-top:22px;max-width:560px;margin:0 auto}
.cta-center h2{color:#fff;font-size:29px;font-weight:700}
.cta-center p{font-size:17px;line-height:1.4;margin:8px auto 0;max-width:430px;color:#e7f1ea}
.cta-actions{display:flex;justify-content:center;gap:20px;margin-top:18px}
.cta-actions .btn{height:53px;min-width:244px;font-size:16px}
.cta-actions .btn-green{border-color:#fff;background:#0a8a31}
.cta-actions .btn-white{background:#fff;color:#122b1c}
.cta-actions .btn-white:hover{background:#eef6f0}

/* ---------- Footer ---------- */
.site-footer{background:var(--footer);color:#fff}
.footer-main{display:grid;grid-template-columns:432px 230px 280px 1fr;padding:30px 25px 26px 50px}
.footer-brand{display:grid;grid-template-columns:118px 1fr;gap:18px;align-items:start}
.footer-brand img{width:118px;height:118px;border-radius:50%}
.footer-brand h2{color:#fff;font-size:24px;margin-top:10px}
.footer-brand .tag{font-size:16px;margin-top:4px;word-spacing:2px}
.footer-brand .tag i{font-style:normal;margin:0 6px}
.footer-brand p.desc{font-size:13px;line-height:1.6;color:#e2ece5;margin-top:10px;max-width:250px}
.socials{display:flex;gap:10px;margin-top:14px}
.socials a{width:30px;height:30px;border-radius:50%;background:#fff;color:var(--footer);display:grid;place-items:center}
.socials a .ico{font-size:17px}
.socials a:hover{background:#d8f0de}
.footer-col{padding:14px 0 0 0}
.footer-col h3{font-family:var(--sans);font-weight:700;color:#fff;font-size:17px;letter-spacing:0;margin-bottom:10px}
.footer-col li a{font-size:16.5px;line-height:1.85;color:#f2f7f3}
.footer-col li a:hover{text-decoration:underline}
.footer-col.links{padding-left:48px}
.footer-col.cats{padding-left:62px;border-left:1px solid rgba(255,255,255,.18)}
.footer-col.contact{padding-left:84px;border-left:1px solid rgba(255,255,255,.18)}
.footer-col.contact li a{display:flex;align-items:center;gap:22px;font-size:18px;line-height:1;padding:10px 0}
.footer-col.contact li a .ico{font-size:30px}
.footer-bar{border-top:1px solid rgba(255,255,255,.14);background:var(--footer)}
.footer-bar .wrap{display:flex;justify-content:space-between;align-items:center;height:70px;padding-left:55px;padding-right:62px}
.footer-bar p{font-size:15px}
.footer-bar .motto{font-size:15px;letter-spacing:.14em;display:flex;align-items:center;gap:6px}
.footer-bar .motto i{font-style:normal;margin:0 8px}
.footer-bar .motto .ico{font-size:28px;color:#7ed957;margin-left:12px;letter-spacing:0}

/* ---------- About ---------- */
.story{padding:26px 0 26px;background:#fff}
.story .wrap{display:grid;grid-template-columns:505px 1fr;gap:50px;align-items:start;padding-left:56px;padding-right:48px}
.eyebrow{display:flex;align-items:center;gap:10px;color:var(--green);font-weight:700;font-size:15px;letter-spacing:.02em;text-transform:uppercase}
.eyebrow::after{content:"";width:44px;height:2px;background:var(--green)}
.eyebrow.pre::after{display:none}
.story h2{font-size:40px;line-height:1.15;font-weight:900;color:var(--green-deep);margin-top:12px}
.story p{font-size:18.5px;line-height:1.39;color:#3a463f;margin-top:10px}
.story .btn{margin-top:22px;height:50px;padding:0 30px;font-size:20px;gap:14px}
.story .btn .ico-arrow{margin-left:26px}
.story-img{border-radius:12px;width:100%;aspect-ratio:499/304;object-fit:cover;margin-top:1px;box-shadow:var(--shadow)}
.mv{position:relative;background:var(--mint);padding:17px 0 20px;overflow:hidden}
.mv-grid{display:grid;grid-template-columns:1fr 1fr;gap:25px;margin:0 70px}
.mv-card{background:#fff;border-radius:8px;display:grid;grid-template-columns:90px 1fr;gap:26px;padding:16px 22px 20px 28px;box-shadow:0 2px 10px rgba(30,60,40,.05)}
.mv-card .icon-circle{width:90px;height:90px;margin:0}
.mv-card .icon-circle .ico{font-size:52px}
.mv-card .eyebrow{font-size:13px;margin-top:8px}
.mv-card .eyebrow::after{display:none}
.mv-card h3{font-size:24px;margin-top:6px}
.mv-card p{font-size:15.5px;line-height:1.53;color:#3b4740;margin-top:8px}
.values{background:#fbfdf9}
.values .why-card h3{margin-top:4px}
.values .why-card p{font-size:17px;line-height:1.33}
.range{background:#fff;padding:12px 0 22px}
.range .cat-grid{margin-top:22px;gap:14px}
.range .cat-card img{aspect-ratio:138/134}

/* ---------- Products ---------- */
.products-cats{padding-top:12px;padding-bottom:26px;background:#fff}
.products-cats .cat-grid{margin-top:26px;padding:0 9px}
.products-cats .cat-card img{aspect-ratio:137/141}
.catalog{padding:10px 0 20px;background:#fff}
.catalog-head{position:relative}
.search{position:absolute;right:9px;top:-8px;width:228px;height:40px;display:flex;align-items:center;gap:10px;background:#eef0f1;border-radius:9px;padding:0 14px;color:#2b3a31}
.search input{border:0;background:transparent;outline:0;width:100%;font-size:14px}
.search input::placeholder{color:#5b6660}
.search:focus-within{outline:3px solid #f2c200}
.product-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:20px 19px;margin-top:22px;padding:0 9px}
.product-card{background:#fff;border-radius:6px;box-shadow:0 2px 12px rgba(30,60,40,.09);overflow:hidden;text-align:center;padding-bottom:12px}
.product-card img{width:100%;aspect-ratio:167/109;object-fit:cover}
.product-card h3{font-size:17px;margin-top:12px}
.product-card p{font-size:13px;line-height:1.45;color:#3e4a43;margin:5px 10px 0;min-height:38px}
.product-card .btn{height:32px;min-width:143px;font-size:13.5px;font-weight:600;border-radius:5px;margin-top:10px;gap:8px;padding:0 12px}
.product-card .btn .ico{font-size:14px}
.product-card .btn-outline{border-width:1.5px}
.empty-note{text-align:center;color:var(--muted);padding:30px 0;display:none}
.featured{position:relative;background:var(--mint);padding:14px 0 22px;overflow:hidden}
.featured .sec-head h2{font-size:36px}
.featured .sec-head p{font-size:16px;margin-top:2px}
.feat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:15px;margin:18px 36px 0}
.feat-card{background:#fff;border-radius:6px;overflow:hidden;text-align:center;padding-bottom:10px;box-shadow:0 2px 8px rgba(30,60,40,.06)}
.feat-card img{width:100%;aspect-ratio:211/102;object-fit:cover}
.feat-card h3{font-size:15.5px;margin-top:10px}
.feat-card p{font-size:12.5px;color:#3e4a43;margin-top:2px}
.wholesale{background:#fff;padding:14px 0 14px}
.wholesale-bar{display:grid;grid-template-columns:1fr repeat(4,163px);align-items:center;background:#f4f7f7;border-radius:8px;min-height:100px;margin:0 17px;padding:10px 20px 10px 40px}
.ws-intro{display:grid;grid-template-columns:80px 1fr;gap:34px;align-items:center;padding-right:30px}
.ws-intro .ico{font-size:84px;color:var(--green)}
.ws-intro h3{font-size:23px}
.ws-intro p{font-size:13.5px;line-height:1.45;margin-top:6px;color:#3b4740;max-width:370px}
.ws-item{text-align:center;border-left:1.5px solid #d5ddd7;font-size:15px;line-height:1.3;color:#24332b;padding:4px 6px}
.ws-item .ico{font-size:34px;color:var(--green);display:block;margin:0 auto 4px}

/* ---------- Gallery ---------- */
.filters{background:#fff;padding:18px 0 0}
.filter-row{display:flex;justify-content:space-between;gap:12px;padding:0 20px}
.chip{display:inline-flex;align-items:center;gap:10px;height:50px;padding:0 20px;border-radius:28px;background:#fff;border:1px solid #e5e9e6;box-shadow:0 2px 8px rgba(20,50,30,.08);font-size:14px;font-weight:600;color:#1f2e25;cursor:pointer;white-space:nowrap}
.chip .ico{font-size:22px;color:#2d3a33}
.chip.gift{color:var(--green)}
.chip.gift .ico{color:var(--green)}
.chip:hover{border-color:var(--green)}
.chip[aria-pressed="true"]{background:var(--green);color:#fff;border-color:var(--green)}
.chip[aria-pressed="true"] .ico{color:#fff}
.chip.all{min-width:70px;justify-content:center;padding:0 22px}
.gallery-sec{padding:22px 0 16px;background:#fff}
.gallery-sec .sec-head h2{font-size:37px}
.gallery-sec .sec-head p{font-size:16px;margin-top:6px}
.gallery-sec .leaf-rule{margin-top:6px}
.gallery-sec .leaf-rule::before,.gallery-sec .leaf-rule::after{width:44px}
.gallery-sec .leaf-rule .ico{font-size:20px}
.gallery-grid{display:flex;flex-wrap:wrap;gap:14px;margin:6px 5px 0}
.g-item{flex-grow:var(--w);flex-basis:calc(var(--w) * 1px);height:224px;border-radius:5px;overflow:hidden;margin:0;cursor:zoom-in;background:#eef2ee}
.g-item.short{height:217px}
.g-item img{width:100%;height:100%;object-fit:cover;transition:transform .3s}
.g-item:hover img{transform:scale(1.03)}
.g-item[hidden]{display:none}
.setups{position:relative;background:var(--mint);padding:14px 0 22px;overflow:hidden}
.setups .sec-head h2{font-size:35px}
.setups .sec-head p{font-size:16px;margin-top:4px}
.setup-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:15px;margin:18px 12px 0}
.setup-card{background:#fff;border-radius:6px;overflow:hidden;text-align:center;padding-bottom:12px;box-shadow:0 2px 8px rgba(30,60,40,.06)}
.setup-card img{width:100%;aspect-ratio:168/104;object-fit:cover}
.setup-card h3{font-size:17px;margin-top:10px}
.setup-card p{font-size:13px;line-height:1.4;color:#3e4a43;margin-top:4px}
.testimonials{position:relative;background:#fff;padding:14px 0 16px;overflow:hidden}
.testimonials .sec-head h2{font-size:33px}
.testimonials .sec-head p{font-size:16px;margin-top:4px}
.t-card{display:grid;grid-template-columns:190px 1fr 434px;align-items:center;gap:20px;background:#fff;border-radius:12px;box-shadow:0 4px 22px rgba(20,60,35,.10);margin:18px 67px 0;padding:18px 16px 18px 30px;position:relative;z-index:2}
.t-card>img{width:136px;height:136px;border-radius:50%;object-fit:cover;justify-self:center}
.t-card blockquote{margin:0;position:relative;padding-left:44px}
.t-card blockquote .ico{position:absolute;left:0;top:-4px;font-size:30px;color:var(--green)}
.t-card blockquote p{font-size:17px;line-height:1.55;color:#2b3831}
.t-card footer{font-size:13px;margin-top:18px;color:#2b3831}
.t-card footer small{display:block;font-size:12px;color:#4a564f}
.t-photos{display:grid;grid-template-columns:1fr 1fr;gap:15px}
.t-photos img{width:100%;aspect-ratio:144/98;object-fit:cover;border-radius:6px}
.lightbox{position:fixed;inset:0;background:rgba(3,25,12,.88);display:none;align-items:center;justify-content:center;z-index:100;padding:24px}
.lightbox.open{display:flex}
.lightbox img{max-height:90vh;max-width:min(92vw,1000px);border-radius:8px}
.lightbox button{position:absolute;top:16px;right:20px;background:#fff;border:0;border-radius:50%;width:44px;height:44px;font-size:26px;cursor:pointer;line-height:1}

/* ---------- Contact ---------- */
.contact-main{padding:28px 0 20px;background:#fff}
.contact-grid{display:grid;grid-template-columns:712px 1fr;gap:22px;padding:0 17px}
.form-card{border:1px solid #eceeec;border-radius:10px;padding:18px 20px 28px;box-shadow:0 2px 12px rgba(20,50,30,.05)}
.form-card h2{font-size:39px;font-weight:900;color:var(--green-deep)}
.form-card>p{font-size:17px;color:#3b4740;margin-top:6px}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px 22px;margin-top:18px}
.field{display:flex;flex-direction:column;gap:9px}
.field.full{grid-column:1/-1}
.field label{font-size:17px;font-weight:500;color:#1f2e25}
.field input,.field select,.field textarea{width:100%;height:48px;border:1px solid #cfd6d1;border-radius:6px;padding:0 14px;font-size:16px;background:#fff;color:#1f2e25}
.field textarea{height:112px;padding:12px 14px;resize:vertical}
.field select{appearance:none;-webkit-appearance:none;background:#fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23222' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 16px center/18px}
.field input::placeholder,.field textarea::placeholder{color:#8a948e}
.field input:focus,.field select:focus,.field textarea:focus{outline:0;border-color:var(--green);box-shadow:0 0 0 3px rgba(7,136,47,.15)}
.field .err{font-size:13.5px;color:#b3261e;display:none}
.field.invalid input,.field.invalid select,.field.invalid textarea{border-color:#b3261e}
.field.invalid .err{display:block}
.form-card .btn-send{width:100%;height:61px;margin-top:22px;font-size:20px;font-weight:500;border-radius:7px}
.form-card .btn-send .ico{font-size:28px}
.form-status{margin-top:14px;font-size:15.5px;border-radius:8px;padding:12px 14px;display:none}
.form-status.show{display:block;background:var(--mint-2);color:#1c4a2c;border:1px solid #cfe5d4}
.reach{background:var(--mint-2);border-radius:10px;padding:18px 17px 20px}
.reach h2{font-size:31px;font-weight:900;color:var(--green-deep)}
.reach>p{font-size:17px;color:#3b4740;margin-top:6px}
.reach-list{display:flex;flex-direction:column;gap:14px;margin-top:20px}
.reach-item{display:grid;grid-template-columns:74px 1fr 24px;gap:24px;align-items:center;background:#fdfcfd;border-radius:8px;padding:20px 20px 20px 20px;min-height:128px;transition:box-shadow .15s}
.reach-item:hover{box-shadow:0 6px 18px rgba(20,60,35,.12)}
.reach-item .circle{width:74px;height:74px;border-radius:50%;display:grid;place-items:center;color:#fff;background:var(--green)}
.reach-item .circle .ico{font-size:42px}
.reach-item .circle.fb{background:#fff;color:#1877f2}
.reach-item .circle.fb .ico{font-size:74px}
.reach-item h3{font-size:21px}
.reach-item p{font-size:15px;line-height:1.5;color:#3b4740;margin-top:6px}
.reach-item>.ico{font-size:24px;color:var(--green)}
.steps-sec{padding:16px 0 22px;background:#fff}
.steps-sec .sec-head h2{font-size:37px}
.steps-sec .sec-head p{font-size:18px}
.steps{display:grid;grid-template-columns:1fr 34px 1fr 34px 1fr;align-items:start;margin:26px 50px 0 66px}
.step{display:grid;grid-template-columns:98px 1fr;gap:28px}
.step .circle{width:98px;height:98px;border-radius:50%;background:#e6f5e9;color:var(--green);display:grid;place-items:center;margin-top:6px}
.step .circle .ico{font-size:52px}
.step .num{width:36px;height:36px;border-radius:50%;background:var(--green);color:#fff;display:grid;place-items:center;font-weight:600;font-size:18px}
.step h3{font-size:21px;margin-top:10px}
.step p{font-size:17px;line-height:1.4;color:#3b4740;margin-top:4px}
.step-arrow{color:#8c9a90;font-size:28px;margin-top:42px}
.faq-sec{padding:14px 0 24px;background:#fff}
.faq-sec .sec-head h2{font-size:37px}
.faq-sec .sec-head p{font-size:18px}
.faq-grid{display:grid;grid-template-columns:603px 1fr;gap:27px;padding:0 17px 0 15px;margin-top:22px;align-items:start}
.faq-list{display:flex;flex-direction:column;gap:13px}
.faq-item{border:1px solid #dfe4e0;border-radius:7px;background:#fff}
.faq-item button{width:100%;height:48px;display:flex;align-items:center;justify-content:space-between;background:none;border:0;padding:0 20px 0 18px;font-size:18px;font-weight:600;color:#1a2a20;cursor:pointer;text-align:left}
.faq-item button .ico{font-size:22px;transition:transform .2s}
.faq-item button[aria-expanded="true"] .ico{transform:rotate(180deg)}
.faq-item .answer{padding:0 18px 16px;font-size:16px;line-height:1.5;color:#3b4740}
.faq-img{width:100%;aspect-ratio:430/199;object-fit:cover;border-radius:10px}

/* ---------- Notice (placeholder links) ---------- */
.toast{position:fixed;left:50%;bottom:24px;transform:translateX(-50%) translateY(20px);background:#0c3a21;color:#fff;padding:14px 20px;border-radius:10px;font-size:15px;box-shadow:0 10px 30px rgba(0,0,0,.25);opacity:0;pointer-events:none;transition:opacity .2s,transform .2s;z-index:120;max-width:90vw;text-align:center}
.toast.show{opacity:1;transform:translateX(-50%)}

/* =========================================================
   Responsive adaptation (same content, hierarchy and brand)
   ========================================================= */
@media (max-width:1320px){
  .main-nav{margin-right:28px}
  .main-nav>ul{gap:30px}
  .footer-main{grid-template-columns:1.6fr .8fr 1fr 1.2fr;padding-left:30px}
  .footer-col.cats{padding-left:36px}
  .footer-col.contact{padding-left:44px}
  .contact-grid{grid-template-columns:1.15fr 1fr}
  .faq-grid{grid-template-columns:1.1fr 1fr}
  .t-card{grid-template-columns:160px 1fr 360px;margin:18px 30px 0}
  .wholesale-bar{grid-template-columns:1fr repeat(4,130px);padding-left:24px}
  .ws-intro{gap:20px}
}
@media (max-width:1180px){
  .brand-name{font-size:25px}
  .brand-logo{width:118px;height:118px}
  .main-nav>ul{gap:22px}
  .btn-quote{min-width:0;padding:0 18px}
  .btn-quote strong{font-size:19px}
  .hero h1{font-size:48px}
  .hero-lead{font-size:20px}
  .hero-about h1{font-size:50px}
  .hero-contact h1{font-size:52px}
  .hero-home .hero-content{max-width:560px}
  .cta-script{font-size:34px;left:80px}
  .cta-band .cta-right{width:300px}
  .steps{margin:26px 10px 0}
  .step{grid-template-columns:76px 1fr;gap:16px}
  .step .circle{width:76px;height:76px}
  .step .circle .ico{font-size:40px}
  .wholesale-bar{grid-template-columns:1fr 1fr 1fr 1fr;row-gap:18px}
  .ws-intro{grid-column:1/-1;padding-right:0}
  .ws-item:nth-child(2){border-left:0}
  .story .wrap{grid-template-columns:1fr 1fr;padding-left:30px;padding-right:30px}
}
@media (max-width:1024px){
  .site-header{height:92px}
  .brand-logo{width:92px;height:92px;margin-top:10px}
  .brand-name{font-size:22px}
  .brand-tag{font-size:13px}
  .header-leaves{width:40px;height:140px}
  .nav-toggle{display:block}
  .btn-quote{margin-left:auto}
  .nav-toggle{margin-left:10px}
  .main-nav{position:absolute;top:100%;left:0;right:0;margin:0;background:#fff;box-shadow:0 14px 26px rgba(10,50,25,.14);display:none;padding:10px 25px 22px}
  .nav-open .main-nav{display:block}
  .main-nav>ul{flex-direction:column;align-items:stretch;gap:0}
  .main-nav>ul>li{border-bottom:1px solid var(--line)}
  .main-nav a,.nav-drop-btn{padding:14px 0;font-size:18px;width:100%}
  .main-nav .active>a::after,.main-nav .active>.nav-drop-btn::after{display:none}
  .has-drop .dropdown{position:static;box-shadow:none;opacity:1;visibility:visible;transform:none;display:none;padding:0 0 10px 12px;min-width:0}
  .has-drop.open .dropdown{display:block}
  .has-drop:hover .dropdown{display:none}
  .has-drop.open:hover .dropdown{display:block}
  .hero{height:auto!important}
  .hero-media,.hero-about .hero-media,.hero-gallery .hero-media,.hero-contact .hero-media,.hero-products .hero-media{position:relative;width:100%;height:320px;-webkit-mask-image:linear-gradient(180deg,transparent 0,#000 18%);mask-image:linear-gradient(180deg,transparent 0,#000 18%)}
  .hero .wrap{padding-left:25px}
  .hero-content,.hero-home .hero-content,.hero-about .hero-content,.hero-gallery .hero-content,.hero-contact .hero-content,.hero-products .hero-content{height:auto!important;padding:34px 0 28px;max-width:none}
  .hero{display:flex;flex-direction:column}
  .hero .wrap{order:1;width:100%}
  .hero-media{order:2}
  .cat-grid{grid-template-columns:repeat(3,1fr)}
  .why-grid{grid-template-columns:repeat(2,1fr);margin:24px 20px 0}
  .ideas-strip{grid-template-columns:repeat(3,1fr)}
  .product-grid{grid-template-columns:repeat(3,1fr)}
  .feat-grid{grid-template-columns:repeat(2,1fr);margin:18px 20px 0}
  .setup-grid{grid-template-columns:repeat(3,1fr)}
  .search{position:static;margin:14px auto 0}
  .filter-row{flex-wrap:wrap;justify-content:center}
  .g-item{height:180px}
  .t-card{grid-template-columns:120px 1fr;margin:18px 10px 0}
  .t-card>img{width:110px;height:110px}
  .t-photos{grid-column:1/-1}
  .mv-grid{grid-template-columns:1fr;margin:0 30px}
  .story .wrap{grid-template-columns:1fr}
  .contact-grid,.faq-grid{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr;gap:22px;margin:22px 20px 0}
  .step-arrow{display:none}
  .cta-band{height:auto;padding:26px 0 30px}
  .cta-script{position:relative;left:auto;top:auto;transform:rotate(-4deg);transform-origin:center;text-align:center;font-size:34px;margin:0 auto 14px;width:max-content}
  .cta-script span:nth-child(n){padding-left:0;display:inline}
  .cta-script span::after{content:" "}
  .cta-band .cta-right{opacity:.25}
  .cta-center{padding:0 20px}
  .footer-main{grid-template-columns:1fr 1fr;row-gap:26px;padding:30px 25px}
  .footer-brand{grid-column:1/-1}
  .footer-col.links{padding-left:0}
  .footer-col.cats{border-left:0;padding-left:0}
  .footer-col.contact{grid-column:1/-1;border-left:0;padding-left:0;border-top:1px solid rgba(255,255,255,.18);padding-top:18px}
  .footer-col.contact ul{display:flex;flex-wrap:wrap;gap:0 30px}
  .footer-bar .wrap{padding:0 25px}
}
@media (max-width:768px){
  body{font-size:16px}
  .btn-quote{height:52px;padding:0 12px;gap:10px}
  .btn-quote>.ico{font-size:28px}
  .btn-quote strong{font-size:16px}
  .btn-quote small{font-size:11.5px}
  .hero h1,.hero-about h1,.hero-contact h1,.hero-products h1{font-size:40px}
  .hero-lead,.hero-about .hero-lead,.hero-contact .hero-lead,.hero-gallery .hero-lead{font-size:18px}
  .features{flex-wrap:wrap;row-gap:14px}
  .feature{padding:0 14px;font-size:14px}
  .hero-actions{flex-direction:column;gap:12px}
  .hero-actions .btn{min-width:0;width:100%;height:58px;font-size:18px}
  .sec-head h2,.why .sec-head h2,.ideas .sec-head h2,.featured .sec-head h2,.gallery-sec .sec-head h2,.setups .sec-head h2,.testimonials .sec-head h2,.steps-sec .sec-head h2,.faq-sec .sec-head h2{font-size:29px}
  .sec-head p{font-size:16px}
  .cat-grid{grid-template-columns:repeat(2,1fr)}
  .product-grid{grid-template-columns:repeat(2,1fr);gap:14px;padding:0}
  .setup-grid{grid-template-columns:repeat(2,1fr);margin:18px 0 0}
  .gallery-grid{gap:10px}
  .g-item{flex-basis:calc(50% - 5px)!important;flex-grow:0;height:160px}
  .chip{height:42px;padding:0 14px;font-size:13px}
  .story h2{font-size:30px}
  .story p{font-size:17px}
  .form-card h2{font-size:30px}
  .form-grid{grid-template-columns:1fr}
  .reach h2{font-size:26px}
  .reach-item{grid-template-columns:58px 1fr 20px;gap:14px;min-height:0}
  .reach-item .circle{width:58px;height:58px}
  .reach-item .circle .ico{font-size:32px}
  .reach-item .circle.fb .ico{font-size:58px}
  .faq-item button{font-size:16px;height:auto;min-height:48px;padding:10px 16px}
  .t-card{grid-template-columns:1fr;text-align:left;padding:20px}
  .t-card>img{justify-self:start}
  .cta-actions{flex-direction:column;align-items:center;gap:12px}
  .cta-actions .btn{width:100%;max-width:320px}
  .footer-bar .wrap{flex-direction:column;justify-content:center;gap:6px;height:auto;padding:16px 25px}
}
@media (max-width:430px){
  .wrap{padding:0 16px}
  .hero .wrap{padding-left:16px}
  .brand{gap:10px}
  .brand-logo{width:70px;height:70px;margin-top:6px}
  .site-header{height:80px}
  .brand-name{font-size:18px}
  .brand-tag{font-size:11px}
  .brand-tag i{margin:0 3px}
  .btn-quote small{display:none}
  .btn-quote{height:46px}
  .btn-quote>.ico{font-size:24px}
  .hero h1,.hero-about h1,.hero-contact h1,.hero-products h1{font-size:33px}
  .hero-media,.hero-about .hero-media,.hero-gallery .hero-media,.hero-contact .hero-media,.hero-products .hero-media{height:240px}
  .feature{padding:0 10px;font-size:12.5px}
  .feature .ico{font-size:30px}
  .why-grid,.feat-grid{grid-template-columns:1fr}
  .ideas-strip{grid-template-columns:repeat(2,1fr)}
  .cat-grid{gap:10px}
  .product-card .btn{min-width:0;width:calc(100% - 20px)}
  .mv-card{grid-template-columns:1fr;gap:10px}
  .step{grid-template-columns:64px 1fr}
  .step .circle{width:64px;height:64px}
  .step .circle .ico{font-size:34px}
  .footer-main{grid-template-columns:1fr}
  .footer-brand{grid-template-columns:84px 1fr}
  .footer-brand img{width:84px;height:84px}
}
@media (max-width:360px){
  .brand-tag{display:none}
  .btn-quote strong{font-size:14px}
}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{transition:none!important;animation:none!important;scroll-behavior:auto!important}
}
/* dropdown caret button (keyboard + touch access to the Products menu) */
.nav-drop-btn{padding:0}
.nav-drop-btn>a{padding:10px 0}
.nav-drop-btn .caret{background:none;border:0;padding:6px 2px;cursor:pointer;color:inherit;display:inline-flex}
.nav-drop-btn .caret .ico{font-size:14px}
@media (max-width:1024px){.nav-drop-btn{display:flex;justify-content:space-between}.nav-drop-btn>a{padding:14px 0;width:auto}.nav-drop-btn .caret{padding:10px}.nav-drop-btn .caret .ico{font-size:20px}}
/* calibration pass against the PNGs */
.feature .ico{font-size:42px;margin-bottom:9px}
.feature{font-size:15.5px}
.why{padding:14px 0 24px}
.why-grid{margin-top:22px}
.why-card{padding:10px 14px 20px}
.why-card p{margin-top:6px}
.cta-center p{max-width:480px}
.cta-script{font-size:46px}
.g-item{flex:1 1 calc((100% - 56px) * var(--w) / 860)}
@media (max-width:768px){.g-item{flex:1 1 calc(50% - 5px)!important}}
/* layering + mobile fixes */
.why .wrap,.mv .mv-grid,.featured .wrap,.setups .wrap,.testimonials .wrap{position:relative;z-index:1}
@media (max-width:1024px){.header-leaves{display:none}}
@media (max-width:768px){
  .side-leaves{display:none}
  .features{display:grid;grid-template-columns:repeat(4,1fr);gap:0}
  .feature,.hero-products .feature{padding:0 4px;border-left:1.5px solid #c9d3cb}
  .feature:first-child,.hero-products .feature{border-left:0}
  .hero-products .feature+.feature{border-left:1.5px solid #c9d3cb}
  .hero-home .feature:first-child{margin-left:0}
  .cta-script{width:auto;white-space:normal;font-size:32px;display:block;padding:0 16px}
}
@media (max-width:430px){
  .brand-name{font-size:17px;white-space:nowrap}
  .brand-tag{font-size:10.5px;white-space:nowrap}
  .feature{font-size:11.5px}
  .feature .ico{font-size:28px}
  .cta-script{font-size:28px}
}
@media (max-width:430px){
  .brand{gap:8px;min-width:0}
  .brand-logo{width:58px;height:58px;margin-top:4px}
  .brand-text{align-items:flex-start;margin-top:0}
  .brand-name{font-size:16px;white-space:normal;line-height:1.1;max-width:92px}
  .brand-tag{display:none}
  .btn-quote{padding:0 12px;gap:8px;height:44px;border-radius:9px}
  .btn-quote strong{font-size:14.5px;white-space:nowrap}
  .btn-quote>.ico{font-size:22px}
  .nav-toggle{width:42px;padding:8px;margin-left:6px}
  .site-header{height:72px}
}
@media (max-width:370px){
  .brand-name{font-size:14.5px;max-width:84px}
  .brand-logo{width:52px;height:52px}
  .btn-quote{padding:0 10px}
  .btn-quote strong{font-size:13px}
  .btn-quote>.ico{font-size:20px}
}
