
:root{
  /* Brand variables */
  --brand-green: #009640;
  --brand-green-dark: #007433;
  --brand-green-light: #7bd28f;
  --header-bg-dark: #0B0F0D;
  --header-bg-sticky: rgba(11,15,13,0.96);
  --nav-link-color: #E7ECE9;
  --brand-dark: #0B0F0D;
  --brand-surface: #ffffff;
  --brand-soft: #EEF2EF;
  --bg:#F5F7F6;
  --panel:#ffffff;
  --soft:#eef2ef;
  --text:#0b0f0d;
  --muted:#6b6f6b;
  --max:1180px;
  --radius:16px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
a{color:inherit;text-decoration:none}
body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6
}
button:focus-visible, a:focus-visible, .btn:focus-visible, .menu-toggle:focus-visible{
  outline:3px solid rgba(211,154,44,0.95);
  outline-offset:3px;
  border-radius:8px;
}
img{max-width:100%;display:block}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.container{width:min(var(--max),calc(100% - 40px));margin:auto}
.site-header{
  position:sticky;top:0;z-index:50;
  background:var(--header-bg-sticky);
  background-color:var(--header-bg-dark);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,0.06);
  box-shadow:0 8px 30px rgba(0,0,0,0.12);
  color:var(--nav-link-color);
}
.nav{display:grid;grid-template-columns:auto 1fr auto;align-items:center;min-height:84px;gap:16px}
.brand{font-weight:800;font-size:1.35rem;letter-spacing:.05em;display:flex;align-items:center;gap:12px}
.brand img.brand-logo{height:56px;width:auto;object-fit:contain;display:block}
.brand .brand-text{font-weight:800;font-size:1.05rem;color:inherit}
.brand .brand-text span{color:var(--brand-green)}
.nav-links{display:flex;gap:24px;align-items:center;grid-column:3;justify-self:end}
.nav-links a{color:var(--nav-link-color);padding:6px 8px;border-radius:6px;font-weight:600;letter-spacing:.01em;position:relative}
.nav-links a:hover{color:var(--brand-green)}
.nav-links a.active{color:var(--brand-green)}
.nav-links a.active::after{content:"";position:absolute;left:8px;right:8px;bottom:2px;height:2px;background:var(--brand-green);border-radius:2px}
.menu-toggle{display:none;background:none;border:0;color:inherit;font-size:1.5rem}
.hero{
  min-height:clamp(480px,62vh,680px);display:grid;place-items:center;
  position:relative;overflow:hidden;padding:28px 0;
}

.hero.has-image::after{
  content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,0.0),rgba(0,0,0,0.08));pointer-events:none;z-index:1;
}

.hero.has-image::before{
  content:"";position:absolute;left:0;top:0;height:100%;width:56%;
  background:linear-gradient(90deg,rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.82) 18%, rgba(255,255,255,0.45) 36%, rgba(255,255,255,0.12) 58%, rgba(255,255,255,0.0) 100%);
  pointer-events:none;z-index:1;mix-blend-mode:normal;
}

.hero-content{position:relative;z-index:2;max-width:580px;padding:90px 0}
.eyebrow{color:var(--brand-green-dark);text-transform:uppercase;letter-spacing:.16em;font-weight:800;font-size:.78rem}
h1{font-size:clamp(2rem,5.8vw,4.4rem);line-height:1.02;margin:.3em 0;color:var(--brand-dark)}
h2{font-size:clamp(2rem,4vw,3.3rem);line-height:1.12;margin:0 0 18px}
h3{font-size:1.3rem;margin:0 0 10px}
.lead{font-size:clamp(1rem,2.4vw,1.25rem);color:rgba(11,15,13,0.9);max-width:560px}
.actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:30px}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:13px 20px;border-radius:999px;font-weight:800}
.btn-primary{background:var(--brand-green);color:#fff}
.btn-primary:hover{background:var(--brand-green-dark)}
.btn-secondary{border:1px solid rgba(11,15,13,.12);background:transparent;color:inherit}
.btn-secondary:hover{background:rgba(0,150,64,.06)}
section{padding:90px 0}
.section-head{max-width:720px;margin-bottom:36px}
.muted{color:var(--muted)}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.card{
  background:var(--panel);border:1px solid rgba(11,15,13,.06);
  border-radius:var(--radius);overflow:hidden;box-shadow:0 8px 20px rgba(11,15,13,0.04)
}
.card-body{padding:25px}
.image-placeholder{
  aspect-ratio:16/10;
  display:grid;place-items:center;
  color:#7f8692;font-weight:800;letter-spacing:.12em;
  background:linear-gradient(135deg,#272c35,#171a20)
}
.image-placeholder img{width:100%;height:100%;object-fit:cover;display:block}
.hero .hero-image{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;z-index:0}
.hero .hero-content{position:relative;z-index:2}

.card .image-placeholder{aspect-ratio:16/10;overflow:hidden}

.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.gallery .image-placeholder{border-radius:16px;aspect-ratio:4/3;overflow:hidden}
.gallery .image-placeholder img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
.gallery .image-placeholder:hover img{transform:scale(1.03)}
.feature-list{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.feature{
  padding:18px 20px;border-radius:15px;background:var(--panel);
  border:1px solid rgba(255,255,255,.06)
}
.feature strong{display:block;margin-bottom:5px}
.cta{background:linear-gradient(135deg,var(--brand-green),var(--brand-green-dark));color:#fff}
.cta .muted{color:rgba(255,255,255,.9)}
.page-hero{padding:90px 0 50px;background:linear-gradient(135deg,var(--bg),var(--soft))}
.contact-card{padding:28px}
.contact-layout{max-width:720px}
.contact-row{padding:14px 0;border-bottom:1px solid rgba(255,255,255,.08)}
.contact-row:last-child{border:0}
.legal{max-width:850px}
.legal h2{font-size:1.7rem;margin-top:45px}
.site-footer{padding:38px 0;border-top:1px solid rgba(255,255,255,.08);color:var(--muted)}
.footer-inner{display:flex;justify-content:space-between;gap:25px;flex-wrap:wrap}
@media(max-width:800px){
  .menu-toggle{display:block}
  .nav-links{
    display:none;position:absolute;top:76px;left:0;right:0;
    padding:20px;background:var(--header-bg-dark);color:var(--nav-link-color);flex-direction:column;align-items:flex-start;box-shadow:0 10px 30px rgba(0,0,0,0.12)
  }
  .nav-links.open{display:flex}
  .grid-3,.grid-2,.gallery,.feature-list{grid-template-columns:1fr}
  .hero{min-height:520px}
  section{padding:65px 0}
}

@media(max-width:1000px){
  .gallery{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
  .gallery{grid-template-columns:1fr}
}

@media(max-width:800px){
  .nav{display:flex;justify-content:space-between}
  .brand img.brand-logo{height:46px}
  .menu-toggle{color:var(--nav-link-color)}
}

@media(max-width:800px){
  .hero.has-image::before{
    width:80%;
    background:linear-gradient(90deg,rgba(248,249,248,.97) 0%, rgba(248,249,248,.93) 45%, rgba(248,249,248,.72) 68%, rgba(248,249,248,.12) 100%);
    mix-blend-mode:normal;pointer-events:none;z-index:1
  }
  .hero.has-image::after{background:none}
  .hero .hero-image{object-position:72% center}
  .hero .hero-content{padding:48px 0}
  .actions{flex-direction:column;align-items:stretch;gap:14px}
  .actions .btn{width:100%;justify-content:center}
  .actions .btn + .btn{margin-top:0}
  .hero .hero-content h1{font-size:clamp(1.6rem,6.6vw,2.4rem)}
  .hero .hero-content .lead{font-size:clamp(0.95rem,3.6vw,1.05rem)}
  .hero .hero-content, .hero .hero-content *{color:var(--brand-dark)}
  .hero .hero-content h1{color:var(--brand-dark);text-shadow:none}
  .hero .hero-content .lead{color:rgba(11,15,13,0.9)}
  .eyebrow{color:var(--brand-green-dark)}
  .btn-primary{background:var(--brand-green);color:#fff}
  .btn-primary:hover{background:var(--brand-green-dark)}
  .btn-secondary{background:#ffffff;color:var(--brand-dark);border:1px solid rgba(11,15,13,0.12)}
  .btn-secondary:hover{background:#f5f5f5}
}

@media(min-width:1200px){
  .nav{min-height:86px;gap:32px}
  .hero-content{padding:110px 0}
}

@media(min-width:801px){
  .hero{display:flex;align-items:center}
  .hero .hero-content{margin-left:clamp(28px,6vw,80px);margin-right:auto;text-align:left}
}

.green-word{color:var(--brand-green) !important;font-weight:900}

@media(max-width:800px){
  .hero .hero-content h1 .line1,
  .hero .hero-content h1 .line2,
  .hero .hero-content h1 .line3{display:block;white-space:nowrap}
}

/* Allow natural wrapping on very narrow screens while keeping three-line structure where possible */
@media(max-width:360px){
  .hero .hero-content h1 .line1,
  .hero .hero-content h1 .line2,
  .hero .hero-content h1 .line3{white-space:normal}

  /* ensure horizontal safe area of ~20px each side */
  .hero .hero-content{max-width:calc(100% - 40px);padding-left:20px;padding-right:20px}

  /* keep left alignment (do not change headline size) */
  .hero .hero-content{margin-left:20px;margin-right:20px;text-align:left}
}
