/*
Theme Name:        GRGO Theme
Theme URI:         https://www.grgobv.nl
Author:            BonusGroup
Author URI:        https://www.bonusgroup.nl
Description:       Modern, fast, mobile-first WordPress theme for GRGO BV (Groen Recycling Goeree-Overflakkee) — agrarisch loonwerk, biomassa, grondhandel, compost, transport en circulaire oplossingen. Earthy industrial design. Elementor-compatible, ACF-driven, LiteSpeed-friendly. Lightweight: no page-builder dependency for the core layout.
Version:           1.0.0
Requires at least: 6.0
Tested up to:      6.7
Requires PHP:      7.4
License:           GNU General Public License v2 or later
License URI:       http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       grgo
Tags:              business, industrial, agriculture, custom-colors, custom-menu, featured-images, threaded-comments
*/

/* =====================================================================
   1. DESIGN TOKENS
   ===================================================================== */
:root{
  --c-green-900:#14271b;   /* near-black green — header, footer, dark sections */
  --c-green-800:#1c3826;
  --c-green-700:#284b34;   /* primary dark green */
  --c-green-500:#3d6b48;   /* mid green — hover */
  --c-accent:#ec7521;      /* oranje (logo) — CTA / highlights */
  --c-accent-dk:#b5540e;
  --c-clay:#b06a3a;        /* earthy soil accent — used sparingly */
  --c-ink:#1a1a17;
  --c-stone-50:#f6f5f1;    /* warm off-white page bg */
  --c-stone-100:#edece5;
  --c-stone-200:#e1dfd6;
  --c-stone-300:#cbc8bc;   /* borders */
  --c-stone-500:#86837a;   /* muted text */
  --c-stone-600:#6a6860;
  --c-white:#ffffff;

  --font-head:'Archivo','Arial Narrow',Arial,sans-serif;
  --font-body:'IBM Plex Sans',-apple-system,Segoe UI,Roboto,sans-serif;

  --maxw:1240px;
  --gap:clamp(1.25rem,3vw,2.75rem);
  --radius:4px;
  --shadow-sm:0 1px 3px rgba(20,39,27,.10);
  --shadow-md:0 14px 40px -16px rgba(20,39,27,.34);
  --shadow-lg:0 30px 70px -24px rgba(20,39,27,.45);
  --ease:cubic-bezier(.22,.61,.36,1);
  --header-h:96px;
}

/* =====================================================================
   2. RESET & BASE
   ===================================================================== */
*,*::before,*::after{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;}
body{
  margin:0;font-family:var(--font-body);
  color:var(--c-ink);background:var(--c-stone-50);
  font-size:17px;line-height:1.65;-webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block;}
a{color:var(--c-green-700);text-decoration:none;transition:color .2s var(--ease);}
a:hover{color:var(--c-accent-dk);}
ul,ol{margin:0 0 1rem;padding-left:1.2rem;}
p{margin:0 0 1rem;}
h1,h2,h3,h4,h5{
  font-family:var(--font-head);font-weight:800;line-height:1.08;
  margin:0 0 .55em;color:var(--c-green-900);letter-spacing:-.015em;
}
h1{font-size:clamp(2.3rem,5.4vw,4rem);}
h2{font-size:clamp(1.8rem,3.6vw,2.85rem);}
h3{font-size:clamp(1.25rem,2vw,1.55rem);}
h4{font-size:1.05rem;}
hr{border:0;border-top:1px solid var(--c-stone-300);margin:2.5rem 0;}
::selection{background:var(--c-accent);color:var(--c-green-900);}
:focus-visible{outline:3px solid var(--c-accent);outline-offset:2px;}

/* =====================================================================
   3. LAYOUT HELPERS
   ===================================================================== */
.grgo-container{max-width:var(--maxw);margin-inline:auto;padding-inline:clamp(1.1rem,4vw,2.5rem);}
.grgo-section{padding-block:clamp(3.5rem,8vw,7rem);}
.grgo-section--tight{padding-block:clamp(2.5rem,5vw,4rem);}
.grgo-section--dark{background:var(--c-green-900);color:#dfe6df;}
.grgo-section--dark h1,.grgo-section--dark h2,.grgo-section--dark h3{color:#fff;}
.grgo-section--stone{background:var(--c-stone-100);}
.grgo-grid{display:grid;gap:var(--gap);}
@media(min-width:680px){.grgo-grid--2{grid-template-columns:repeat(2,1fr);}}
@media(min-width:900px){
  .grgo-grid--3{grid-template-columns:repeat(3,1fr);}
  .grgo-grid--4{grid-template-columns:repeat(4,1fr);}
}

/* section heading block */
.grgo-kicker{
  display:inline-flex;align-items:center;gap:.55rem;
  font-family:var(--font-head);font-weight:700;font-size:.78rem;
  letter-spacing:.16em;text-transform:uppercase;color:var(--c-accent-dk);
  margin-bottom:1rem;
}
.grgo-kicker::before{content:"";width:30px;height:2px;background:var(--c-accent);}
.grgo-section--dark .grgo-kicker{color:var(--c-accent);}
.grgo-shead{max-width:680px;margin-bottom:clamp(2rem,4vw,3.25rem);}
.grgo-shead--center{margin-inline:auto;text-align:center;}
.grgo-shead--center .grgo-kicker::before{display:none;}
.grgo-lead{font-size:1.13rem;color:var(--c-stone-600);}
.grgo-section--dark .grgo-lead{color:#b9c4ba;}

/* =====================================================================
   4. ICONS & BUTTONS
   ===================================================================== */
.grgo-icon{width:1.15em;height:1.15em;fill:currentColor;flex:none;vertical-align:-.16em;}
.grgo-btn{
  --bg:var(--c-green-700);--fg:#fff;
  display:inline-flex;align-items:center;gap:.55rem;
  background:var(--bg);color:var(--fg);
  font-family:var(--font-head);font-weight:700;font-size:.95rem;
  letter-spacing:.01em;padding:.95rem 1.7rem;border:2px solid var(--bg);
  border-radius:var(--radius);cursor:pointer;transition:.22s var(--ease);
  text-align:center;line-height:1.1;
}
.grgo-btn:hover{transform:translateY(-2px);box-shadow:var(--shadow-md);color:var(--fg);}
.grgo-btn .grgo-icon{transition:transform .22s var(--ease);}
.grgo-btn:hover .grgo-icon{transform:translateX(3px);}
.grgo-btn--accent{--bg:var(--c-accent);--fg:var(--c-green-900);}
.grgo-btn--accent:hover{--bg:var(--c-accent-dk);}
.grgo-btn--ghost{--bg:transparent;--fg:#fff;border-color:rgba(255,255,255,.45);}
.grgo-btn--ghost:hover{border-color:#fff;background:rgba(255,255,255,.08);}
.grgo-btn--outline{--bg:transparent;--fg:var(--c-green-700);border-color:var(--c-stone-300);}
.grgo-btn--outline:hover{--fg:var(--c-green-900);border-color:var(--c-green-700);}
.grgo-btn--lg{padding:1.1rem 2rem;font-size:1.02rem;}
.grgo-btn--block{width:100%;justify-content:center;}

/* =====================================================================
   5. HEADER
   ===================================================================== */
.grgo-topbar{
  background:var(--c-green-900);color:#aeb9af;
  font-size:.83rem;border-bottom:1px solid rgba(255,255,255,.07);
}
.grgo-topbar .grgo-container{display:flex;justify-content:space-between;
  align-items:center;gap:1rem;padding-block:.5rem;flex-wrap:wrap;}
.grgo-topbar a{color:#cfd8cf;display:inline-flex;align-items:center;gap:.35rem;}
.grgo-topbar a:hover{color:var(--c-accent);}
.grgo-topbar__set{display:flex;gap:1.3rem;flex-wrap:wrap;}
.grgo-topbar__note{color:var(--c-accent);font-weight:600;}
.grgo-topbar__social{display:flex;gap:.85rem;}

.grgo-header{
  position:sticky;top:0;z-index:90;background:var(--c-white);
  border-bottom:1px solid var(--c-stone-200);transition:box-shadow .25s;
}
.grgo-header.is-stuck{box-shadow:var(--shadow-sm);}
.grgo-header__bar{
  display:flex;align-items:center;justify-content:space-between;
  gap:1.5rem;min-height:var(--header-h);
}
.grgo-logo{display:flex;align-items:center;gap:.7rem;font-family:var(--font-head);
  font-weight:900;font-size:1.5rem;color:var(--c-green-900);letter-spacing:-.02em;}
.grgo-logo img{max-height:54px;width:auto;}
.grgo-logo span small{display:block;font-size:.62rem;font-weight:600;
  letter-spacing:.13em;color:var(--c-stone-500);text-transform:uppercase;}

.grgo-nav{display:flex;align-items:center;gap:.4rem;}
.grgo-nav ul{display:flex;list-style:none;margin:0;padding:0;gap:.2rem;}
.grgo-nav a{
  font-family:var(--font-head);font-weight:600;font-size:.96rem;
  color:var(--c-green-900);padding:.6rem .85rem;border-radius:var(--radius);
  position:relative;
}
.grgo-nav a:hover,.grgo-nav .current-menu-item>a,
.grgo-nav .current_page_item>a{color:var(--c-accent-dk);}
.grgo-nav .current-menu-item>a::after,.grgo-nav a:hover::after{
  content:"";position:absolute;left:.85rem;right:.85rem;bottom:.32rem;
  height:2px;background:var(--c-accent);
}
.grgo-header__cta{display:flex;align-items:center;gap:.8rem;}
.grgo-header__phone{
  font-family:var(--font-head);font-weight:800;color:var(--c-green-900);
  display:inline-flex;align-items:center;gap:.4rem;font-size:1.02rem;
}
.grgo-header__phone .grgo-icon{color:var(--c-accent-dk);}

.grgo-burger{
  display:none;width:46px;height:46px;border:2px solid var(--c-stone-300);
  background:none;border-radius:var(--radius);cursor:pointer;
  flex-direction:column;justify-content:center;align-items:center;gap:5px;
}
.grgo-burger span{width:22px;height:2px;background:var(--c-green-900);transition:.25s;}
.grgo-burger.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.grgo-burger.is-open span:nth-child(2){opacity:0;}
.grgo-burger.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

@media(max-width:1040px){
  .grgo-burger{display:flex;}
  .grgo-header__cta .grgo-btn,.grgo-header__phone{display:none;}
  .grgo-nav{
    position:fixed;inset:0 0 0 auto;width:min(86vw,360px);
    background:var(--c-white);flex-direction:column;align-items:stretch;
    padding:calc(var(--header-h) + 1rem) 1.4rem 2rem;
    transform:translateX(100%);transition:transform .3s var(--ease);
    box-shadow:var(--shadow-lg);overflow-y:auto;
  }
  .grgo-nav.is-open{transform:translateX(0);}
  .grgo-nav ul{flex-direction:column;gap:.1rem;}
  .grgo-nav a{padding:.95rem .6rem;font-size:1.08rem;
    border-bottom:1px solid var(--c-stone-200);border-radius:0;}
  .grgo-nav a::after{display:none!important;}
  .grgo-nav .grgo-btn{margin-top:1.2rem;}
}
.grgo-scrim{
  position:fixed;inset:0;background:rgba(20,39,27,.5);z-index:80;
  opacity:0;visibility:hidden;transition:.3s;
}
.grgo-scrim.is-open{opacity:1;visibility:visible;}

/* =====================================================================
   6. HERO
   ===================================================================== */
.grgo-hero{
  position:relative;background:var(--c-green-900);color:#fff;
  min-height:min(86vh,760px);display:flex;align-items:center;
  padding-block:clamp(3.5rem,9vw,6.5rem);overflow:hidden;
}
.grgo-hero__bg{position:absolute;inset:0;z-index:0;}
.grgo-hero__bg img{width:100%;height:100%;object-fit:cover;}
.grgo-hero__bg::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(100deg,rgba(20,39,27,.94) 8%,rgba(20,39,27,.72) 48%,rgba(20,39,27,.35) 100%);
}
.grgo-hero__grid{position:absolute;inset:0;z-index:1;opacity:.5;
  background-image:linear-gradient(rgba(236,117,33,.07) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(236,117,33,.07) 1px,transparent 1px);
  background-size:64px 64px;}
.grgo-hero .grgo-container{position:relative;z-index:2;}
.grgo-hero__inner{max-width:760px;}
.grgo-hero h1{color:#fff;margin-bottom:1.1rem;}
.grgo-hero h1 em{font-style:normal;color:var(--c-accent);}
.grgo-hero__text{font-size:1.2rem;color:#cfd8cf;max-width:560px;}
.grgo-hero__btns{display:flex;gap:1rem;flex-wrap:wrap;margin-top:1.9rem;}
.grgo-hero__stats{
  display:flex;gap:clamp(1.4rem,4vw,3.4rem);margin-top:3rem;
  padding-top:2rem;border-top:1px solid rgba(255,255,255,.14);flex-wrap:wrap;
}
.grgo-stat__num{font-family:var(--font-head);font-weight:900;
  font-size:clamp(2rem,4vw,2.9rem);color:var(--c-accent);line-height:1;}
.grgo-stat__lbl{font-size:.85rem;letter-spacing:.06em;text-transform:uppercase;
  color:#aeb9af;margin-top:.35rem;}

/* page hero (interior pages) */
.grgo-pagehero{
  position:relative;background:var(--c-green-900);color:#fff;
  padding-block:clamp(3rem,7vw,5.5rem);overflow:hidden;
}
.grgo-pagehero__bg{position:absolute;inset:0;}
.grgo-pagehero__bg img{width:100%;height:100%;object-fit:cover;}
.grgo-pagehero__bg::after{content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(20,39,27,.78),rgba(20,39,27,.92));}
.grgo-pagehero .grgo-container{position:relative;z-index:2;}
.grgo-pagehero h1{color:#fff;max-width:18ch;}
.grgo-pagehero__sub{font-size:1.13rem;color:#cfd8cf;max-width:60ch;}
.grgo-crumbs{font-size:.85rem;color:#9fb0a3;margin-bottom:1rem;
  display:flex;gap:.5rem;flex-wrap:wrap;}
.grgo-crumbs a{color:#cfd8cf;}
.grgo-crumbs a:hover{color:var(--c-accent);}

/* =====================================================================
   7. SERVICE CARDS
   ===================================================================== */
.grgo-svc{
  position:relative;background:var(--c-white);border:1px solid var(--c-stone-200);
  border-radius:var(--radius);padding:2rem 1.8rem 1.8rem;overflow:hidden;
  transition:.25s var(--ease);display:flex;flex-direction:column;
}
.grgo-svc::before{content:"";position:absolute;left:0;top:0;bottom:0;width:4px;
  background:var(--c-accent);transform:scaleY(0);transform-origin:top;
  transition:transform .3s var(--ease);}
.grgo-svc:hover{transform:translateY(-5px);box-shadow:var(--shadow-md);border-color:transparent;}
.grgo-svc:hover::before{transform:scaleY(1);}
.grgo-svc__icon{
  width:54px;height:54px;border-radius:var(--radius);
  background:var(--c-green-900);color:var(--c-accent);
  display:flex;align-items:center;justify-content:center;margin-bottom:1.1rem;
}
.grgo-svc__icon .grgo-icon{width:26px;height:26px;}
.grgo-svc h3{margin-bottom:.4rem;}
.grgo-svc h3 a{color:inherit;}
.grgo-svc p{color:var(--c-stone-600);font-size:.97rem;flex-grow:1;}
.grgo-svc__more{
  font-family:var(--font-head);font-weight:700;font-size:.9rem;
  color:var(--c-green-700);display:inline-flex;align-items:center;gap:.4rem;
  margin-top:.6rem;
}
.grgo-svc:hover .grgo-svc__more{color:var(--c-accent-dk);}
.grgo-svc:hover .grgo-svc__more .grgo-icon{transform:translateX(4px);}
.grgo-svc__more .grgo-icon{transition:transform .25s var(--ease);}
.grgo-svc--photo{padding:0;}
.grgo-svc--photo .grgo-svc__img{aspect-ratio:16/10;overflow:hidden;}
.grgo-svc--photo .grgo-svc__img img{width:100%;height:100%;object-fit:cover;
  transition:transform .5s var(--ease);}
.grgo-svc--photo:hover .grgo-svc__img img{transform:scale(1.05);}
.grgo-svc--photo .grgo-svc__body{padding:1.6rem 1.6rem 1.7rem;}

/* =====================================================================
   8. ABOUT / SPLIT SECTIONS
   ===================================================================== */
.grgo-split{display:grid;gap:clamp(2rem,5vw,4rem);align-items:center;}
@media(min-width:920px){.grgo-split{grid-template-columns:1.05fr 1fr;}
  .grgo-split--rev .grgo-split__media{order:2;}}
.grgo-split__media{position:relative;}
.grgo-split__media img{border-radius:var(--radius);box-shadow:var(--shadow-md);
  width:100%;object-fit:cover;}
.grgo-split__media .grgo-img-main{aspect-ratio:4/3;}
.grgo-split__badge{
  position:absolute;bottom:-26px;right:-10px;background:var(--c-accent);
  color:var(--c-green-900);padding:1.1rem 1.4rem;border-radius:var(--radius);
  font-family:var(--font-head);box-shadow:var(--shadow-md);max-width:230px;
}
.grgo-split__badge b{display:block;font-size:1.9rem;line-height:1;}
.grgo-split__badge span{font-size:.8rem;letter-spacing:.05em;text-transform:uppercase;}
.grgo-split__img2{
  position:absolute;width:46%;bottom:-32px;left:-28px;
  border:6px solid var(--c-stone-50);aspect-ratio:1;object-fit:cover;
}
.grgo-checklist{list-style:none;padding:0;margin:1.4rem 0;}
.grgo-checklist li{display:flex;gap:.7rem;align-items:flex-start;
  margin-bottom:.7rem;font-weight:500;}
.grgo-checklist .grgo-icon{color:var(--c-accent-dk);width:22px;height:22px;
  margin-top:.15rem;flex:none;}
.grgo-section--dark .grgo-checklist .grgo-icon{color:var(--c-accent);}

/* =====================================================================
   9. FEATURE / WHY GRID
   ===================================================================== */
.grgo-feat{padding:1.9rem 1.6rem;background:var(--c-white);
  border:1px solid var(--c-stone-200);border-radius:var(--radius);
  transition:.25s var(--ease);}
.grgo-feat:hover{border-color:var(--c-accent);box-shadow:var(--shadow-sm);}
.grgo-feat__icon{width:48px;height:48px;border-radius:50%;
  background:rgba(236,117,33,.16);color:var(--c-green-700);
  display:flex;align-items:center;justify-content:center;margin-bottom:1rem;}
.grgo-feat__icon .grgo-icon{width:24px;height:24px;}
.grgo-feat h3{font-size:1.18rem;}
.grgo-feat p{color:var(--c-stone-600);font-size:.95rem;margin:0;}
.grgo-section--dark .grgo-feat{background:var(--c-green-800);border-color:rgba(255,255,255,.08);}
.grgo-section--dark .grgo-feat p{color:#b9c4ba;}
.grgo-section--dark .grgo-feat__icon{background:rgba(236,117,33,.2);color:var(--c-accent);}

/* =====================================================================
   10. MACHINES
   ===================================================================== */
.grgo-machine{background:var(--c-white);border-radius:var(--radius);
  overflow:hidden;border:1px solid var(--c-stone-200);transition:.25s var(--ease);}
.grgo-machine:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);}
.grgo-machine__img{aspect-ratio:4/3;background:var(--c-stone-200);overflow:hidden;}
.grgo-machine__img img{width:100%;height:100%;object-fit:cover;
  transition:transform .5s var(--ease);}
.grgo-machine:hover .grgo-machine__img img{transform:scale(1.06);}
.grgo-machine__body{padding:1.1rem 1.2rem 1.3rem;}
.grgo-machine__body h4{margin-bottom:.2rem;}
.grgo-machine__body p{font-size:.88rem;color:var(--c-stone-600);margin:0;}

/* =====================================================================
   11. SUSTAINABILITY BANNER
   ===================================================================== */
.grgo-banner{position:relative;color:#fff;overflow:hidden;
  background:var(--c-green-900);}
.grgo-banner__bg{position:absolute;inset:0;}
.grgo-banner__bg img{width:100%;height:100%;object-fit:cover;opacity:.32;}
.grgo-banner__bg::after{content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(20,39,27,.95),rgba(20,39,27,.55));}
.grgo-banner .grgo-container{position:relative;z-index:2;}

/* =====================================================================
   12. PROJECTS
   ===================================================================== */
.grgo-proj{position:relative;display:block;border-radius:var(--radius);
  overflow:hidden;background:var(--c-green-900);}
.grgo-proj__img{aspect-ratio:4/3;}
.grgo-proj__img img{width:100%;height:100%;object-fit:cover;
  transition:transform .55s var(--ease);}
.grgo-proj:hover .grgo-proj__img img{transform:scale(1.07);}
.grgo-proj__ov{position:absolute;inset:0;display:flex;flex-direction:column;
  justify-content:flex-end;padding:1.5rem;
  background:linear-gradient(transparent 35%,rgba(20,39,27,.92));}
.grgo-proj__tag{font-family:var(--font-head);font-weight:700;font-size:.74rem;
  letter-spacing:.13em;text-transform:uppercase;color:var(--c-accent);
  margin-bottom:.35rem;}
.grgo-proj__ov h3{color:#fff;font-size:1.25rem;margin:0;}
.grgo-proj__loc{color:#bcc7bd;font-size:.86rem;display:flex;align-items:center;
  gap:.3rem;margin-top:.3rem;}

/* before / after slider */
.grgo-ba{position:relative;border-radius:var(--radius);overflow:hidden;
  user-select:none;aspect-ratio:16/10;}
.grgo-ba img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.grgo-ba__after{clip-path:inset(0 0 0 50%);}
.grgo-ba__range{position:absolute;inset:0;width:100%;margin:0;opacity:0;
  cursor:ew-resize;}
.grgo-ba__handle{position:absolute;top:0;bottom:0;left:50%;width:3px;
  background:#fff;transform:translateX(-50%);pointer-events:none;}
.grgo-ba__handle::after{content:"";position:absolute;top:50%;left:50%;
  width:42px;height:42px;border-radius:50%;background:var(--c-accent);
  transform:translate(-50%,-50%);box-shadow:var(--shadow-md);}
.grgo-ba__lbl{position:absolute;bottom:12px;font-family:var(--font-head);
  font-weight:700;font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;
  background:rgba(20,39,27,.8);color:#fff;padding:.3rem .6rem;border-radius:3px;}
.grgo-ba__lbl--b{left:12px;}.grgo-ba__lbl--a{right:12px;}

/* =====================================================================
   13. REVIEWS
   ===================================================================== */
.grgo-review{background:var(--c-white);border:1px solid var(--c-stone-200);
  border-radius:var(--radius);padding:2rem 1.8rem;position:relative;}
.grgo-review__stars{color:var(--c-accent);letter-spacing:.15em;font-size:1rem;
  margin-bottom:.8rem;}
.grgo-review blockquote{margin:0 0 1.3rem;font-size:1.05rem;line-height:1.55;
  color:var(--c-ink);}
.grgo-review__by{font-family:var(--font-head);font-weight:800;
  color:var(--c-green-900);}
.grgo-review__role{font-size:.85rem;color:var(--c-stone-500);}

/* =====================================================================
   14. CTA BLOCK
   ===================================================================== */
.grgo-cta-band{position:relative;overflow:hidden;background:var(--c-green-700);
  color:#fff;border-radius:var(--radius);}
.grgo-cta-band__bg{position:absolute;inset:0;}
.grgo-cta-band__bg img{width:100%;height:100%;object-fit:cover;opacity:.22;}
.grgo-cta-band__bg::after{content:"";position:absolute;inset:0;
  background:linear-gradient(120deg,var(--c-green-800),rgba(40,75,52,.6));}
.grgo-cta-band__inner{position:relative;z-index:2;
  padding:clamp(2.4rem,5vw,3.6rem) clamp(1.6rem,5vw,3.6rem);
  display:flex;gap:2rem;align-items:center;justify-content:space-between;
  flex-wrap:wrap;}
.grgo-cta-band h2{color:#fff;margin:0;}
.grgo-cta-band p{color:#cfd8cf;margin:.6rem 0 0;max-width:46ch;}
.grgo-cta-band__btns{display:flex;gap:.9rem;flex-wrap:wrap;}

/* =====================================================================
   15. CERTS & PARTNERS
   ===================================================================== */
.grgo-certs{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center;}
.grgo-cert{display:flex;align-items:center;gap:.6rem;
  background:var(--c-white);border:1px solid var(--c-stone-200);
  border-radius:var(--radius);padding:.85rem 1.3rem;font-family:var(--font-head);
  font-weight:700;color:var(--c-green-900);}
.grgo-cert .grgo-icon{color:var(--c-accent-dk);}
.grgo-cert img{max-height:40px;width:auto;}
.grgo-partners{display:flex;flex-wrap:wrap;gap:clamp(1.5rem,4vw,3.5rem);
  align-items:center;justify-content:center;}
.grgo-partner{filter:grayscale(1);opacity:.55;transition:.25s;}
.grgo-partner:hover{filter:none;opacity:1;}
.grgo-partner img{max-height:52px;width:auto;}
.grgo-partner--ph{width:140px;height:52px;border:2px dashed var(--c-stone-300);
  border-radius:3px;display:flex;align-items:center;justify-content:center;
  font-size:.75rem;color:var(--c-stone-500);filter:none;opacity:1;}

/* =====================================================================
   16. SINGLE / CONTENT
   ===================================================================== */
.grgo-content{max-width:780px;}
.grgo-content h2{margin-top:2rem;}
.grgo-content img{border-radius:var(--radius);margin:1.5rem 0;}
.grgo-prose p:first-child{font-size:1.13rem;color:var(--c-stone-600);}
.grgo-aside{position:sticky;top:calc(var(--header-h) + 1.5rem);}
.grgo-card{background:var(--c-white);border:1px solid var(--c-stone-200);
  border-radius:var(--radius);padding:1.6rem;}
.grgo-card--dark{background:var(--c-green-900);color:#dfe6df;border:0;}
.grgo-card--dark h3{color:#fff;}
.grgo-card h3{font-size:1.2rem;}
.grgo-areas{list-style:none;padding:0;margin:0;}
.grgo-areas li{display:flex;gap:.5rem;align-items:center;padding:.45rem 0;
  border-bottom:1px solid var(--c-stone-200);font-weight:500;}
.grgo-card--dark .grgo-areas li{border-color:rgba(255,255,255,.1);}
.grgo-areas .grgo-icon{color:var(--c-accent-dk);width:18px;height:18px;}
.grgo-card--dark .grgo-areas .grgo-icon{color:var(--c-accent);}

@media(min-width:980px){
  .grgo-single-grid{display:grid;grid-template-columns:1fr 340px;
    gap:clamp(2rem,4vw,3.5rem);}
}
.grgo-gallery{display:grid;gap:.8rem;grid-template-columns:repeat(2,1fr);}
@media(min-width:680px){.grgo-gallery{grid-template-columns:repeat(3,1fr);}}
.grgo-gallery a{display:block;aspect-ratio:1;overflow:hidden;border-radius:3px;}
.grgo-gallery img{width:100%;height:100%;object-fit:cover;transition:transform .4s;}
.grgo-gallery a:hover img{transform:scale(1.08);}

/* spec list */
.grgo-specs{list-style:none;padding:0;margin:0;}
.grgo-specs li{display:flex;justify-content:space-between;gap:1rem;
  padding:.6rem 0;border-bottom:1px solid var(--c-stone-200);font-size:.94rem;}
.grgo-specs li b{font-family:var(--font-head);color:var(--c-green-900);}
.grgo-card--dark .grgo-specs li{border-color:rgba(255,255,255,.12);}
.grgo-card--dark .grgo-specs li b{color:#fff;}

/* news cards */
.grgo-post{background:var(--c-white);border:1px solid var(--c-stone-200);
  border-radius:var(--radius);overflow:hidden;display:flex;flex-direction:column;
  transition:.25s var(--ease);}
.grgo-post:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);}
.grgo-post__img{aspect-ratio:16/10;overflow:hidden;background:var(--c-stone-200);}
.grgo-post__img img{width:100%;height:100%;object-fit:cover;transition:transform .5s;}
.grgo-post:hover .grgo-post__img img{transform:scale(1.05);}
.grgo-post__body{padding:1.3rem 1.4rem 1.5rem;display:flex;flex-direction:column;flex-grow:1;}
.grgo-post__date{font-size:.8rem;color:var(--c-stone-500);font-weight:600;
  letter-spacing:.04em;text-transform:uppercase;margin-bottom:.5rem;}
.grgo-post__body h3{font-size:1.18rem;}
.grgo-post__body h3 a{color:inherit;}
.grgo-post__body p{color:var(--c-stone-600);font-size:.93rem;flex-grow:1;}

/* =====================================================================
   17. FORMS
   ===================================================================== */
.grgo-formwrap{background:var(--c-white);border:1px solid var(--c-stone-200);
  border-radius:var(--radius);padding:clamp(1.6rem,4vw,2.6rem);}
input[type=text],input[type=email],input[type=tel],input[type=url],
input[type=search],textarea,select{
  width:100%;font-family:var(--font-body);font-size:1rem;
  padding:.8rem .95rem;border:1.5px solid var(--c-stone-300);
  border-radius:var(--radius);background:var(--c-stone-50);color:var(--c-ink);
  transition:.18s;
}
input:focus,textarea:focus,select:focus{outline:0;border-color:var(--c-accent-dk);
  background:#fff;box-shadow:0 0 0 3px rgba(236,117,33,.18);}
label{font-weight:600;font-size:.92rem;display:block;margin-bottom:.3rem;}
.wpcf7-submit,.ff-btn-submit,button[type=submit]{
  background:var(--c-accent)!important;color:var(--c-green-900)!important;
  border:0!important;font-family:var(--font-head)!important;font-weight:700!important;
  padding:.95rem 1.8rem!important;border-radius:var(--radius)!important;cursor:pointer;
}

/* =====================================================================
   18. FOOTER
   ===================================================================== */
.grgo-footer{background:var(--c-green-900);color:#9fb0a3;font-size:.95rem;}
.grgo-footer__top{padding-block:clamp(3rem,6vw,4.5rem);}
.grgo-footer__grid{display:grid;gap:2.5rem;}
@media(min-width:760px){.grgo-footer__grid{grid-template-columns:1.5fr 1fr 1fr 1.3fr;}}
.grgo-footer h4{color:#fff;font-size:.95rem;letter-spacing:.06em;
  text-transform:uppercase;margin-bottom:1.1rem;}
.grgo-footer a{color:#bcc7bd;}
.grgo-footer a:hover{color:var(--c-accent);}
.grgo-footer ul{list-style:none;padding:0;margin:0;}
.grgo-footer li{padding:.3rem 0;}
.grgo-footer__brand .grgo-logo{color:#fff;margin-bottom:1rem;}
.grgo-footer__brand .grgo-logo span small{color:#7d8c80;}
.grgo-footer__contact li{display:flex;gap:.6rem;align-items:flex-start;}
.grgo-footer__contact .grgo-icon{color:var(--c-accent);margin-top:.2rem;}
.grgo-footer__social{display:flex;gap:.7rem;margin-top:1rem;}
.grgo-footer__social a{width:40px;height:40px;border:1px solid rgba(255,255,255,.15);
  border-radius:50%;display:flex;align-items:center;justify-content:center;}
.grgo-footer__social a:hover{background:var(--c-accent);border-color:var(--c-accent);
  color:var(--c-green-900);}
.grgo-footer__bar{border-top:1px solid rgba(255,255,255,.09);
  padding-block:1.3rem;font-size:.84rem;}
.grgo-footer__bar .grgo-container{display:flex;justify-content:space-between;
  gap:1rem;flex-wrap:wrap;}

/* =====================================================================
   19. MOBILE STICKY CTA BAR
   ===================================================================== */
.grgo-mobilebar{
  position:fixed;left:0;right:0;bottom:0;z-index:85;display:none;
  background:var(--c-white);border-top:1px solid var(--c-stone-200);
  box-shadow:0 -6px 20px -8px rgba(20,39,27,.3);
}
.grgo-mobilebar a{flex:1;display:flex;flex-direction:column;align-items:center;
  gap:.15rem;padding:.55rem .3rem;font-family:var(--font-head);font-weight:700;
  font-size:.72rem;color:var(--c-green-900);}
.grgo-mobilebar a .grgo-icon{width:21px;height:21px;color:var(--c-green-700);}
.grgo-mobilebar a.is-accent{background:var(--c-accent);color:var(--c-green-900);}
.grgo-mobilebar a.is-accent .grgo-icon{color:var(--c-green-900);}
@media(max-width:760px){
  .grgo-mobilebar{display:flex;}
  body{padding-bottom:62px;}
}

/* =====================================================================
   20. ANIMATIONS
   ===================================================================== */
.grgo-reveal{opacity:0;transform:translateY(26px);
  transition:opacity .7s var(--ease),transform .7s var(--ease);}
.grgo-reveal.is-in{opacity:1;transform:none;}
.grgo-reveal[data-d="1"]{transition-delay:.08s;}
.grgo-reveal[data-d="2"]{transition-delay:.16s;}
.grgo-reveal[data-d="3"]{transition-delay:.24s;}
@media(prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important;scroll-behavior:auto;}
  .grgo-reveal{opacity:1;transform:none;}
}

/* =====================================================================
   21. UTILITIES
   ===================================================================== */
.grgo-center{text-align:center;}
.grgo-mt{margin-top:2.2rem;}
.grgo-mt-sm{margin-top:1rem;}
.screen-reader-text{position:absolute!important;width:1px;height:1px;
  overflow:hidden;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);}
.grgo-map{aspect-ratio:16/9;border-radius:var(--radius);overflow:hidden;
  border:1px solid var(--c-stone-200);}
.grgo-map iframe{width:100%;height:100%;border:0;display:block;}
.grgo-pagination{display:flex;gap:.4rem;justify-content:center;margin-top:3rem;}
.grgo-pagination .page-numbers{padding:.6rem .95rem;border:1px solid var(--c-stone-300);
  border-radius:var(--radius);font-family:var(--font-head);font-weight:700;
  color:var(--c-green-900);}
.grgo-pagination .current{background:var(--c-green-700);color:#fff;border-color:var(--c-green-700);}
.grgo-empty{text-align:center;padding:4rem 1rem;color:var(--c-stone-500);}
