@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Outfit:wght@300;400;500;600&display=swap');
:root{
  --green:#2a5d38;
  --green-dark:#1e4630;
  --green-soft:#e8f0eb;
  --green-faint:rgba(42,93,56,.1);
  --text:#1a1a1a;
  --text-body:#4a4a4a;
  --text-muted:#6b6b6b;
  --bg:#ffffff;
  --bg-soft:#f6f6f6;
  --bg-band:#ebebeb;
  --border:#e5e5e5;
  --border-strong:#d0d0d0;
  --section-green:#e8f2ec;
}
*{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%}
body{font-family:'Outfit',sans-serif;background:var(--bg);color:var(--text);overflow-x:hidden;font-size:17px;line-height:1.55}
body.nav-menu-open{overflow:hidden;touch-action:none}
img{max-width:100%;height:auto}

.page{width:100%;background:var(--bg);min-height:100vh;display:flex;flex-direction:column}
.page-main{flex:1}

/* NAV */
.nav{position:relative;z-index:100;display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:nowrap;padding:1rem 2.5rem;background:var(--bg);border-bottom:1px solid var(--border)}
.nav-logo{display:flex;align-items:center;flex-shrink:0;z-index:2}
.nav-logo a{display:flex;line-height:0;border-radius:8px;overflow:visible;text-decoration:none;padding:4px 6px 4px 2px;margin:-4px -6px -4px -2px;transition:box-shadow .2s ease,transform .2s ease}
.nav-logo a:hover{box-shadow:0 4px 20px rgba(42,93,56,.12)}
.nav-logo a:focus-visible{outline:2px solid var(--green);outline-offset:4px;box-shadow:none}
.nav-logo img{height:clamp(54px,4.5vw,76px);width:auto;display:block;filter:drop-shadow(0 1px 2px rgba(0,0,0,.06))}
.nav-toggle{display:none;align-items:center;justify-content:center;min-width:48px;min-height:48px;width:48px;height:48px;margin:0;padding:0;border:none;border-radius:10px;background:transparent;color:var(--text);cursor:pointer;z-index:2;flex-shrink:0;-webkit-tap-highlight-color:transparent;touch-action:manipulation}
.nav-toggle:hover{background:var(--green-soft)}
.nav-toggle:active{background:var(--green-faint)}
.nav-toggle:focus-visible{outline:2px solid var(--green);outline-offset:2px}
.nav-toggle-box{width:24px;height:18px;position:relative;display:block}
.nav-toggle-bar{position:absolute;left:0;right:0;height:2.5px;background:currentColor;border-radius:2px;transition:transform .22s cubic-bezier(.4,0,.2,1),opacity .2s ease,top .22s cubic-bezier(.4,0,.2,1)}
.nav-toggle-bar:nth-child(1){top:0}
.nav-toggle-bar:nth-child(2){top:8px}
.nav-toggle-bar:nth-child(3){top:16px}
.nav.is-open .nav-toggle-bar:nth-child(1){top:8px;transform:rotate(45deg)}
.nav.is-open .nav-toggle-bar:nth-child(2){opacity:0;transform:scaleX(0)}
.nav.is-open .nav-toggle-bar:nth-child(3){top:8px;transform:rotate(-45deg)}
.nav.is-open .nav-toggle{background:var(--green-soft);color:var(--green)}
.nav-backdrop{display:none}
.nav-panel{display:flex;align-items:center;gap:2rem;flex-wrap:wrap;justify-content:flex-end;flex:1;min-width:0}
.nav-links{display:flex;gap:2rem;flex-wrap:wrap;align-items:center;justify-content:flex-end}
.nav-links a{color:var(--text-body);font-size:15px;font-weight:400;text-decoration:none;letter-spacing:.03em;padding:.35rem 0}
.nav-links a:hover{color:var(--green)}
.nav-links a.is-active{color:var(--green);font-weight:600}
.nav-cta{background:var(--green);color:#fff;padding:10px 22px;border-radius:6px;font-size:14px;font-weight:600;letter-spacing:.02em;text-decoration:none;display:inline-block;white-space:nowrap;flex-shrink:0}
.nav-cta:hover{background:var(--green-dark);filter:none}
.nav-cta:focus-visible{outline:2px solid var(--green);outline-offset:3px}

/* HERO — capped width so ultra-wide monitors don’t stretch two huge columns */
.hero{display:grid;grid-template-columns:1fr 1fr;min-height:0;background:var(--bg);max-width:min(1040px,100%);margin:0 auto;border-bottom:1px solid var(--border)}
.hero-left{padding:3rem 2rem 2.5rem;display:flex;flex-direction:column;justify-content:center;border-right:1px solid var(--border)}
.hero-tag{font-size:12px;letter-spacing:.15em;color:var(--green);text-transform:uppercase;margin-bottom:1.25rem;font-weight:500}
.hero-h1{font-family:'Playfair Display',serif;font-size:clamp(2.1rem,4.2vw + 1rem,48px);line-height:1.06;color:var(--text);margin:0 0 1.25rem;font-weight:400}
.hero-h1 em{color:var(--green);font-style:italic}
.hero-sub{font-size:17px;color:var(--text-body);line-height:1.65;max-width:28rem;margin-bottom:2rem;font-weight:300}
.hero-btns{display:flex;gap:1rem;flex-wrap:wrap}
.btn-green{background:var(--green);color:#fff;padding:14px 28px;border-radius:8px;font-size:15px;font-weight:600;text-decoration:none;display:inline-block}
.btn-ghost{border:1px solid var(--green);color:var(--green);padding:14px 28px;border-radius:8px;font-size:15px;text-decoration:none;display:inline-block;background:transparent}
.btn-green:hover{background:var(--green-dark);filter:none}
.btn-ghost:hover{background:var(--green-soft)}

.hero-right{padding:2.5rem 2rem 3rem;display:flex;flex-direction:column;justify-content:center;gap:1.5rem;background:var(--bg)}
.hero-visual{text-align:center;margin-bottom:0;line-height:0}
.hero-visual img{max-height:min(220px,38vw);width:auto;object-fit:contain}
.hero-stat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem 1.25rem;margin-bottom:0}
.hstat{border-bottom:1px solid var(--border);padding-bottom:1rem}
.hstat-num{font-family:'Playfair Display',serif;font-size:clamp(1.65rem,3vw + .75rem,36px);color:var(--text);line-height:1}
.hstat-num span{color:var(--green)}
.hstat-lbl{font-size:12px;color:var(--text-muted);text-transform:uppercase;letter-spacing:.08em;margin-top:.35rem;font-weight:500;line-height:1.35}
.hero-badge-row{display:flex;gap:.65rem;flex-wrap:wrap;justify-content:center}
.badge{background:var(--bg);border:1px solid var(--border);color:var(--text-muted);font-size:12px;padding:6px 12px;border-radius:4px;letter-spacing:.03em}

/* MARQUEE */
.marquee-strip{background:var(--bg-soft);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:.65rem 0;overflow:hidden;white-space:nowrap}
.marquee-inner{display:inline-block;animation:scroll 30s linear infinite}
.marquee-inner span{color:var(--green);font-size:13px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;margin:0 3rem}
@keyframes scroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* SECTION COMMONS */
.section{padding:4rem 2.5rem}
.band-white{background:var(--bg)}
.band-gray{background:var(--bg-soft)}
.band-green{background:var(--section-green)}
.band-green .proc-step{background:rgba(255,255,255,.72)}
.band-green .why-cell,.band-green .who-card{background:#fff}
.sec-tag{font-size:12px;letter-spacing:.15em;text-transform:uppercase;color:var(--green);font-weight:500;margin-bottom:.75rem}
.sec-h2{font-family:'Playfair Display',serif;font-size:clamp(1.75rem,2.5vw + 1rem,2.35rem);line-height:1.12;color:var(--green);margin:0 0 .5rem;font-weight:400}
.sec-h2 em{font-style:italic;color:var(--green)}
.sec-sub{font-size:17px;color:var(--text-body);line-height:1.65;max-width:40rem;font-weight:300}

/* WHY SECTION */
.why-section{padding:4rem 2.5rem;text-align:center}
.why-section .sec-tag{text-align:center}
.why-section .sec-h2{color:var(--green);text-align:center}
.why-section .sec-sub{color:var(--text-body);max-width:42rem;margin-left:auto;margin-right:auto}
.why-intro{background:var(--bg-band);border-radius:8px;padding:1.25rem 1.5rem;margin:1rem auto 0;max-width:42rem;text-align:center}
.why-intro p{font-size:17px;color:var(--text);line-height:1.65;font-weight:400;margin:0}
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:2.5rem;text-align:left}
.why-cell{background:var(--bg);padding:1.75rem 1.5rem;border:1px solid var(--border);border-radius:8px}
.why-num{font-family:'Playfair Display',serif;font-size:clamp(2rem,4vw + 1rem,48px);color:var(--green-faint);line-height:1;margin-bottom:.75rem}
.why-title{font-size:16px;font-weight:600;color:var(--text);margin-bottom:.5rem}
.why-desc{font-size:15px;color:var(--text-muted);line-height:1.6;font-weight:300}
.why-cell:hover{border-color:var(--green);box-shadow:0 4px 20px rgba(42,93,56,.08)}
.why-cell:hover .why-num{color:var(--green);transition:color .2s}

/* SERVICES */
.services-section{background:var(--bg-soft);padding:4rem 2.5rem}
.services-layout{display:grid;grid-template-columns:280px 1fr;gap:3rem;margin-top:3rem}
.services-list{display:flex;flex-direction:column;gap:0}
.svc-item{padding:1.25rem 1rem;border-bottom:1px solid var(--border);cursor:pointer;border-left:3px solid transparent;transition:all .15s}
.svc-item.active,.svc-item:hover{border-left-color:var(--green);background:var(--green-soft);padding-left:1.25rem}
.svc-item-name{font-size:14px;font-weight:500;color:var(--text)}
.svc-item-tag{font-size:11px;color:var(--text-muted);margin-top:2px}
.svc-detail{background:#fff;border:1px solid #E2DDD4;border-radius:8px;padding:2.5rem;display:none}
.svc-detail.active{display:block}
.svc-detail-icon{width:48px;height:48px;background:#E8F7F1;border-radius:6px;display:flex;align-items:center;justify-content:center;margin-bottom:1.25rem}
.svc-detail-icon svg{width:22px;height:22px;stroke:#0F6E56;fill:none;stroke-width:1.5}
.svc-detail-title{font-family:'Playfair Display',serif;font-size:clamp(1.25rem,2vw + 1rem,26px);color:var(--text);margin-bottom:.75rem}
.svc-detail-desc{font-size:14px;color:var(--text-body);line-height:1.7;font-weight:300;margin-bottom:1.5rem}
.svc-pill{display:inline-block;background:var(--green-soft);color:var(--green-dark);font-size:11px;padding:4px 12px;border-radius:20px;margin:.25rem;font-weight:500}

/* ABOUT */
.about-section{background:var(--bg);padding:4rem 2.5rem}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.about-visual{position:relative}
.about-card{background:var(--bg);border:1px solid var(--border);border-radius:8px;padding:2rem;box-shadow:0 2px 12px rgba(0,0,0,.04)}
.about-avatar{width:64px;height:64px;border-radius:50%;background:var(--green);display:flex;align-items:center;justify-content:center;font-family:'Playfair Display',serif;font-size:26px;color:#fff;margin-bottom:1.25rem}
.about-name{font-family:'Playfair Display',serif;font-size:22px;color:var(--text);margin-bottom:.25rem}
.about-role{font-size:12px;color:var(--green);text-transform:uppercase;letter-spacing:.1em;font-weight:600;margin-bottom:1.25rem}
.cert-row{display:flex;align-items:center;gap:.6rem;margin-bottom:.6rem;font-size:13px;color:var(--text-muted)}
.cert-dot{width:5px;height:5px;border-radius:50%;background:var(--green);flex-shrink:0}
.about-content .sec-h2{color:var(--text)}
.about-content .sec-sub{color:var(--text-body);max-width:none}
.about-content p{font-size:17px;color:var(--text-body);line-height:1.7;font-weight:300;margin-top:1rem}
.about-stat-row{display:flex;gap:2.5rem;margin-top:2rem;padding-top:2rem;border-top:1px solid var(--border);flex-wrap:wrap}
.astat-num{font-family:'Playfair Display',serif;font-size:clamp(1.5rem,3vw + 1rem,32px);color:var(--text)}
.astat-num span{color:var(--green)}
.astat-lbl{font-size:11px;color:var(--text-muted);text-transform:uppercase;letter-spacing:.08em;margin-top:.2rem}

/* FOUNDER — home spotlight */
.founder-section{padding:4rem 2.5rem}
.founder-section .sec-tag{color:var(--green)}
.founder-layout{display:grid;grid-template-columns:minmax(220px,340px) 1fr;gap:2.5rem 3rem;align-items:center;margin-top:1.5rem}
.founder-photo{border-radius:12px;overflow:hidden;border:1px solid var(--border);line-height:0;box-shadow:0 8px 32px rgba(0,0,0,.06)}
.founder-photo img{width:100%;height:auto;display:block}
.founder-pull{font-family:'Playfair Display',serif;font-size:clamp(22px,4vw,30px);line-height:1.2;color:var(--text);margin-bottom:1rem}
.founder-pull em{color:var(--green);font-style:italic}
.founder-body p{font-size:17px;color:var(--text-body);line-height:1.75;font-weight:300;margin-bottom:1rem;max-width:560px}
.founder-cta{display:inline-block;margin-top:.25rem;font-size:14px;font-weight:600;color:var(--green);text-decoration:none;letter-spacing:.02em}
.founder-cta:hover{color:var(--green-dark);text-decoration:underline}

/* ABOUT — single-column lead (no cramped split beside photo) */
.about-lead-single{max-width:40rem;margin:0 auto 3rem;text-align:center}
.about-portrait{border-radius:12px;overflow:hidden;border:1px solid var(--border);line-height:0;max-width:22rem;margin:0 auto;box-shadow:0 8px 28px rgba(0,0,0,.06)}
.about-portrait img{width:100%;height:auto;display:block}
.about-thumb-row{display:flex;align-items:center;justify-content:center;gap:1rem;margin-top:1.25rem}
.about-thumb{width:88px;height:88px;border-radius:50%;overflow:hidden;border:3px solid var(--green);flex-shrink:0;line-height:0}
.about-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.about-intro-flow{max-width:40rem;margin:2rem auto 0;text-align:left}
.about-intro-flow .sec-tag{text-align:left}
.about-intro-flow .sec-h2{text-align:left}
.about-mini-certs{margin-top:2rem;padding-top:1.5rem;border-top:1px solid var(--border);max-width:36rem;margin-left:auto;margin-right:auto;text-align:left}
.about-mini-certs .cert-row:last-child{margin-bottom:0}
.cert-row{font-size:14px}
.about-story{max-width:42rem;margin:0 auto}
.about-story .story-h3{font-family:'Playfair Display',serif;font-size:1.35rem;color:var(--text);margin:2rem 0 .65rem;font-weight:700;line-height:1.2}
.about-story .story-h3:first-child{margin-top:0}
.about-story p{font-size:17px;color:var(--text-body);line-height:1.78;font-weight:300;margin-bottom:1rem}

/* CALCULATORS */
.calc-section{background:var(--bg);padding:4rem 2.5rem}
.calc-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-top:3rem}
.calc-card{background:#fff;border:1px solid #E2DDD4;border-radius:8px;padding:2rem;position:relative;overflow:hidden;scroll-margin-top:5rem}
.calc-card::before{content:'';position:absolute;top:0;left:0;width:4px;height:100%;background:var(--green)}
.calc-card-title{font-size:15px;font-weight:600;color:var(--text);margin-bottom:.25rem}
.calc-card-sub{font-size:12px;color:var(--text-muted);margin-bottom:1.25rem;font-weight:300}
.calc-row2{display:grid;grid-template-columns:1fr 1fr;gap:.75rem;margin-bottom:.75rem}
.cf label{font-size:11px;color:var(--text-muted);margin-bottom:.3rem;display:block;font-weight:500;text-transform:uppercase;letter-spacing:.06em}
.cf input,.cf select{width:100%;padding:9px 12px;border:1px solid var(--border);border-radius:4px;font-size:13px;font-family:'Outfit',sans-serif;background:var(--bg);color:var(--text)}
.calc-result-bar{background:var(--green-soft);border:1px solid var(--border);border-radius:6px;padding:.85rem 1.25rem;display:flex;justify-content:space-between;align-items:center;gap:.5rem;flex-wrap:wrap;margin-top:.75rem}
.crb-lbl{font-size:11px;color:var(--text-muted);text-transform:uppercase;letter-spacing:.08em}
.crb-val{font-family:'Playfair Display',serif;font-size:clamp(1.125rem,3vw + 0.5rem,24px);color:var(--green);word-break:break-word;text-align:right}
.crb-sub{font-size:11px;color:var(--text-muted);margin-top:1px}
.calc-split{display:grid;grid-template-columns:1fr 1fr;gap:.5rem;margin-top:.75rem}
.crb-val--md{font-size:clamp(14px,2.5vw,16px)}

/* PROCESS */
.process-section{padding:4rem 2.5rem}
.process-section .sec-tag{color:var(--green)}
.process-section .sec-h2{color:var(--green)}
.process-row{display:grid;grid-template-columns:repeat(4,1fr);gap:0;margin-top:3rem;border:1px solid var(--border);border-radius:8px;overflow:hidden}
.proc-step{background:var(--bg-soft);padding:2rem 1.5rem;border-right:1px solid var(--border)}
.proc-step:last-child{border-right:none}
.proc-num{font-family:'Playfair Display',serif;font-size:clamp(2rem,5vw + 1rem,52px);color:var(--green-faint);line-height:1;margin-bottom:.75rem}
.proc-title{font-size:16px;font-weight:600;color:var(--text);margin-bottom:.4rem}
.proc-desc{font-size:14px;color:var(--text-muted);line-height:1.6;font-weight:300}

/* TESTIMONIALS */
.test-section{background:var(--bg-soft);padding:4rem 2.5rem}
.test-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:3rem}
.test-card{background:var(--bg);border:1px solid var(--border);border-radius:8px;padding:1.75rem;display:flex;flex-direction:column;justify-content:space-between}
.test-quote{font-size:15px;color:var(--text-body);line-height:1.7;font-weight:300;font-style:italic;margin-bottom:1.25rem;flex:1}
.test-author-row{display:flex;align-items:center;gap:.75rem;padding-top:1rem;border-top:1px solid var(--border)}
.test-avatar{width:34px;height:34px;border-radius:50%;background:var(--green-soft);display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:600;color:var(--green-dark);flex-shrink:0}
.test-name{font-size:12px;font-weight:500;color:var(--text)}
.test-company{font-size:11px;color:var(--text-muted)}

/* FAQ */
.faq-section{background:var(--bg);padding:4rem 2.5rem}
.faq-section .sec-h2{color:var(--green)}
.faq-layout{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-top:3rem}
.faq-item{border:1px solid var(--border);border-radius:8px;padding:1.25rem 1.5rem;cursor:pointer;background:var(--bg)}
.faq-item:hover{border-color:var(--green);box-shadow:0 2px 12px rgba(42,93,56,.08)}
.faq-q{font-size:13px;font-weight:600;color:var(--text);display:flex;justify-content:space-between;align-items:flex-start;gap:1rem}
.faq-q-icon{color:var(--green);font-size:18px;line-height:1;flex-shrink:0}
.faq-a{font-size:12px;color:var(--text-muted);line-height:1.65;margin-top:.75rem;font-weight:300}

/* CONTACT */
.contact-section{background:var(--bg-soft);padding:4rem 2.5rem}
.contact-grid{display:grid;grid-template-columns:1fr 1.4fr;gap:3rem;margin-top:3rem}
.contact-info-card{background:var(--bg);border:1px solid var(--border);border-radius:8px;padding:2.5rem;height:fit-content;box-shadow:0 2px 12px rgba(0,0,0,.04)}
.ci-tag{font-size:11px;letter-spacing:.15em;text-transform:uppercase;color:var(--green);font-weight:600;margin-bottom:.75rem}
.ci-h{font-family:'Playfair Display',serif;font-size:clamp(1.35rem,2.5vw + 1rem,26px);color:var(--text);margin-bottom:.75rem;line-height:1.2}
.ci-desc{font-size:13px;color:var(--text-body);line-height:1.65;font-weight:300;margin-bottom:2rem}
.ci-row{display:flex;gap:.85rem;align-items:flex-start;margin-bottom:1.25rem}
.ci-icon{width:36px;height:36px;border-radius:6px;background:var(--green-soft);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.ci-icon svg{width:16px;height:16px;stroke:var(--green);fill:none;stroke-width:1.5}
.ci-label{font-size:12px;color:var(--text-muted);font-weight:500}
.ci-val{font-size:13px;color:var(--text);margin-top:2px}
.ci-val a{color:var(--green);text-decoration:none;font-weight:500}
.ci-val a:hover{text-decoration:underline}
.skip-link{position:absolute;left:-9999px;top:0;z-index:999;padding:.75rem 1.25rem;background:var(--green);color:#fff;font-size:14px;font-weight:600;text-decoration:none;border-radius:0 0 8px 0}
.skip-link:focus{left:max(.5rem,env(safe-area-inset-left));top:max(.5rem,env(safe-area-inset-top));outline:2px solid #fff;outline-offset:2px}
.site-header{position:relative;z-index:100}
.breadcrumb-nav{font-size:12px;color:var(--text-muted);margin:0 0 1rem;padding:0 2.5rem;max-width:1200px}
.breadcrumb-nav ol{display:flex;flex-wrap:wrap;align-items:center;gap:.35rem;list-style:none;margin:0;padding:0}
.breadcrumb-nav li{display:flex;align-items:center;gap:.35rem}
.breadcrumb-nav li+li::before{content:'/';color:var(--border-strong);margin-right:.35rem}
.breadcrumb-nav a{color:var(--green);text-decoration:none;font-weight:500}
.breadcrumb-nav a:hover{text-decoration:underline}
.breadcrumb-nav [aria-current="page"]{color:var(--text-body);font-weight:500}
.prose-block{max-width:42rem;margin-top:1.5rem}
.prose-block p{font-size:15px;color:var(--text-body);line-height:1.75;font-weight:300;margin-bottom:1rem}
.prose-block p:last-child{margin-bottom:0}
.prose-block a{color:var(--green);font-weight:500;text-decoration:none}
.prose-block a:hover{text-decoration:underline}
.cta-band{background:linear-gradient(135deg,var(--green-dark) 0%,var(--green) 100%);color:#fff;padding:2.25rem 2.5rem;margin-top:0}
.cta-band-inner{max-width:960px;margin:0 auto;text-align:center}
.cta-band h2{font-family:'Playfair Display',serif;font-size:clamp(1.35rem,2.5vw + .5rem,26px);font-weight:400;margin:0 0 .5rem;line-height:1.2}
.cta-band p{font-size:14px;opacity:.95;line-height:1.6;margin:0 0 1.25rem;font-weight:300;max-width:36rem;margin-left:auto;margin-right:auto}
.cta-band-btns{display:flex;flex-wrap:wrap;gap:.75rem;justify-content:center;align-items:center}
.cta-band .btn-green{background:#fff;color:var(--green-dark)}
.cta-band .btn-green:hover{background:var(--green-soft);color:var(--green-dark)}
.cta-band .btn-ghost{border-color:rgba(255,255,255,.85);color:#fff}
.cta-band .btn-ghost:hover{background:rgba(255,255,255,.12)}
.who-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin-top:2rem}
.who-card{background:var(--bg);border:1px solid var(--border);border-radius:8px;padding:1.5rem 1.35rem}
.who-card h3{font-size:15px;font-weight:600;color:var(--text);margin:0 0 .5rem}
.who-card p{font-size:13px;color:var(--text-muted);line-height:1.65;margin:0;font-weight:300}
.who-card a{color:var(--green);font-weight:500;text-decoration:none}
.who-card a:hover{text-decoration:underline}
.trust-note{font-size:13px;color:var(--text-muted);line-height:1.65;margin:1.25rem auto 0;max-width:42rem;font-weight:300;text-align:center}
.trust-note strong{color:var(--text);font-weight:600}
.mini-faq{margin-top:2.5rem;padding-top:2rem;border-top:1px solid var(--border);max-width:42rem}
.mini-faq h3{font-family:'Playfair Display',serif;font-size:1.15rem;color:var(--text);margin:1.25rem 0 .5rem}
.mini-faq h3:first-child{margin-top:0}
.mini-faq p{font-size:14px;color:var(--text-body);line-height:1.7;margin:0;font-weight:300}
.footer-nap{margin-top:1.25rem;padding-top:1.25rem;border-top:1px solid var(--border);font-size:12px;color:var(--text-muted);line-height:1.65;font-weight:300;font-style:normal}
.footer-nap a{color:var(--green);text-decoration:none;font-weight:500}
.footer-nap a:hover{text-decoration:underline}
.test-footnote{font-size:13px;color:var(--text-muted);text-align:center;margin-top:2rem;max-width:36rem;margin-left:auto;margin-right:auto;line-height:1.6;font-weight:300}
.form-card{background:var(--bg);border:1px solid var(--border);border-radius:8px;padding:2.5rem;box-shadow:0 2px 12px rgba(0,0,0,.04)}
.fg{margin-bottom:1rem}
.fg label{font-size:11px;color:var(--text-muted);margin-bottom:.4rem;display:block;font-weight:500;text-transform:uppercase;letter-spacing:.06em}
.fg input,.fg textarea,.fg select{width:100%;padding:10px 14px;border:1px solid var(--border);border-radius:6px;font-size:13px;font-family:'Outfit',sans-serif;background:var(--bg);color:var(--text)}
.fg textarea{height:90px;resize:none}
.fg-row{display:grid;grid-template-columns:1fr 1fr;gap:.75rem}
.submit-btn{width:100%;padding:13px;background:var(--green);color:#fff;border:none;border-radius:8px;font-size:14px;font-weight:600;cursor:pointer;font-family:'Outfit',sans-serif;letter-spacing:.03em;margin-top:.25rem}
.submit-btn:hover{background:var(--green-dark)}

/* SIMPLE INNER PAGES */
.simple-page{padding:4rem 2.5rem;max-width:720px}
.simple-page .sec-h2{margin-bottom:1rem;color:var(--green)}
.simple-page p{font-size:15px;color:var(--text-body);line-height:1.75;margin-bottom:1rem;font-weight:300}
.simple-page ul{margin:1rem 0 1rem 1.25rem;color:var(--text-body);font-weight:300;line-height:1.7}
.simple-page a{color:var(--green);text-decoration:none;font-weight:500}
.simple-page a:hover{text-decoration:underline}

/* FOOTER */
.footer{background:var(--bg-soft);padding:3rem 2.5rem 1.5rem;margin-top:auto;border-top:1px solid var(--border)}
.footer-top{display:grid;grid-template-columns:1.85fr 1fr 1fr 1fr;gap:2rem;margin-bottom:2.5rem;padding-bottom:2.5rem;border-bottom:1px solid var(--border)}
.footer-brand-col{min-width:0}
.footer-business-name{font-size:16px;font-weight:600;color:var(--text);margin:.35rem 0 .5rem}
.footer-desc{font-size:15px;color:var(--text-muted);line-height:1.65;font-weight:300;margin:0 0 1rem;max-width:24rem}
.footer-contact-block{font-size:15px;color:var(--text-body);line-height:1.65;font-weight:300;font-style:normal;margin:0 0 .85rem}
.footer-email{color:var(--green);font-weight:600;text-decoration:none}
.footer-email:hover{text-decoration:underline}
.footer-service-area{font-size:14px;color:var(--text-muted);line-height:1.6;margin:0 0 .85rem;max-width:24rem;font-weight:300}
.footer-linkedin{display:inline-block;font-size:14px;font-weight:600;color:var(--green);text-decoration:none;letter-spacing:.02em}
.footer-linkedin:hover{text-decoration:underline;color:var(--green-dark)}
.footer-col-title--spaced{margin-top:1.35rem}
.footer-brand-link{display:inline-block;line-height:0;border-radius:6px;overflow:hidden;margin-bottom:.75rem;text-decoration:none}
.footer-brand-link:focus-visible{outline:2px solid var(--green);outline-offset:3px}
.footer-logo{height:clamp(58px,11vw,78px);width:auto;display:block;filter:drop-shadow(0 1px 2px rgba(0,0,0,.06))}
.footer-tagline{font-size:13px;color:var(--text-muted);line-height:1.6;font-weight:300}
.footer-col-title{font-size:11px;text-transform:uppercase;letter-spacing:.12em;color:var(--text);font-weight:600;margin-bottom:1rem}
.footer-link{display:block;font-size:14px;color:var(--text-body);margin-bottom:.5rem;text-decoration:none}
.footer-link:hover{color:var(--green)}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}
.footer-copy{font-size:13px;color:var(--text-muted)}
.footer-green-tag{background:var(--green);color:#fff;font-size:11px;padding:4px 12px;border-radius:4px;font-weight:600}

.trust-strip{background:var(--bg);border-top:1px solid var(--border);padding:2.25rem 2.5rem 2.5rem}
.trust-strip-inner{max-width:1100px;margin:0 auto;text-align:center}
.trust-strip-heading{font-size:11px;text-transform:uppercase;letter-spacing:.14em;color:var(--text-muted);font-weight:600;margin:0 0 1.25rem}
.trust-strip-img{width:100%;max-width:min(960px,100%);height:auto;display:block;margin:0 auto}

@media (max-width:1100px){
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .test-grid{grid-template-columns:repeat(2,1fr)}
  .who-grid{grid-template-columns:1fr}
}

@media (max-width:900px){
  .section,.why-section,.services-section,.about-section,.founder-section,.calc-section,.process-section,.test-section,.faq-section,.contact-section{padding-left:1.25rem;padding-right:1.25rem;padding-top:3rem;padding-bottom:3rem}
  .nav,.footer,.trust-strip{padding-left:1.25rem;padding-right:1.25rem}
  .nav{padding-top:max(.65rem,env(safe-area-inset-top));padding-bottom:.65rem;padding-left:max(1rem,env(safe-area-inset-left));padding-right:max(1rem,env(safe-area-inset-right));justify-content:flex-start}
  .nav-toggle{display:flex;margin-left:auto}
  /* Keep logo + burger above dimmed backdrop so the X stays tappable */
  .nav.is-open .nav-logo,
  .nav.is-open .nav-toggle{position:relative;z-index:175}
  .nav-backdrop{display:block;position:fixed;inset:0;background:rgba(26,26,26,.4);z-index:150;opacity:0;visibility:hidden;transition:opacity .28s ease,visibility .28s ease;pointer-events:none;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}
  .nav.is-open .nav-backdrop{opacity:1;visibility:visible;pointer-events:auto}
  .nav-panel{
    position:fixed;top:0;right:0;width:min(21rem,calc(100vw - 3.5rem));max-width:100%;
    height:100dvh;max-height:100vh;margin:0;
    flex-direction:column;flex-wrap:nowrap;align-items:stretch;justify-content:flex-start;gap:0;
    padding:max(4.25rem, calc(env(safe-area-inset-top) + 3.25rem)) max(1.25rem,env(safe-area-inset-right)) max(1.5rem,env(safe-area-inset-bottom)) max(1.25rem,env(safe-area-inset-left));
    background:var(--bg);border-left:1px solid var(--border);
    box-shadow:-8px 0 32px rgba(0,0,0,.12);overflow-y:auto;-webkit-overflow-scrolling:touch;overscroll-behavior:contain;
    transform:translateX(100%);transition:transform .32s cubic-bezier(.32,.72,0,1);z-index:160;flex:initial;min-width:0
  }
  .nav.is-open .nav-panel{transform:translateX(0)}
  .nav-panel::before{
    content:'Menu';display:block;font-size:11px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--text-muted);
    margin-bottom:1rem;padding-bottom:.75rem;border-bottom:1px solid var(--border)
  }
  .nav-links{flex-direction:column;align-items:stretch;justify-content:flex-start;gap:.25rem;flex-wrap:nowrap;width:100%;flex:1}
  .nav-links a{
    display:flex;align-items:center;min-height:48px;padding:.65rem .75rem;margin:0 -.25rem;border-radius:8px;border-bottom:none;
    font-size:16px;font-weight:500;color:var(--text);-webkit-tap-highlight-color:transparent
  }
  .nav-links a:active{background:var(--green-faint)}
  .nav-links a.is-active{color:var(--green);background:var(--green-soft);font-weight:600}
  .nav-cta{margin-top:auto;text-align:center;width:100%;padding:14px 20px;border-radius:10px;font-size:15px;box-shadow:0 2px 8px rgba(42,93,56,.2)}
  .simple-page{padding:3rem 1.25rem}
  .breadcrumb-nav{padding-left:1.25rem;padding-right:1.25rem}
  .cta-band{padding-left:1.25rem;padding-right:1.25rem}
  .hero{grid-template-columns:1fr;min-height:0}
  .hero-left{border-right:none;border-bottom:1px solid var(--border);padding:2.5rem 1.25rem 2rem}
  .hero-right{padding:2rem 1.25rem 2.5rem}
  .hero-sub{max-width:none}
  .why-grid{grid-template-columns:1fr}
  .why-cell{padding:1.5rem 1.25rem}
  .services-layout{grid-template-columns:1fr;gap:2rem;margin-top:2rem}
  .svc-detail{padding:1.5rem}
  .about-grid{grid-template-columns:1fr}
  .about-section{padding-top:2.5rem;padding-bottom:2.5rem}
  .about-story{max-width:none}
  .founder-layout{grid-template-columns:1fr;max-width:32rem;margin-left:auto;margin-right:auto}
  .founder-body{max-width:none;margin-left:0;margin-right:0}
  .founder-body p{max-width:none}
  .calc-grid{grid-template-columns:1fr;margin-top:2rem}
  .calc-row2{grid-template-columns:1fr}
  .calc-split{grid-template-columns:1fr}
  .calc-card{padding:1.5rem}
  .process-row{grid-template-columns:1fr 1fr}
  .proc-step{padding:1.5rem 1.15rem}
  .test-grid{grid-template-columns:1fr}
  .faq-layout{grid-template-columns:1fr;margin-top:2rem}
  .faq-item{padding:1.1rem 1.15rem}
  .contact-grid{grid-template-columns:1fr;gap:2rem;margin-top:2rem}
  .contact-info-card,.form-card{padding:1.75rem}
  .fg-row{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr 1fr;gap:1.5rem 2rem}
  .marquee-inner span{margin:0 1.25rem;font-size:11px}
}

@media (max-width:600px){
  .nav-logo img{height:clamp(48px,12vw,58px)}
  .hero-left{padding-top:2rem;padding-bottom:1.75rem}
  .hero-right{padding-top:1.75rem;padding-bottom:2rem}
  .hero-btns{flex-direction:column;align-items:stretch}
  .btn-green,.btn-ghost{width:100%;text-align:center;padding:12px 20px}
  .hero-stat-grid{grid-template-columns:1fr;gap:1.25rem}
  .hstat{padding-bottom:1rem}
  .process-row{grid-template-columns:1fr}
  .proc-step{border-right:none;border-bottom:1px solid var(--border)}
  .proc-step:last-child{border-bottom:none}
  .footer-top{grid-template-columns:1fr}
  .footer-logo{height:clamp(48px,12vw,56px)}
  .footer-bottom{flex-direction:column;align-items:flex-start}
  .about-stat-row{gap:1.5rem}
  .about-thumb-row{flex-wrap:wrap}
  .about-story .story-h3{font-size:1.2rem}
  .svc-item{padding:1rem .85rem}
}

@media (max-width:380px){
  .marquee-inner span{margin:0 .85rem}
}

@media (prefers-reduced-motion:reduce){
  .marquee-inner{animation:none}
  .nav-panel{transition:none}
  .nav-backdrop{transition:none;-webkit-backdrop-filter:none;backdrop-filter:none}
  .nav-toggle-bar{transition:none}
}
