
:root{
  --green:#1E6835;
  --green-light:#7BB542;
  --gold:#A08E32;
  --charcoal:#2C3032;
  --ink:#22272A;
  --muted:#69706F;
  --line:#DDE2DC;
  --surface:#FFFFFF;
  --surface-alt:#F6F7F3;
  --container:1280px;
  --header-h:76px;
  --radius-sm:6px;
  --radius-md:8px;
  --shadow-soft:0 10px 34px rgba(23,32,27,.08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"DM Sans",Arial,sans-serif;
  color:var(--ink);
  background:var(--surface);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%}
a{color:inherit}
button,input,textarea,select{font:inherit}
.container{
  width:min(calc(100% - 64px),var(--container));
  margin-inline:auto;
}
.skip-link{
  position:fixed;
  left:16px;top:12px;
  transform:translateY(-160%);
  z-index:9999;
  padding:10px 14px;
  background:#fff;
  color:var(--green);
  border:2px solid var(--green);
  border-radius:var(--radius-sm);
}
.skip-link:focus{transform:none}
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  height:var(--header-h);
  background:rgba(255,255,255,.96);
  border-bottom:1px solid transparent;
  backdrop-filter:saturate(140%) blur(12px);
  transition:border-color .2s ease,box-shadow .2s ease;
}
.site-header.scrolled{
  border-bottom-color:var(--line);
  box-shadow:0 5px 18px rgba(22,31,27,.04);
}
.header-inner{
  height:100%;
  display:flex;
  align-items:center;
  gap:28px;
}
.brand{display:flex;align-items:center;flex:0 0 auto}
.brand img{width:248px;max-height:44px;object-fit:contain;object-position:left center}
.primary-nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:clamp(14px,1.45vw,24px);
}
.primary-nav>a{
  position:relative;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  white-space:nowrap;
  color:#343A39;
}
.primary-nav>a::after{
  content:"";
  position:absolute;
  left:0;right:100%;bottom:-8px;
  height:2px;background:var(--gold);
  transition:right .2s ease;
}
.primary-nav>a:hover::after,.primary-nav>a:focus-visible::after{right:0}
.language-switcher{
  display:flex;align-items:center;gap:8px;
  padding-left:10px;
  border-left:1px solid var(--line);
  font-size:13px;font-weight:600;
}
.language-switcher .active{color:var(--green)}
.language-switcher [aria-disabled="true"]{color:#9AA19E}
.menu-toggle{
  display:none;
  width:44px;height:44px;
  border:0;background:transparent;
  margin-left:auto;padding:9px;
}
.menu-toggle span{display:block;height:2px;background:var(--charcoal);margin:6px 0;transition:.2s}

.hero{
  position:relative;
  min-height:min(82vh,820px);
  display:flex;
  align-items:center;
  color:#fff;
  overflow:hidden;
}
.hero-media,.hero-overlay{
  position:absolute;inset:0;
}
.hero-media img{
  width:100%;height:100%;object-fit:cover;
  object-position:center center;
}
.hero-overlay{
  background:
    linear-gradient(90deg,rgba(16,46,28,.88) 0%,rgba(25,50,36,.76) 35%,rgba(44,48,50,.30) 63%,rgba(44,48,50,.05) 100%),
    linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.10));
}
.hero-content{
  position:relative;
  z-index:2;
  padding-block:110px 130px;
}
.hero-copy{max-width:720px}
.eyebrow{
  margin:0 0 14px;
  color:var(--green);
  font-size:12px;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.eyebrow-light{color:#D8E6D9}
.eyebrow-gold{color:#D6C66F}
.hero h1,.section h2,.dark-section h2,.contact-cta h2{
  font-family:"Montserrat",Arial,sans-serif;
  text-wrap:balance;
}
.hero h1{
  max-width:820px;
  margin:0;
  font-size:clamp(2.45rem,5.2vw,4rem);
  line-height:1.08;
  letter-spacing:-.035em;
  font-weight:700;
}
.hero-lead{
  max-width:660px;
  margin:26px 0 0;
  font-size:clamp(1.03rem,1.4vw,1.18rem);
  line-height:1.7;
  color:rgba(255,255,255,.9);
}
.hero-actions{display:flex;align-items:center;gap:24px;flex-wrap:wrap;margin-top:34px}
.hero-caption{
  position:absolute;
  z-index:2;
  left:50%;bottom:28px;
  transform:translateX(-50%);
  display:flex;
  justify-content:space-between;
  color:rgba(255,255,255,.8);
  font-size:13px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:var(--radius-sm);
  border:1px solid transparent;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  transition:background .18s ease,color .18s ease,border-color .18s ease,transform .18s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--green);color:#fff;border-color:rgba(255,255,255,.16)}
.btn-primary:hover{background:#18582c}
.btn-outline{border-color:var(--green);color:var(--green);background:transparent}
.btn-outline:hover{background:var(--green);color:#fff}
.btn-light{background:#fff;color:var(--green)}
.text-link{
  display:inline-flex;align-items:center;gap:8px;
  color:var(--green);
  font-weight:600;
  text-decoration:none;
  border-bottom:1px solid transparent;
}
.text-link span{transition:transform .18s ease}
.text-link:hover span{transform:translateX(3px)}
.text-link-light{color:#fff}
.muted-link{color:#626C67}

.section{padding-block:clamp(72px,8vw,118px)}
.section-compact{padding-block:40px}
.section-heading{max-width:780px;margin-bottom:50px}
.section h2,.dark-section h2,.contact-cta h2{
  margin:0 0 22px;
  font-size:clamp(2rem,3.5vw,2.8rem);
  line-height:1.15;
  letter-spacing:-.025em;
  color:var(--charcoal);
}
.lead{
  font-size:clamp(1.08rem,1.35vw,1.22rem);
  line-height:1.7;
  color:#46504D;
}
.facts{background:#fff;border-bottom:1px solid var(--line)}
.facts-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.fact{
  padding:18px 28px;
  border-right:1px solid var(--line);
}
.fact:first-child{padding-left:0}
.fact:last-child{border-right:0}
.fact strong{
  display:block;
  font-family:"Montserrat",Arial,sans-serif;
  color:var(--green);
  font-size:clamp(2rem,3.5vw,3.5rem);
  line-height:1;
  letter-spacing:-.035em;
}
.fact span{display:block;margin-top:10px;color:#59615F;font-size:14px;font-weight:500}

.about-section{background:var(--surface-alt)}
.split-grid{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
  gap:clamp(48px,7vw,96px);
  align-items:center;
}
.media-frame{
  overflow:hidden;
  border-radius:var(--radius-md);
  background:#E8ECE6;
}
.media-frame img{
  width:100%;
  aspect-ratio:3/2;
  object-fit:cover;
}
.media-frame:hover img{transform:scale(1.012)}
.media-frame img{transition:transform .5s ease}
.content-block{max-width:610px}
.content-block p:not(.eyebrow){color:#525B58}
.inline-actions{display:flex;gap:26px;flex-wrap:wrap;margin-top:30px}

.dark-section{
  background:linear-gradient(115deg,#174f2c 0%,var(--green) 43%,#29332e 100%);
  color:#fff;
}
.dark-section h2{color:#fff}
.group-section{padding-block:84px}
.group-layout{
  display:grid;
  grid-template-columns:1.25fr .8fr;
  gap:44px 90px;
  align-items:start;
}
.group-chain{display:grid;gap:9px;font-size:15px}
.group-chain div{
  border-bottom:1px solid rgba(255,255,255,.16);
  padding:9px 0 14px;
}
.group-chain .current{color:#fff;font-weight:600}
.group-chain span{color:#D4C568}
.group-link{grid-column:1/-1;justify-self:start}

.pltbm-section{background:#fff}
.asset-meta{
  display:flex;flex-wrap:wrap;gap:10px;
  margin:26px 0 30px;
}
.asset-meta span{
  padding:7px 10px;border:1px solid var(--line);border-radius:4px;
  color:#59615F;font-size:13px;font-weight:500;
}
.media-large img{min-height:430px}

.process-section{background:var(--surface-alt)}
.process-flow{
  list-style:none;
  padding:0;margin:0 0 48px;
  display:grid;
  grid-template-columns:repeat(7,1fr);
  border-top:1px solid #CCD4CB;
  border-bottom:1px solid #CCD4CB;
}
.process-flow li{
  min-height:150px;
  padding:22px 18px;
  border-right:1px solid #CCD4CB;
}
.process-flow li:last-child{border-right:0}
.process-flow span{
  display:block;
  font-family:"Montserrat";
  color:var(--gold);
  font-weight:700;
  font-size:13px;
  margin-bottom:24px;
}
.process-flow strong{
  font-family:"Montserrat";
  font-size:15px;
  line-height:1.35;
}
.process-media-grid{display:grid;grid-template-columns:1fr 1fr;gap:26px}
.process-image{margin:0;overflow:hidden;border-radius:var(--radius-md);background:#fff}
.process-image img{width:100%;aspect-ratio:3/2;object-fit:cover}
.process-image figcaption{
  padding:12px 2px 0;
  font-size:13px;color:#6B7370;
}

.local-section{background:#fff}
.local-layout{
  display:grid;grid-template-columns:.9fr 1.1fr;
  gap:clamp(52px,8vw,120px);
  align-items:start;
}
.local-layout h2{margin-bottom:0}
.local-layout p{margin-top:0;color:#4D5653}

.development-section{
  background:
    linear-gradient(180deg,#fff 0%,#fff 48%,#F3F5F0 48%,#F3F5F0 100%);
}
.development-grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:24px;
}
.dev-panel{
  border:1px solid var(--line);
  background:#fff;
  border-radius:var(--radius-md);
  padding:32px;
  min-height:320px;
}
.dev-panel.operating{grid-column:span 4}
.dev-panel.target{grid-column:span 5;border-top:3px solid var(--green-light)}
.dev-panel.pellet{grid-column:span 3}
.status-label{
  margin:0 0 28px;
  color:var(--green);
  font-size:12px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.dev-number{
  display:block;
  font-family:"Montserrat";
  font-size:clamp(2.8rem,5vw,4.4rem);
  line-height:1;
  color:var(--green);
  letter-spacing:-.045em;
  margin-bottom:18px;
}
.dev-panel h3{
  font-family:"Montserrat";
  margin:0 0 16px;
  font-size:20px;
  line-height:1.3;
}
.dev-panel p:last-child{color:#5A625F;margin-bottom:0}
.section-action{margin-top:32px}

.responsibility-section{padding-block:96px}
.responsibility-layout{
  display:grid;grid-template-columns:1fr 1fr;
  gap:80px;align-items:center;
}
.responsibility-layout p:not(.eyebrow){max-width:580px;color:rgba(255,255,255,.82)}
.responsibility-list{
  display:grid;
  border-top:1px solid rgba(255,255,255,.2);
}
.responsibility-list > span{
  display:grid;
  grid-template-columns:46px 1fr;
  gap:12px;
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,.17);
  color:rgba(255,255,255,.65);
}
.responsibility-list strong{color:#fff;font-weight:500}

.journey-section{background:var(--surface-alt)}
.timeline{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid #C9D1C8;
}
.timeline article{
  padding:32px 32px 0 0;
  position:relative;
}
.timeline article::before{
  content:"";
  position:absolute;top:-5px;left:0;
  width:9px;height:9px;border-radius:50%;
  background:var(--green);
}
.timeline strong{
  display:block;
  font-family:"Montserrat";
  color:var(--green);
  font-size:27px;
  margin-bottom:13px;
}
.timeline span{color:#58615D}

.contact-cta{
  background:
    linear-gradient(105deg,#173f29 0%,#1E6835 58%,#2C3032 100%);
  color:#fff;
  padding-block:76px;
}
.contact-cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:56px;
}
.contact-cta h2{color:#fff;margin-bottom:15px}
.contact-cta p:not(.eyebrow){max-width:720px;color:rgba(255,255,255,.82);margin-bottom:0}

.site-footer{
  background:linear-gradient(135deg,#212629 0%,#171B1D 100%);
  color:#D7DCDA;
  padding-top:70px;
  border-top:1px solid rgba(123,181,66,.12);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.5fr .7fr .8fr 1fr;
  gap:54px;
  padding-bottom:56px;
}
.footer-brand img{
  width:300px;
  max-width:100%;
  filter:brightness(0) invert(1);
  opacity:.94;
  margin-bottom:24px;
}
.footer-brand p{max-width:360px;margin:7px 0;color:#C9CFCC}
.footer-group{font-size:14px}
.site-footer h2{
  font-family:"Montserrat";
  color:#fff;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin:0 0 18px;
}
.site-footer a,.site-footer>div p{
  display:block;
  color:#C8CFCC;
  text-decoration:none;
  font-size:14px;
  margin:10px 0;
}
.site-footer a:hover{color:#fff}
.footer-bottom{
  min-height:62px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;align-items:center;justify-content:space-between;
  gap:20px;font-size:13px;color:#AAB2AE;
}

.reveal{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .6s ease,transform .6s ease;
}
.reveal.visible{opacity:1;transform:none}
a:focus-visible,button:focus-visible{
  outline:3px solid #D7C85F;
  outline-offset:4px;
}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{scroll-behavior:auto!important;transition:none!important;animation:none!important}
  .reveal{opacity:1;transform:none}
}

@media (max-width:1180px){
  .container{width:min(calc(100% - 48px),var(--container))}
  .brand img{width:225px}
  .primary-nav{gap:14px}
  .primary-nav>a{font-size:13px}
}

@media (max-width:1030px){
  :root{--header-h:70px}
  .menu-toggle{display:block}
  .primary-nav{
    position:fixed;
    top:var(--header-h);left:0;right:0;
    max-height:calc(100dvh - var(--header-h));
    overflow:auto;
    display:none;
    padding:24px;
    background:#fff;
    border-top:1px solid var(--line);
    box-shadow:0 24px 42px rgba(23,31,27,.12);
  }
  .primary-nav.open{display:grid;gap:0}
  .primary-nav>a{
    font-size:16px;padding:15px 0;
    border-bottom:1px solid var(--line);
  }
  .primary-nav>a::after{display:none}
  .language-switcher{border-left:0;padding:18px 0 6px}
  .split-grid{grid-template-columns:1fr 1fr;gap:50px}
  .process-flow{grid-template-columns:repeat(4,1fr)}
  .process-flow li:nth-child(4){border-right:0}
  .process-flow li:nth-child(-n+4){border-bottom:1px solid #CCD4CB}
  .dev-panel.operating{grid-column:span 4}
  .dev-panel.target{grid-column:span 8}
  .dev-panel.pellet{grid-column:span 12}
  .footer-grid{grid-template-columns:1.3fr 1fr 1fr;gap:44px}
  .footer-grid>div:last-child{grid-column:2/4}
}

@media (max-width:767px){
  .container{width:min(calc(100% - 40px),var(--container))}
  .brand img{width:205px}
  .hero{min-height:78svh}
  .hero-media img{object-position:58% center}
  .hero-overlay{
    background:linear-gradient(90deg,rgba(16,46,28,.89) 0%,rgba(23,55,36,.78) 66%,rgba(44,48,50,.25) 100%);
  }
  .hero-content{padding-block:90px 110px}
  .hero h1{font-size:clamp(2.25rem,10.5vw,3.25rem)}
  .hero-caption{bottom:18px;font-size:12px;gap:20px}
  .facts-grid{grid-template-columns:1fr 1fr}
  .fact{padding:24px 18px;border-bottom:1px solid var(--line)}
  .fact:nth-child(2){border-right:0}
  .fact:nth-child(3),.fact:nth-child(4){border-bottom:0}
  .fact:first-child{padding-left:18px}
  .fact strong{font-size:2.2rem}
  .split-grid,.local-layout,.responsibility-layout{grid-template-columns:1fr}
  .split-grid{gap:34px}
  .reverse-mobile .content-block{order:2}
  .reverse-mobile .media-frame{order:1}
  .media-large img{min-height:0}
  .group-layout{grid-template-columns:1fr;gap:36px}
  .group-link{grid-column:auto}
  .process-flow{grid-template-columns:1fr}
  .process-flow li{
    display:grid;
    grid-template-columns:52px 1fr;
    align-items:center;
    min-height:0;
    padding:16px 0;
    border-right:0;
    border-bottom:1px solid #CCD4CB!important;
  }
  .process-flow span{margin:0}
  .process-flow li:last-child{border-bottom:0!important}
  .process-media-grid{grid-template-columns:1fr}
  .development-section{background:var(--surface-alt)}
  .development-grid{display:grid;grid-template-columns:1fr}
  .dev-panel.operating,.dev-panel.target,.dev-panel.pellet{grid-column:auto}
  .responsibility-layout{gap:40px}
  .timeline{grid-template-columns:1fr;border-top:0;border-left:1px solid #C9D1C8}
  .timeline article{padding:0 0 34px 30px}
  .timeline article::before{top:9px;left:-5px}
  .contact-cta-inner{align-items:flex-start;flex-direction:column}
  .footer-grid{grid-template-columns:1fr 1fr}
  .footer-grid>div:last-child{grid-column:auto}
  .footer-brand{grid-column:1/-1}
}

@media (max-width:520px){
  .container{width:min(calc(100% - 32px),var(--container))}
  .brand img{width:180px}
  .hero-actions{align-items:flex-start;flex-direction:column}
  .hero-caption span:last-child{display:none}
  .facts-grid{gap:0}
  .fact{padding-inline:12px}
  .fact:first-child{padding-left:12px}
  .fact span{font-size:12px}
  .footer-grid{grid-template-columns:1fr}
  .footer-brand{grid-column:auto}
  .footer-bottom{align-items:flex-start;flex-direction:column;justify-content:center;padding-block:16px}
}

:root{--header-h:84px}
.brand img{
  width:340px;
  max-width:31vw;
  max-height:58px;
  object-fit:contain;
  object-position:left center;
}
.site-header{background:rgba(255,255,255,.97)}

.section-heading::after{
  content:"";
  display:block;
  width:72px;
  height:2px;
  margin-top:24px;
  background:linear-gradient(90deg,var(--gold),var(--green-light));
}
.media-frame{
  position:relative;
  border:1px solid rgba(30,104,53,.10);
  box-shadow:0 18px 48px rgba(31,46,37,.08);
}
.media-frame::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:76px;
  height:4px;
  background:linear-gradient(90deg,var(--gold),var(--green-light));
}
.about-section{
  background:
    radial-gradient(circle at 12% 18%,rgba(123,181,66,.08),transparent 28%),
    var(--surface-alt);
}
.pltbm-section{
  background:
    linear-gradient(90deg,rgba(160,142,50,.035) 0,transparent 28%),
    #fff;
}
.content-block h2{position:relative}
.asset-meta span{background:#fff}

.group-section{
  padding-block:clamp(82px,8vw,112px);
  background:
    radial-gradient(circle at 88% 8%,rgba(160,142,50,.20),transparent 23%),
    linear-gradient(118deg,#164e2b 0%,#1E6835 45%,#26342d 100%);
}
.group-header{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(280px,.55fr);
  gap:56px;
  align-items:end;
  margin-bottom:52px;
}
.group-header h2{max-width:780px;margin-bottom:0}
.group-intro{
  margin:0;
  padding-left:22px;
  border-left:1px solid rgba(255,255,255,.24);
  color:rgba(255,255,255,.76);
  font-size:15px;
}
.group-structure{
  display:grid;
  grid-template-columns:1fr 54px 1fr 54px 1fr;
  gap:10px;
  align-items:stretch;
}
.group-company{
  position:relative;
  min-height:300px;
  padding:24px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius-md);
  background:rgba(255,255,255,.055);
  overflow:hidden;
}
.group-company::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:70px;
  height:2px;
  background:var(--gold);
}
.group-company-current{
  background:linear-gradient(145deg,rgba(255,255,255,.105),rgba(255,255,255,.055));
  border-color:rgba(123,181,66,.44);
}
.group-logo-box{
  height:168px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  border-radius:6px;
  background:rgba(255,255,255,.96);
}
.group-logo-box img{
  display:block;
  width:108px;
  height:108px;
  object-fit:contain;
}
.group-logo-box.pei-logo img{width:122px;height:122px}
.group-logo-box.pgi-group-logo img{width:118px;height:118px}
.group-step{
  display:block;
  margin-bottom:7px;
  color:#D5C66A;
  font-family:"Montserrat",Arial,sans-serif;
  font-size:12px;
  font-weight:700;
  letter-spacing:.14em;
}
.group-company h3{
  margin:0;
  color:#fff;
  font-family:"Montserrat",Arial,sans-serif;
  font-size:17px;
  line-height:1.42;
}
.group-connector{
  align-self:center;
  justify-self:center;
  display:grid;
  place-items:center;
  width:40px;
  height:40px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:50%;
  color:#D5C66A;
  font-size:22px;
}
.group-link{margin-top:34px}

.process-image{
  position:relative;
  min-height:360px;
  border:1px solid rgba(30,104,53,.08);
  box-shadow:0 16px 36px rgba(32,43,37,.07);
}
.process-image img{height:100%;min-height:360px}
.process-image::after{
  content:"";
  position:absolute;
  inset:40% 0 0;
  background:linear-gradient(180deg,transparent,rgba(20,35,27,.78));
  pointer-events:none;
}
.process-image figcaption{
  position:absolute;
  z-index:2;
  left:24px;
  right:24px;
  bottom:20px;
  padding:0;
  color:#fff;
}
.process-image figcaption span{
  display:block;
  margin-bottom:3px;
  color:#D7C85F;
  font-size:11px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.process-image figcaption strong{
  display:block;
  font-family:"Montserrat",Arial,sans-serif;
  font-size:17px;
  font-weight:600;
}

.dev-panel{
  position:relative;
  box-shadow:0 12px 32px rgba(31,46,37,.055);
  overflow:hidden;
}
.dev-panel::after{
  content:"";
  position:absolute;
  right:-35px;
  bottom:-45px;
  width:120px;
  height:120px;
  border:1px solid rgba(30,104,53,.08);
  border-radius:50%;
}
.dev-panel.target{background:linear-gradient(145deg,#fff 64%,rgba(123,181,66,.07))}

.responsibility-list{border-top:1px solid rgba(255,255,255,.2)}
.responsibility-item{
  display:grid;
  grid-template-columns:42px 38px 1fr;
  align-items:center;
  gap:12px;
  min-height:72px;
  border-bottom:1px solid rgba(255,255,255,.17);
}
.responsibility-icon{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  min-width:42px;
  padding:0;
  border:1px solid rgba(215,200,95,.55);
  border-radius:50%;
  background:rgba(16,34,25,.08);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.03);
}
.responsibility-icon svg{
  width:18px;
  height:18px;
  display:block;
  fill:none;
  stroke:#D7C85F;
  stroke-width:1.5;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.responsibility-number{
  display:block;
  padding:0;
  border:0;
  color:rgba(255,255,255,.60);
  font-size:13px;
  font-weight:600;
}
.responsibility-item strong{color:#fff;font-weight:500}

.timeline article::before{display:none}
.timeline-leaf{
  position:absolute;
  top:-17px;
  left:-7px;
  width:28px;
  height:34px;
  object-fit:contain;
  padding:4px;
  background:var(--surface-alt);
}
.timeline strong{margin-top:3px}

.contact-cta-inner{align-items:center}
.contact-cta-side{
  flex:0 0 280px;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  justify-content:center;
  gap:12px;
}
.btn-contact{
  min-width:240px;
  min-height:58px;
  justify-content:space-between;
  padding-inline:28px;
  font-size:15px;
}

.footer-brand-lockup{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:24px;
  padding:14px 16px 14px 0;
}
.footer-brand-lockup img{
  width:62px;
  height:62px;
  object-fit:contain;
  filter:none;
  opacity:1;
  margin:0;
}
.footer-brand-lockup strong{
  max-width:240px;
  color:#fff;
  font-family:"Montserrat",Arial,sans-serif;
  font-size:15px;
  line-height:1.35;
  letter-spacing:.06em;
}

@media (max-width:1280px){
  .brand img{width:292px;max-width:28vw}
}

@media (max-width:1100px){
  .group-structure{grid-template-columns:1fr 42px 1fr 42px 1fr}
  .group-company{padding:18px;min-height:280px}
  .group-logo-box{height:150px}
}

@media (max-width:1030px){
  :root{--header-h:76px}
  .brand img{width:300px;max-width:65vw;max-height:52px}
  .group-header{grid-template-columns:1fr;gap:22px}
  .group-intro{max-width:680px}
}

@media (max-width:767px){
  .brand img{width:250px;max-width:68vw}
  .group-structure{grid-template-columns:1fr;gap:14px}
  .group-company{min-height:0}
  .group-logo-box{height:148px}
  .group-connector{transform:rotate(90deg);margin:0 auto}
  .process-image,.process-image img{min-height:290px}
  .responsibility-item{grid-template-columns:40px 34px 1fr}
  .timeline-leaf{top:1px;left:-18px;width:32px;height:36px;background:var(--surface-alt)}
  .contact-cta-side{flex:0 0 auto;width:min(100%,340px)}
  .btn-contact{width:100%;min-width:0}
}

@media (max-width:520px){
  .brand img{width:225px;max-width:72vw}
  .group-logo-box{height:130px}
  .group-logo-box img{width:92px;height:92px}
  .process-image,.process-image img{min-height:250px}
}

.contact-cta .contact-email{display:none!important;}

.homepage-news-section{background:#fff}
.homepage-news-heading{display:flex;justify-content:space-between;align-items:flex-end;gap:45px}
.homepage-news-heading h2{margin:0;font-family:"Montserrat";font-size:clamp(2rem,3.5vw,2.9rem);line-height:1.17;letter-spacing:-.03em}
.homepage-news-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}
.homepage-news-card{display:grid;grid-template-columns:.92fr 1.08fr;overflow:hidden;border:1px solid rgba(30,104,53,.12);border-radius:9px;background:#F8FAF7;color:inherit;text-decoration:none;transition:transform .22s ease,box-shadow .22s ease}
.homepage-news-card:hover{transform:translateY(-3px);box-shadow:0 16px 38px rgba(24,45,30,.08)}
.homepage-news-photo{min-height:245px;overflow:hidden}
.homepage-news-photo img{width:100%;height:100%;object-fit:cover;display:block}
.homepage-news-copy{padding:24px;display:flex;flex-direction:column;justify-content:center}
.homepage-news-meta{display:flex;flex-wrap:wrap;gap:8px 14px;font-size:10px;font-weight:700;letter-spacing:.07em;text-transform:uppercase}
.homepage-news-meta span{color:var(--green)}
.homepage-news-meta time{color:#7A857F}
.homepage-news-copy h3{margin:12px 0 18px;font-family:"Montserrat";font-size:clamp(1.2rem,1.8vw,1.55rem);line-height:1.28;letter-spacing:-.015em}
.homepage-news-copy strong{color:var(--green);font-size:13px}
@media(max-width:900px){.homepage-news-card{grid-template-columns:1fr}.homepage-news-photo{min-height:220px}}
@media(max-width:767px){.homepage-news-heading{align-items:flex-start;flex-direction:column;gap:18px}.homepage-news-grid{grid-template-columns:1fr}}


.local-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 88% 18%,rgba(123,181,66,.22) 0%,rgba(123,181,66,0) 34%),
    linear-gradient(112deg,#EDF6E9 0%,#DDEFD6 52%,#CFE6C6 100%);
  border-top:1px solid rgba(30,104,53,.10);
  border-bottom:1px solid rgba(30,104,53,.14);
}
.local-section::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-190px;
  width:430px;
  height:430px;
  border:1px solid rgba(30,104,53,.10);
  border-radius:50%;
  pointer-events:none;
}
.local-layout{position:relative;z-index:1}
.local-layout h2{color:#24402D}
.local-layout p{color:#3F5545}
.local-section .eyebrow{color:var(--green)}

.language-switcher[hidden]{display:none!important}
