/* =============================================================
   EAB AWNINGS — Design System
   Awnings · Pergolas · Fences · South Florida
   Light-first, warm outdoor-living brand. Premium + friendly.
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  color-scheme: light;

  /* Brand — greens */
  --green-900:#0c3319; --green-800:#0f3f20; --green-700:#15512a;
  --green-600:#1c6a37; --green-500:#2c8a4c; --green-400:#4aa96a;
  --green-050:#eef6ef;
  /* Brand — reds (awning) */
  --red-700:#a50d25; --red-600:#c8102e; --red-500:#e2243f; --red-050:#fdeef0;
  /* Brand — sun/gold */
  --gold-600:#e08a12; --gold-500:#f5a623; --gold-400:#ffbe3d; --gold-300:#ffd15c;
  /* Accents */
  --sky-500:#2fa8e0; --wood:#8a5a2b;
  /* Warm neutrals */
  --cream:#fbf6ec; --paper:#ffffff; --sand:#f4ecdb; --sand-2:#efe6d2;
  --ink-900:#14211a; --ink-700:#2b3a30; --ink-600:#3c4d41; --ink-500:#5c6d61;
  --line:#e8e0cf; --line-2:#ded4bf;

  /* Semantic */
  --bg:var(--paper);
  --bg-alt:var(--cream);
  --surface:var(--paper);
  --text:var(--ink-900);
  --text-soft:var(--ink-700);
  --text-muted:var(--ink-500);
  --primary:var(--green-700);
  --primary-600:var(--green-600);
  --primary-ink:#ffffff;
  --accent:var(--red-600);
  --accent-ink:#ffffff;
  --border:var(--line);

  /* Type */
  --font-display:'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans:'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --fs-xs:.8125rem; --fs-sm:.9375rem; --fs-base:1.0625rem; --fs-md:1.1875rem;
  --fs-lg:1.375rem; --fs-xl:1.75rem;
  --fs-h3:clamp(1.35rem, 1.1rem + 1.1vw, 1.85rem);
  --fs-h2:clamp(1.85rem, 1.35rem + 2.2vw, 2.9rem);
  --fs-h1:clamp(2.35rem, 1.5rem + 3.6vw, 4rem);
  --lh-tight:1.12; --lh-snug:1.3; --lh:1.65;

  /* Space */
  --s-1:.25rem; --s-2:.5rem; --s-3:.75rem; --s-4:1rem; --s-5:1.5rem;
  --s-6:2rem; --s-7:3rem; --s-8:4rem; --s-9:6rem; --s-10:8rem;
  --section-y:clamp(3.5rem, 2.2rem + 5vw, 7rem);
  --gutter:clamp(1.15rem, .6rem + 2.4vw, 2.4rem);
  --container:1200px; --container-wide:1320px; --container-narrow:760px;

  /* Radius */
  --r-xs:8px; --r-sm:12px; --r:16px; --r-lg:22px; --r-xl:30px; --r-pill:999px;

  /* Shadows (warm) */
  --shadow-xs:0 1px 2px rgba(20,45,25,.06);
  --shadow-sm:0 2px 8px rgba(20,45,25,.07);
  --shadow:0 10px 30px -12px rgba(16,40,22,.22);
  --shadow-lg:0 26px 60px -22px rgba(14,42,24,.34);
  --shadow-gold:0 14px 34px -12px rgba(224,138,18,.5);

  /* Motion */
  --ease-out:cubic-bezier(.22,.61,.36,1);
  --ease-expo:cubic-bezier(.16,1,.3,1);
  --ease-spring:cubic-bezier(.32,.72,0,1);
  --t-fast:.18s; --t:.34s; --t-slow:.6s;

  --header-h:74px;
}

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box}
*{margin:0}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;scroll-padding-top:calc(var(--header-h) + 12px)}
body{
  font-family:var(--font-sans);
  font-size:var(--fs-base);
  line-height:var(--lh);
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img,picture,svg,video{display:block;max-width:100%;height:auto}
/* Any <picture> sitting inside a fixed aspect-ratio media box (gallery tiles, service
   cards, post cards, the WHY-section photo) needs a real height to stretch its <img
   width:100%;height:100%;object-fit:cover> against — the reset above sets picture's
   height to auto, which lets the <img> fall back to its own natural ratio and can leave
   a blank gap under landscape photos in a taller box. Force it to fill its parent here. */
.service-card__media picture,.why-split__media picture,.gallery__item picture,.post-card__media picture{width:100%;height:100%}
input,button,textarea,select{font:inherit;color:inherit}
button{cursor:pointer;background:none;border:none}
a{color:var(--primary-600);text-decoration:none}
a:hover{color:var(--green-700)}
ul,ol{padding:0;list-style:none}
h1,h2,h3,h4{font-family:var(--font-display);font-optical-sizing:auto;font-weight:600;line-height:var(--lh-snug);color:var(--ink-900);letter-spacing:-.01em}
:focus-visible{outline:3px solid var(--gold-500);outline-offset:2px;border-radius:4px}

.visually-hidden{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}
.skip-link{position:absolute;left:12px;top:-60px;z-index:200;background:var(--green-700);color:#fff;padding:.7rem 1.1rem;border-radius:0 0 10px 10px;transition:top .2s}
.skip-link:focus{top:0;color:#fff}

/* ---------- Layout ---------- */
.container{width:100%;max-width:var(--container);margin-inline:auto;padding-inline:var(--gutter)}
.container--wide{max-width:var(--container-wide)}
.container--narrow{max-width:var(--container-narrow)}
.section{padding-block:var(--section-y)}
.section--alt{background:var(--bg-alt)}
.section--sand{background:linear-gradient(180deg,#fbf6ec,#f4ecdb)}
.section--tight{padding-block:clamp(2.2rem,1.6rem + 2vw,3.4rem)}
.section--forest{
  background:radial-gradient(120% 140% at 100% 0%, #1c6a37 0%, #124a25 46%, #0c3319 100%);
  color:#eaf5ec;
}
.section--forest h1,.section--forest h2,.section--forest h3{color:#fff}
.grid{display:grid;gap:var(--s-5)}
.stack>*+*{margin-top:var(--s-4)}

/* ---------- Shared bits ---------- */
.eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  font-family:var(--font-sans);font-weight:700;font-size:var(--fs-sm);
  letter-spacing:.14em;text-transform:uppercase;color:var(--green-600);
}
.eyebrow::before{content:"";width:26px;height:2px;background:linear-gradient(90deg,var(--gold-500),var(--red-600));border-radius:2px}
.eyebrow--center{justify-content:center}
.section--forest .eyebrow{color:var(--gold-300)}
.section--forest .eyebrow::before{background:linear-gradient(90deg,var(--gold-300),#fff)}

.section-head{max-width:640px;margin-bottom:clamp(1.8rem,1rem + 2vw,3rem)}
.section-head--center{margin-inline:auto;text-align:center}
.section-head__title{font-size:var(--fs-h2);margin-top:.7rem}
.section-head__lead{margin-top:.9rem;color:var(--text-soft);font-size:var(--fs-md)}
.section--forest .section-head__lead{color:#cfe6d4}

.text-gold{color:var(--gold-600)} .text-red{color:var(--red-600)} .text-green{color:var(--green-600)}
.u-underline{
  background:linear-gradient(120deg,var(--gold-300),var(--gold-400));
  box-shadow:inset 0 -.42em 0 rgba(245,166,35,.28);
  padding:0 .06em;border-radius:3px;
}
/* Awning stripe divider */
.stripe{height:12px;width:100%;
  background:repeating-linear-gradient(90deg,var(--red-600) 0 34px,#fff 34px 68px);
  border-block:2px solid rgba(0,0,0,.05)}
.stripe--scallop{height:20px;background:none;position:relative}

/* ---------- Buttons ---------- */
.btn{
  --btn-bg:var(--green-700); --btn-ink:#fff; --btn-bd:transparent;
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  font-family:var(--font-sans);font-weight:700;font-size:var(--fs-sm);line-height:1;
  padding:.95rem 1.5rem;min-height:52px;border-radius:var(--r-pill);
  background:var(--btn-bg);color:var(--btn-ink);border:2px solid var(--btn-bd);
  box-shadow:var(--shadow-sm);cursor:pointer;text-align:center;
  transition:transform var(--t-fast) var(--ease-out),box-shadow var(--t) var(--ease-out),background var(--t-fast);
  -webkit-tap-highlight-color:transparent;
}
.btn:hover{transform:translateY(-2px);box-shadow:var(--shadow);color:var(--btn-ink)}
.btn:active{transform:translateY(0)}
.btn__i{width:18px;height:18px;flex:none}
.btn--primary{--btn-bg:var(--green-700)}
.btn--primary:hover{--btn-bg:var(--green-800)}
.btn--accent{--btn-bg:var(--red-600);box-shadow:0 8px 20px -10px rgba(200,16,46,.5)}
.btn--accent:hover{--btn-bg:var(--red-700);box-shadow:0 10px 24px -10px rgba(200,16,46,.55)}
.btn--gold{--btn-bg:var(--gold-500);--btn-ink:#3a2606;box-shadow:0 8px 20px -10px rgba(224,138,18,.45)}
.btn--gold:hover{--btn-bg:var(--gold-600);--btn-ink:#3a2606}
.btn--outline{--btn-bg:transparent;--btn-ink:var(--green-700);--btn-bd:var(--green-600);box-shadow:none}
.btn--outline:hover{--btn-bg:var(--green-050);--btn-ink:var(--green-700)}
.btn--ghost{--btn-bg:rgba(255,255,255,.12);--btn-ink:#fff;--btn-bd:rgba(255,255,255,.4);box-shadow:none;backdrop-filter:blur(4px)}
.btn--ghost:hover{--btn-bg:rgba(255,255,255,.22);--btn-ink:#fff}
.btn--lg{min-height:58px;padding:1.05rem 1.9rem;font-size:var(--fs-base)}
.btn--block{display:flex;width:100%}
.btn-row{display:flex;flex-wrap:wrap;gap:.8rem}

/* ---------- Header / Nav ---------- */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(255,255,255,.82);backdrop-filter:saturate(1.4) blur(12px);
  border-bottom:1px solid transparent;
  transition:box-shadow var(--t),border-color var(--t),background var(--t);
}
.site-header.is-stuck{border-color:var(--line);box-shadow:0 6px 22px -16px rgba(16,40,22,.5);background:rgba(255,255,255,.94)}
.nav{display:flex;align-items:center;gap:1.2rem;min-height:var(--header-h)}
.brand{display:flex;align-items:center;flex:none}
.brand__logo{height:58px;width:auto;flex:none;display:block}
.nav__spacer{flex:1}
.nav__links{display:flex;align-items:center;gap:.35rem}
.nav__link{
  position:relative;display:inline-flex;align-items:center;gap:.3rem;
  font-weight:600;font-size:.95rem;color:var(--ink-700);
  padding:.55rem .8rem;border-radius:10px;transition:color var(--t-fast),background var(--t-fast);
}
.nav__link:hover,.nav__link[aria-current="page"]{color:var(--green-700);background:var(--green-050)}
.nav__link[aria-current="page"]{color:var(--green-700)}
.nav__cta{display:inline-flex;align-items:center;gap:.9rem;flex:none}
.nav__phone{display:inline-flex;align-items:center;gap:.5rem;font-weight:800;color:var(--green-700);font-size:.98rem;white-space:nowrap}
.nav__phone svg{width:18px;height:18px;color:var(--red-600)}
.nav__phone span{display:flex;flex-direction:column;line-height:1.05}
.nav__phone small{font-size:.62rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--text-muted)}

/* dropdown */
.has-dropdown{position:relative}
.dropdown{
  position:absolute;top:calc(100% + 8px);left:0;min-width:250px;
  background:#fff;border:1px solid var(--line);border-radius:var(--r);box-shadow:var(--shadow-lg);
  padding:.5rem;opacity:0;visibility:hidden;transform:translateY(8px);
  transition:opacity var(--t-fast),transform var(--t-fast),visibility var(--t-fast);
}
.has-dropdown:hover .dropdown,.has-dropdown:focus-within .dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown a{display:flex;gap:.7rem;align-items:flex-start;padding:.6rem .7rem;border-radius:10px;color:var(--ink-700)}
.dropdown a:hover{background:var(--green-050);color:var(--green-700)}
.dropdown a b{display:block;font-family:var(--font-sans);font-weight:700;font-size:.95rem;color:var(--ink-900)}
.dropdown a small{color:var(--text-muted);font-size:.82rem}
.dropdown a:hover b{color:var(--green-700)}
.dropdown .di{width:20px;height:20px;color:var(--green-600);flex:none;margin-top:2px}

.nav-toggle{display:none;width:46px;height:46px;border-radius:12px;align-items:center;justify-content:center;color:var(--green-800);border:1px solid var(--line)}
.nav-toggle svg{width:26px;height:26px}
.nav-toggle .x{display:none}
.nav-toggle[aria-expanded="true"] .x{display:block}
.nav-toggle[aria-expanded="true"] .bars{display:none}

/* mobile menu */
.mobile-menu{
  position:fixed;inset:var(--header-h) 0 0;z-index:99;background:#fff;
  padding:1.2rem var(--gutter) 2.5rem;overflow-y:auto;
  transform:translateX(100%);transition:transform var(--t) var(--ease-spring);
  visibility:hidden;
}
.mobile-menu.is-open{transform:translateX(0);visibility:visible}
.mobile-menu a{display:block;padding:.95rem .4rem;font-weight:600;font-size:1.1rem;color:var(--ink-800,#1f2c24);border-bottom:1px solid var(--line)}
.mobile-menu a.mm-sub{padding-left:1.5rem;font-size:1rem;color:var(--ink-600);font-weight:500}
.mobile-menu .mm-head{margin-top:1rem;font-size:.75rem;letter-spacing:.16em;text-transform:uppercase;color:var(--text-muted);font-weight:700}
.mobile-menu .btn{margin-top:1.4rem}

/* ---------- Hero billboard (full-photo slideshow, content over image) ---------- */
.billboard{position:relative;overflow:hidden;display:flex;align-items:center;min-height:clamp(540px,72vh,700px);background:var(--green-900)}
.billboard__slides{position:absolute;inset:0}
.billboard__slide{position:absolute;inset:0;opacity:0;transition:opacity 1s var(--ease-out)}
.billboard__slide.is-active{opacity:1}
.billboard__slide picture{width:100%;height:100%}
.billboard__slide img{width:100%;height:100%;object-fit:cover;transform:scale(1.06);will-change:transform}
/* Ken Burns — the active slide slowly zooms + pans; re-runs each time it becomes active */
.billboard__slide.is-active img{animation:kenburns 7s var(--ease-out) both}
@keyframes kenburns{0%{transform:scale(1.16) translate(1.4%,1%)}100%{transform:scale(1.05) translate(-1.2%,-.8%)}}
.billboard__scrim{position:absolute;inset:0;background:
  linear-gradient(75deg,rgba(9,25,14,.78) 0%,rgba(9,25,14,.46) 45%,rgba(9,25,14,.12) 78%),
  linear-gradient(180deg,rgba(9,25,14,0) 52%,rgba(9,25,14,.58) 100%)}
/* bottom padding reserves the zone the product cards overlap into */
.billboard__inner{position:relative;z-index:2;width:100%;padding-top:clamp(2.5rem,2rem + 2vw,4rem);padding-bottom:clamp(8.5rem,7rem + 5vw,12rem)}
.billboard__content{max-width:660px;color:#fff}
/* hero copy rises in on load, staggered */
.billboard__content>*{animation:hero-rise .9s var(--ease-expo) both}
.billboard__title{animation-delay:.15s}
.billboard__lead{animation-delay:.32s}
.billboard__cta{animation-delay:.48s}
@keyframes hero-rise{from{opacity:0;transform:translateY(26px)}to{opacity:1;transform:none}}
.billboard__title{color:#fff;font-size:var(--fs-h1);line-height:var(--lh-tight);letter-spacing:-.02em;text-shadow:0 2px 26px rgba(0,0,0,.38)}
.billboard__rotate{color:var(--gold-300);font-style:italic;transition:opacity .3s var(--ease-out)}
.billboard__rotate.is-swapping{opacity:0}
.billboard__lead{margin-top:1.25rem;font-size:var(--fs-md);color:#f0f7f1;max-width:36em;text-shadow:0 1px 14px rgba(0,0,0,.45)}
.billboard__cta{margin-top:1.9rem}

/* ---------- Product cards — first row overlaps the hero photo ---------- */
.products{position:relative;z-index:3;padding-bottom:var(--section-y)}
.products .container{margin-top:calc(-1*clamp(5rem,4rem + 4vw,7.5rem))}
.products-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--s-5)}
.product-card{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);box-shadow:var(--shadow);padding:1rem 1rem 1.6rem;display:flex;flex-direction:column;align-items:center;text-align:center;
  transition:transform var(--t) var(--ease-out),box-shadow var(--t) var(--ease-out)}
.product-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
.product-card__media{display:block;width:100%;aspect-ratio:4/3;border-radius:var(--r);overflow:hidden;background:var(--sand)}
.product-card__media picture{width:100%;height:100%}
.product-card__media img{width:100%;height:100%;object-fit:cover;transition:transform .7s var(--ease-out)}
.product-card:hover .product-card__media img{transform:scale(1.05)}
.product-card__title{margin-top:1.15rem;font-size:var(--fs-lg)}
.product-card__title a{color:inherit}
.product-card__title a:hover{color:var(--green-700)}
.product-card__desc{margin-top:.45rem;color:var(--text-soft);font-size:var(--fs-sm);max-width:36ch}
.product-card__btn{margin-top:1.15rem}
.btn--sm{min-height:44px;padding:.7rem 1.35rem;font-size:.9rem}

/* ---------- Who we are (metrics + photo collage with round badge) ---------- */
.who__grid{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(1.8rem,1rem + 3.5vw,4.5rem);align-items:center}
.who__metrics{margin-top:1.9rem;display:grid;grid-template-columns:1fr 1fr;gap:var(--s-4)}
.who-metric{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:1.35rem 1.25rem;box-shadow:var(--shadow-sm)}
.who-metric__num{font-family:var(--font-display);font-weight:700;font-size:clamp(1.9rem,1.4rem + 1.6vw,2.6rem);color:var(--green-700);line-height:1;letter-spacing:-.02em}
.who-metric__label{margin-top:.4rem;font-weight:700;font-size:.92rem;color:var(--ink-900)}
.who-metric p{margin-top:.45rem;font-size:.83rem;color:var(--text-muted);line-height:1.55}
.who__collage{position:relative;display:grid;grid-template-columns:1fr 1fr;gap:var(--s-4)}
.who__ph{border-radius:var(--r);overflow:hidden;aspect-ratio:1/1;box-shadow:var(--shadow-sm);background:var(--sand)}
.who__ph picture{width:100%;height:100%}
.who__ph img{width:100%;height:100%;object-fit:cover}
.who__badge{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:134px;height:134px;border-radius:50%;
  background:var(--green-700);border:5px solid #fff;box-shadow:var(--shadow-lg);
  display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;color:#fff}
.who__badge-num{font-family:var(--font-display);font-weight:700;font-size:2rem;line-height:1;color:var(--gold-300)}
.who__badge-txt{font-size:.7rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;line-height:1.3;margin-top:.25rem}

/* ---------- Work strip (edge-to-edge project photos, scroll-snap) ---------- */
.work-strip{position:relative}
.work-strip__viewport{display:flex;gap:6px;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;-webkit-overflow-scrolling:touch}
.work-strip__viewport::-webkit-scrollbar{display:none}
.work-strip__item{flex:0 0 clamp(250px,26vw,390px);aspect-ratio:4/3;scroll-snap-align:start;display:block;overflow:hidden;background:var(--sand)}
.work-strip__item picture{width:100%;height:100%}
.work-strip__item img{width:100%;height:100%;object-fit:cover;transition:transform .7s var(--ease-out)}
.work-strip__item:hover img{transform:scale(1.05)}
.work-strip__nav{position:absolute;top:50%;transform:translateY(-50%);width:46px;height:46px;border-radius:50%;
  background:rgba(255,255,255,.94);color:var(--green-800);display:grid;place-items:center;box-shadow:var(--shadow);z-index:2;transition:background var(--t-fast)}
.work-strip__nav:hover{background:#fff}
.work-strip__nav svg{width:22px;height:22px}
.work-strip__nav--prev{left:14px}
.work-strip__nav--prev svg{transform:rotate(180deg)}
.work-strip__nav--next{right:14px}

/* ---------- Reliable band (dark) + floating idea card ---------- */
.reliable{padding-bottom:0}
.reliable__grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.6rem,1rem + 3vw,4rem);align-items:center}
.reliable__title{font-size:var(--fs-h2);color:#fff}
.reliable__copy{display:grid;gap:1rem;color:#cfe6d4;font-size:.98rem}
.stats.stats--bare{grid-template-columns:repeat(3,1fr);margin-top:clamp(2.6rem,2rem + 2.5vw,4.5rem)}
.stats.stats--bare .stat{background:none;border:none;box-shadow:none;padding:0}
.stats.stats--bare .stat__num{font-size:clamp(2.6rem,2rem + 2.6vw,4rem)}
/* card hangs 64px below the dark band, over the next section */
.idea-card{position:relative;z-index:2;margin-top:clamp(2.8rem,2.2rem + 2.5vw,4.5rem);margin-bottom:-64px;
  background:#fff;border-radius:var(--r-xl);box-shadow:var(--shadow-lg);padding:clamp(1.6rem,1.2rem + 2vw,3rem);
  display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(1.4rem,1rem + 2.5vw,3.2rem);align-items:center}
.idea-card__body h2,.section--forest .idea-card__body h2{color:var(--ink-900);font-size:clamp(1.6rem,1.3rem + 1.4vw,2.2rem)}
.idea-card__body p{margin-top:.85rem;color:var(--text-soft)}
.idea-card__body .btn{margin-top:1.4rem}
.idea-card__media{border-radius:var(--r-lg);overflow:hidden;aspect-ratio:4/3;box-shadow:var(--shadow-sm);background:var(--sand)}
.idea-card__media picture{width:100%;height:100%}
.idea-card__media img{width:100%;height:100%;object-fit:cover}

/* ---------- Start here (narrow centered card, stacked rows) ---------- */
.start-here{padding-top:calc(var(--section-y) + 64px + 1.5rem)}
.start-card{max-width:680px;margin-inline:auto;background:#fff;border:1px solid var(--line);border-radius:var(--r-xl);box-shadow:var(--shadow);padding:clamp(1.2rem,1rem + 1.5vw,2.4rem)}
.start-card__row{display:flex;flex-direction:column;align-items:center;text-align:center;padding:1.8rem 1rem}
.start-card__row+.start-card__row{border-top:1px solid var(--line)}
.start-card__icon{width:58px;height:58px;border-radius:16px;background:var(--red-050);color:var(--red-600);display:grid;place-items:center;margin-bottom:1rem}
.start-card__icon svg{width:30px;height:30px}
.start-card__row h3{font-size:var(--fs-lg)}
.start-card__row p{margin-top:.5rem;color:var(--text-soft);font-size:var(--fs-sm);max-width:44ch}
.start-card__link{margin-top:.9rem;display:inline-flex;align-items:center;gap:.4rem;font-weight:700;color:var(--green-700)}
.start-card__link:hover{color:var(--green-800)}
.start-card__link svg{width:16px;height:16px}

/* ---------- Results + call now ---------- */
.results__grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(1.8rem,1rem + 3.5vw,4.5rem);align-items:center}
.results__media{border-radius:var(--r-xl);overflow:hidden;box-shadow:var(--shadow-lg);aspect-ratio:3/4;max-width:520px;background:var(--sand)}
.results__media picture{width:100%;height:100%}
.results__media img{width:100%;height:100%;object-fit:cover}
.results__list{margin-top:1.7rem;display:grid;gap:1.25rem}
.result-item{display:flex;gap:1rem;align-items:flex-start}
.result-item__icon{width:52px;height:52px;border-radius:14px;background:var(--green-050);color:var(--green-600);display:grid;place-items:center;flex:none}
.result-item__icon svg{width:26px;height:26px}
.result-item h3{font-family:var(--font-sans);font-weight:700;font-size:1.05rem;color:var(--ink-900)}
.result-item p{margin-top:.25rem;color:var(--text-soft);font-size:.95rem}
.results__call{margin-top:2.1rem;display:flex;align-items:center;gap:1.4rem;flex-wrap:wrap}
.results__call h2{font-size:var(--fs-xl)}

/* ---------- Testimonial cards (3-up) ---------- */
.testi-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--s-5);max-width:1080px;margin-inline:auto}
.testi-card{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:1.7rem 1.5rem;box-shadow:var(--shadow-sm);display:flex;flex-direction:column}
.testi-card__stars{display:flex;gap:2px;color:var(--gold-500);margin-bottom:.9rem}
.testi-card__stars svg{width:16px;height:16px}
.testi-card__quote{color:var(--text-soft);font-size:.95rem;line-height:1.65;flex:1}
.testi-card__name{margin-top:1.1rem;font-weight:700;color:var(--green-700);font-size:.95rem}
.testi-card__meta{margin-top:2px;font-size:.82rem;color:var(--text-muted)}

/* trust bar — static, centered, wraps on small screens (no auto-scroll ticker) */
.trustbar{background:var(--green-800);color:#dff0e2;border-block:1px solid rgba(255,255,255,.08)}
.marquee__track{display:flex;flex-wrap:wrap;justify-content:center;gap:.7rem 2.2rem;padding-block:1rem}
.marquee__item{display:inline-flex;align-items:center;gap:.55rem;font-weight:600;font-size:.88rem;white-space:nowrap;color:#dff0e2}
.marquee__item svg{width:17px;height:17px;color:var(--gold-300);flex:none}

/* ---------- Stats ---------- */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:var(--s-4)}
.stat{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:1.4rem 1.2rem;text-align:center;box-shadow:var(--shadow-xs)}
.section--forest .stat{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.16)}
.stat__num{font-family:var(--font-display);font-weight:700;font-size:clamp(2rem,1.4rem + 2vw,2.9rem);color:var(--green-700);line-height:1;letter-spacing:-.02em}
.section--forest .stat__num{color:var(--gold-300)}
.stat__label{margin-top:.5rem;font-size:.9rem;font-weight:600;color:var(--text-muted)}
.section--forest .stat__label{color:#cfe6d4}

/* ---------- Service cards ---------- */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--s-5)}
.service-card{
  position:relative;background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);
  overflow:hidden;box-shadow:var(--shadow-sm);display:flex;flex-direction:column;
  transition:transform var(--t) var(--ease-out),box-shadow var(--t) var(--ease-out),border-color var(--t)}
.service-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg);border-color:var(--line-2)}
.service-card__media{aspect-ratio:16/11;overflow:hidden;position:relative}
.service-card__media img{width:100%;height:100%;object-fit:cover;transition:transform .7s var(--ease-out)}
.service-card:hover .service-card__media img{transform:scale(1.06)}
.service-card__icon{position:absolute;left:14px;bottom:-22px;width:52px;height:52px;border-radius:14px;background:#fff;
  display:grid;place-items:center;box-shadow:var(--shadow);color:var(--green-600);border:1px solid var(--line)}
.service-card__icon svg{width:26px;height:26px}
.service-card__body{padding:1.9rem 1.4rem 1.5rem;display:flex;flex-direction:column;flex:1}
.service-card__title{font-size:var(--fs-lg)}
.service-card__desc{margin-top:.5rem;color:var(--text-soft);font-size:var(--fs-sm)}
.service-card__list{margin-top:.9rem;display:flex;flex-wrap:wrap;gap:.4rem}
.service-card__list li{font-size:.78rem;font-weight:600;color:var(--green-700);background:var(--green-050);padding:.28rem .6rem;border-radius:var(--r-pill)}
.service-card__link{margin-top:auto;padding-top:1.1rem;display:inline-flex;align-items:center;gap:.4rem;font-weight:700;color:var(--red-600)}
.service-card__link svg{width:16px;height:16px;transition:transform var(--t-fast)}
.service-card:hover .service-card__link svg{transform:translateX(4px)}

/* ---------- Feature split ---------- */
.feature{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.6rem,1rem + 3vw,4rem);align-items:center}
.feature+.feature{margin-top:var(--section-y)}
.feature--reverse .feature__media{order:2}
.feature__media{position:relative}
.feature__media img{width:100%;border-radius:var(--r-xl);box-shadow:var(--shadow-lg);object-fit:cover}
.feature__media .tag{position:absolute;bottom:14px;left:14px;background:rgba(12,51,25,.86);color:#fff;font-weight:600;font-size:.8rem;padding:.5rem .85rem;border-radius:var(--r-pill);backdrop-filter:blur(4px)}
.feature-list{margin-top:1.3rem;display:grid;gap:.75rem}
.feature-list li{display:flex;gap:.7rem;align-items:flex-start;color:var(--text-soft)}
.feature-list li b{color:var(--ink-900)}
.check{width:24px;height:24px;flex:none;color:var(--green-600);margin-top:1px}

/* ---------- Why list (editorial, photo + rows — not a card grid) ---------- */
.why-split{display:grid;grid-template-columns:.85fr 1.15fr;gap:clamp(1.6rem,1rem + 3vw,4rem);align-items:center}
.why-split__media{border-radius:var(--r-xl);overflow:hidden;box-shadow:var(--shadow-lg);aspect-ratio:4/5}
.why-split__media img{width:100%;height:100%;object-fit:cover}
.why-list{margin-top:1.6rem;display:grid;gap:1.4rem}
.why-item{display:flex;gap:1rem;align-items:flex-start}
.why-item__icon{width:22px;height:22px;color:var(--green-600);flex:none;margin-top:.25rem}
.why-item h3{font-family:var(--font-sans);font-weight:700;font-size:1.05rem;color:var(--ink-900)}
.why-item p{margin-top:.3rem;color:var(--text-soft);font-size:.97rem}

/* ---------- Type list (spec-sheet rows — not a repeated icon-card grid) ---------- */
.type-list{border-top:1px solid var(--line)}
.type-row{display:flex;gap:1.2rem;align-items:flex-start;padding:1.6rem 0;border-bottom:1px solid var(--line)}
.type-row__icon{width:46px;height:46px;border-radius:50%;background:#fff;border:1.5px solid var(--line-2);display:grid;place-items:center;color:var(--green-600);flex:none}
.type-row__icon svg{width:22px;height:22px}
.type-row h3{font-family:var(--font-sans);font-weight:700;font-size:var(--fs-md);color:var(--ink-900)}
.type-row p{margin-top:.35rem;color:var(--text-soft);font-size:.97rem;max-width:56ch}

/* ---------- Portfolio ---------- */
.gallery__filters{display:flex;flex-wrap:wrap;gap:.55rem;margin-bottom:1.6rem}
.filter-btn{font-weight:600;font-size:.88rem;padding:.55rem 1rem;border-radius:var(--r-pill);border:1px solid var(--line);color:var(--ink-700);background:#fff;transition:all var(--t-fast)}
.filter-btn:hover{border-color:var(--green-400);color:var(--green-700)}
.filter-btn.is-active{background:var(--green-700);border-color:var(--green-700);color:#fff}
.gallery__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--s-4);grid-auto-flow:dense}
.gallery__grid--few{grid-template-columns:repeat(auto-fit,minmax(260px,340px));justify-content:center}
.gallery__item{position:relative;border-radius:var(--r);overflow:hidden;box-shadow:var(--shadow-sm);aspect-ratio:4/3;cursor:pointer;background:var(--sand)}
.gallery__item.is-tall{grid-row:span 2;aspect-ratio:3/4}
.gallery__item img{width:100%;height:100%;object-fit:cover;transition:transform .7s var(--ease-out)}
.gallery__item:hover img{transform:scale(1.07)}
.gallery__item figcaption{position:absolute;inset:auto 0 0 0;padding:1.4rem .9rem .8rem;color:#fff;font-size:.82rem;font-weight:600;
  background:linear-gradient(180deg,transparent,rgba(10,30,16,.82));opacity:0;transform:translateY(8px);transition:opacity var(--t),transform var(--t)}
.gallery__item:hover figcaption,.gallery__item:focus-within figcaption{opacity:1;transform:translateY(0)}
.gallery__tag{position:absolute;top:10px;left:10px;background:rgba(255,255,255,.92);color:var(--green-700);font-weight:700;font-size:.72rem;padding:.28rem .6rem;border-radius:var(--r-pill);text-transform:capitalize}
.gallery__item.is-hidden{display:none}

/* lightbox */
.lightbox{position:fixed;inset:0;z-index:200;background:rgba(9,22,13,.9);display:none;align-items:center;justify-content:center;padding:4vw}
.lightbox.is-open{display:flex}
.lightbox img{max-width:92vw;max-height:88vh;border-radius:var(--r);box-shadow:var(--shadow-lg)}
.lightbox__close{position:absolute;top:18px;right:20px;width:48px;height:48px;border-radius:50%;background:rgba(255,255,255,.14);color:#fff;display:grid;place-items:center}
.lightbox__close svg{width:26px;height:26px}
.lightbox__nav{position:absolute;top:50%;transform:translateY(-50%);width:52px;height:52px;border-radius:50%;background:rgba(255,255,255,.14);color:#fff;display:grid;place-items:center}
.lightbox__nav svg{width:28px;height:28px}
.lightbox__nav.prev{left:16px}.lightbox__nav.next{right:16px}

/* ---------- Testimonials (editorial: one featured quote + a quiet row) ---------- */
.testi-feature{max-width:760px;margin:0 auto 2.6rem;text-align:center}
.testi-feature__stars{display:flex;gap:3px;justify-content:center;color:var(--gold-500);margin-bottom:1rem}
.testi-feature__stars svg{width:18px;height:18px}
.testi-feature__quote{font-family:var(--font-display);font-style:italic;font-size:clamp(1.35rem,1.05rem + 1.2vw,1.9rem);line-height:1.45;color:var(--ink-900);font-weight:500}
.section--forest .testi-feature__quote{color:#fff}
.testi-feature__meta{margin-top:1.2rem;font-weight:700;font-size:.92rem;color:var(--ink-700)}
.testi-feature__meta span{font-weight:500;color:var(--text-muted)}
.section--forest .testi-feature__meta{color:#dcefe0}
.section--forest .testi-feature__meta span{color:#9dc4a5}

.testi-row{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid var(--line);max-width:1000px;margin-inline:auto}
.section--forest .testi-row{border-color:rgba(255,255,255,.16)}
.testi-mini{padding:1.7rem 1.8rem 0;border-left:1px solid var(--line)}
.section--forest .testi-mini{border-color:rgba(255,255,255,.16)}
.testi-mini:first-child{border-left:none;padding-left:0}
.testi-mini:last-child{padding-right:0}
.testi-mini__quote{font-size:.95rem;color:var(--text-soft);line-height:1.62}
.section--forest .testi-mini__quote{color:#dcefe0}
.testi-mini__meta{margin-top:.9rem;font-weight:700;font-size:.85rem;color:var(--ink-900)}
.section--forest .testi-mini__meta{color:#fff}
.testi-mini__meta em{display:block;font-style:normal;font-weight:500;color:var(--text-muted);font-size:.8rem;margin-top:2px}
.section--forest .testi-mini__meta em{color:#a9cbb1}

/* ---------- Areas ---------- */
.areas-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--s-5)}
.area-card{position:relative;background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:1.6rem;box-shadow:var(--shadow-sm);
  transition:transform var(--t) var(--ease-out),box-shadow var(--t)}
.area-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg)}
.area-card__pin{width:46px;height:46px;border-radius:12px;background:var(--red-050);color:var(--red-600);display:grid;place-items:center;margin-bottom:.9rem}
.area-card__pin svg{width:26px;height:26px}
.area-card h3{font-size:var(--fs-lg)}
.area-card p{margin-top:.4rem;color:var(--text-soft);font-size:var(--fs-sm)}
.area-card__cities{margin-top:.9rem;font-size:.82rem;color:var(--text-muted);line-height:1.5}
.area-card__link{margin-top:1rem;display:inline-flex;gap:.4rem;align-items:center;font-weight:700;color:var(--green-700)}
.area-card__link svg{width:16px;height:16px}

/* ---------- Steps / process ---------- */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:var(--s-5);counter-reset:step}
.step{position:relative;padding-top:.5rem}
.step__num{width:54px;height:54px;border-radius:16px;background:linear-gradient(180deg,#1c6a37,#15512a);color:#fff;font-family:var(--font-display);font-weight:700;font-size:1.5rem;display:grid;place-items:center;box-shadow:var(--shadow);margin-bottom:1rem}
.step h3{font-size:var(--fs-md)}
.step p{margin-top:.4rem;color:var(--text-soft);font-size:var(--fs-sm)}
.section--forest .step p{color:#cfe6d4}
.section--forest .step__num{background:linear-gradient(180deg,#ffc94a,#f5a623);color:#3a2606}

/* ---------- CTA band ---------- */
.cta-band{position:relative;overflow:hidden}
.cta-band__inner{display:grid;grid-template-columns:1.4fr auto;gap:2rem;align-items:center}
.cta-band__title{font-size:var(--fs-h2);color:#fff}
.cta-band__lead{margin-top:.7rem;color:#d6ead9;font-size:var(--fs-md);max-width:40em}
.cta-band__actions{display:flex;flex-direction:column;gap:.8rem;min-width:250px}
.cta-band .sun{position:absolute;right:-60px;top:-60px;width:240px;height:240px;opacity:.16;color:var(--gold-300)}

/* ---------- Forms ---------- */
.lead-card{background:#fff;border:1px solid var(--line);border-radius:var(--r-xl);box-shadow:var(--shadow-lg);padding:clamp(1.6rem,1.2rem + 1.8vw,2.6rem)}
.lead-card__head{margin-bottom:1.6rem}
.lead-card__head h3{font-size:var(--fs-xl)}
.lead-card__head p{margin-top:.4rem;color:var(--text-soft);font-size:var(--fs-sm)}
.lead-form{display:grid;gap:1.35rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1.1rem}
.field{display:flex;flex-direction:column;gap:.55rem}
.field label{font-weight:600;font-size:.85rem;color:var(--ink-800,#22302a)}
.field label .req{color:var(--red-600)}
.field input,.field select,.field textarea{
  width:100%;padding:1rem 1.1rem;border:1.5px solid var(--line-2);border-radius:12px;background:#fff;font-size:1rem;
  transition:border-color var(--t-fast),box-shadow var(--t-fast)}
.field textarea{min-height:130px;resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--green-500);box-shadow:0 0 0 4px rgba(44,138,76,.14)}
.field--error input,.field--error select,.field--error textarea{border-color:var(--red-500);box-shadow:0 0 0 4px rgba(226,36,63,.12)}
.field__err{font-size:.8rem;color:var(--red-600);font-weight:600;display:none}
.field--error .field__err{display:block}
.form-note{font-size:.8rem;color:var(--text-muted)}
.form-note a{color:var(--green-700);font-weight:600}
.form-success{display:none;text-align:center;padding:1.5rem}
.form-success.is-visible{display:block}
.form-success .ok{width:70px;height:70px;margin:0 auto 1rem;border-radius:50%;background:var(--green-050);color:var(--green-600);display:grid;place-items:center}
.form-success .ok svg{width:38px;height:38px}
.form-success h3{font-size:var(--fs-xl)}
.form-success p{margin-top:.5rem;color:var(--text-soft)}

/* compact variant — hero form: fewer fields, tighter padding, brand accent bar */
.lead-card--compact{padding:1.5rem 1.5rem 1.6rem;position:relative;overflow:hidden}
.lead-card--compact::before{content:"";position:absolute;inset:0 0 auto 0;height:6px;background:linear-gradient(90deg,var(--gold-500),var(--red-600))}
.lead-card--compact .lead-card__head{margin-bottom:1.3rem}
.lead-card--compact .lead-card__head h3{font-size:1.25rem}
.lead-card--compact .lead-form{gap:1.1rem}
.is-submitting{opacity:.7;pointer-events:none}

/* ---------- FAQ ---------- */
.faq{display:grid;gap:.8rem;max-width:820px}
.faq__item{background:#fff;border:1px solid var(--line);border-radius:var(--r);overflow:hidden;transition:box-shadow var(--t)}
.faq__item[open]{box-shadow:var(--shadow-sm)}
.faq__q{display:flex;justify-content:space-between;align-items:center;gap:1rem;padding:1.1rem 1.3rem;font-weight:700;font-size:var(--fs-md);color:var(--ink-900);cursor:pointer;font-family:var(--font-display);list-style:none}
.faq__q::-webkit-details-marker{display:none}
.faq__q .ic{width:26px;height:26px;flex:none;color:var(--green-600);transition:transform var(--t) var(--ease-out)}
.faq__item[open] .faq__q .ic{transform:rotate(45deg)}
.faq__a{padding:0 1.3rem 1.2rem;color:var(--text-soft)}
.faq__a p+p{margin-top:.7rem}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs{display:flex;flex-wrap:wrap;gap:.4rem;align-items:center;font-size:.85rem;color:var(--text-muted);padding-block:1rem}
.breadcrumbs a{color:var(--text-muted);font-weight:600}
.breadcrumbs a:hover{color:var(--green-700)}
.breadcrumbs svg{width:14px;height:14px;opacity:.6}

/* ---------- Page hero (interior) ---------- */
.page-hero{background:
  radial-gradient(60% 90% at 96% 0%, rgba(245,166,35,.16) 0%, rgba(245,166,35,0) 55%),
  radial-gradient(80% 120% at 100% 0%, #14512a 0%, #0f3f20 55%, #0c3319 100%);
  color:#eaf5ec;position:relative;overflow:hidden}
.page-hero__inner{padding-block:clamp(2.2rem,1.5rem + 3vw,4rem);position:relative;max-width:760px}
.page-hero h1{color:#fff;font-size:var(--fs-h1);line-height:1.12;margin-top:.6rem}
.page-hero__lead{margin-top:1rem;font-size:var(--fs-md);color:#cfe6d4;max-width:44em}
.page-hero__cta{margin-top:1.6rem;display:flex;flex-wrap:wrap;gap:.8rem}
.page-hero .eyebrow{color:var(--gold-300)}
.page-hero .breadcrumbs{color:#a9cbb1}
.page-hero .breadcrumbs a{color:#bfe0c6}

/* ---------- Article / blog ---------- */
.post-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--s-5)}
.post-card{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--shadow-sm);display:flex;flex-direction:column;transition:transform var(--t) var(--ease-out),box-shadow var(--t)}
.post-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg)}
.post-card__media{aspect-ratio:16/10;overflow:hidden}
.post-card__media img{width:100%;height:100%;object-fit:cover;transition:transform .7s var(--ease-out)}
.post-card:hover .post-card__media img{transform:scale(1.05)}
.post-card__body{padding:1.4rem;display:flex;flex-direction:column;flex:1}
.post-card__meta{display:flex;gap:.6rem;align-items:center;font-size:.78rem;color:var(--text-muted);font-weight:600;margin-bottom:.6rem}
.tag{display:inline-block;font-size:.72rem;font-weight:700;color:var(--green-700);background:var(--green-050);padding:.24rem .6rem;border-radius:var(--r-pill)}
.post-card__title{font-size:var(--fs-lg);line-height:1.2}
.post-card__title a{color:var(--ink-900)}
.post-card__title a:hover{color:var(--green-700)}
.post-card__excerpt{margin-top:.6rem;color:var(--text-soft);font-size:var(--fs-sm);flex:1}
.post-card__more{margin-top:1rem;font-weight:700;color:var(--red-600);display:inline-flex;gap:.35rem;align-items:center}
.post-card__more svg{width:15px;height:15px}

.article{display:grid;grid-template-columns:minmax(0,1fr);gap:2rem}
.prose{max-width:720px;margin-inline:auto;font-size:1.15rem;line-height:1.75;color:var(--ink-700)}
.prose h2{font-size:clamp(1.5rem,1.2rem + 1.4vw,2rem);margin-top:2.4rem;margin-bottom:.7rem;color:var(--ink-900)}
.prose h3{font-size:1.35rem;margin-top:1.8rem;margin-bottom:.5rem;color:var(--ink-900)}
.prose p{margin-top:1.05rem}
.prose ul,.prose ol{margin-top:1.05rem;padding-left:1.3rem;display:grid;gap:.5rem}
.prose ul li{list-style:none;position:relative;padding-left:1.6rem}
.prose ul li::before{content:"";position:absolute;left:0;top:.6em;width:9px;height:9px;border-radius:50%;background:var(--gold-500)}
.prose ol{list-style:decimal;padding-left:1.5rem}
.prose ol li{padding-left:.3rem}
.prose a{color:var(--green-700);font-weight:600;text-decoration:underline;text-decoration-color:var(--gold-400);text-underline-offset:3px}
.prose strong{color:var(--ink-900)}
.prose blockquote{margin:1.6rem 0;padding:1.1rem 1.4rem;border-left:4px solid var(--gold-500);background:var(--cream);border-radius:0 12px 12px 0;font-family:var(--font-display);font-size:1.2rem;color:var(--ink-800,#22302a)}
.prose img{border-radius:var(--r);margin-block:1.6rem;box-shadow:var(--shadow)}
.prose figure figcaption{font-size:.85rem;color:var(--text-muted);text-align:center;margin-top:.5rem}
.callout{margin:1.8rem 0;padding:1.2rem 1.4rem;border:1px solid var(--line);border-radius:var(--r);background:#fff;box-shadow:var(--shadow-xs);display:flex;gap:.9rem}
.callout .ci{width:28px;height:28px;color:var(--red-600);flex:none;margin-top:2px}
.callout b{color:var(--ink-900)}
.article__header{max-width:760px;margin-inline:auto;text-align:center;margin-bottom:1.8rem}
.article__title{font-size:clamp(1.9rem,1.3rem + 2.6vw,3rem);line-height:1.1;margin-top:.7rem}
.article__meta{display:flex;gap:.8rem;justify-content:center;align-items:center;flex-wrap:wrap;margin-top:1rem;color:var(--text-muted);font-size:.88rem;font-weight:600}
.article__hero{max-width:960px;margin:0 auto 2.4rem;border-radius:var(--r-xl);overflow:hidden;box-shadow:var(--shadow-lg)}
.article__hero img{width:100%;aspect-ratio:16/9;object-fit:cover}
.author-box{max-width:720px;margin:2.6rem auto 0;padding:1.4rem;background:var(--cream);border:1px solid var(--line);border-radius:var(--r-lg);display:flex;gap:1rem;align-items:center}
.author-box .av{width:60px;height:60px;border-radius:50%;background:linear-gradient(135deg,#1c6a37,#0f3f20);color:#fff;display:grid;place-items:center;flex:none}
.author-box .av svg{width:32px;height:32px}
.share-row{max-width:720px;margin:1.6rem auto 0;display:flex;gap:.6rem;align-items:center;flex-wrap:wrap}
.share-row a{width:42px;height:42px;border-radius:50%;border:1px solid var(--line);display:grid;place-items:center;color:var(--green-700);background:#fff}
.share-row a:hover{background:var(--green-050)}
.share-row svg{width:20px;height:20px}

/* ---------- Footer ---------- */
.site-footer{background:radial-gradient(120% 120% at 0% 0%,#124a25,#0b2f19 70%);color:#c8ddcd;padding-top:var(--s-8)}
.footer__grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.2fr;gap:2rem}
.footer__brand .brand__logo{height:68px}
.footer__about{margin-top:1rem;font-size:.9rem;color:#a9cbb1;max-width:32ch}
.footer__badges{display:flex;gap:.6rem;margin-top:1.1rem;flex-wrap:wrap}
.footer__badges .b{font-size:.72rem;font-weight:700;color:#d7ecdb;border:1px solid rgba(255,255,255,.16);border-radius:var(--r-pill);padding:.32rem .7rem}
.footer h4{color:#fff;font-family:var(--font-sans);font-weight:700;font-size:.8rem;letter-spacing:.14em;text-transform:uppercase;margin-bottom:1rem}
.footer__links{display:grid;gap:.6rem}
.footer__links a{color:#bcd6c2;font-size:.92rem}
.footer__links a:hover{color:#fff}
.footer__contact{display:grid;gap:.8rem}
.footer__contact a{display:flex;gap:.6rem;align-items:flex-start;color:#dbeede;font-size:.95rem}
.footer__contact svg{width:19px;height:19px;color:var(--gold-300);flex:none;margin-top:2px}
.footer__social{display:flex;gap:.6rem;margin-top:.4rem}
.footer__social a{width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.08);display:grid;place-items:center;color:#fff}
.footer__social a:hover{background:var(--gold-500);color:#2a1c04}
.footer__social svg{width:19px;height:19px}
.footer__bottom{margin-top:var(--s-7);border-top:1px solid rgba(255,255,255,.12);padding-block:1.4rem;display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;font-size:.82rem;color:#8fb79a}
.footer__bottom a{color:#a9cbb1}

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta{position:fixed;left:0;right:0;bottom:0;z-index:90;display:none;gap:.5rem;padding:.55rem .7rem calc(.55rem + env(safe-area-inset-bottom));
  background:rgba(255,255,255,.96);backdrop-filter:blur(10px);border-top:1px solid var(--line);box-shadow:0 -8px 24px -16px rgba(0,0,0,.4);
  transform:translateZ(0)}
.mobile-cta .btn{flex:1;min-height:48px;font-size:.9rem;padding:.7rem .8rem}

/* ---------- Reveal animations ---------- */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .7s var(--ease-expo),transform .7s var(--ease-expo)}
.reveal[data-reveal="left"]{transform:translateX(-26px)}
.reveal[data-reveal="right"]{transform:translateX(26px)}
.reveal[data-reveal="zoom"]{transform:scale(.94)}
/* The visible state must win over the directional start transforms above. They have
   equal specificity and come later in source, so is-visible needs the extra
   [data-reveal] qualifier to reset the transform — without it a revealed left/right
   block stays shifted 26px and gets clipped past the gutter on narrow screens. */
.reveal.is-visible,.reveal.is-visible[data-reveal]{opacity:1;transform:none}
[data-stagger]>*{opacity:0;transform:translateY(22px);transition:opacity .6s var(--ease-expo),transform .6s var(--ease-expo)}
[data-stagger].is-visible>*{opacity:1;transform:none}
[data-stagger].is-visible>*:nth-child(2){transition-delay:.08s}
[data-stagger].is-visible>*:nth-child(3){transition-delay:.16s}
[data-stagger].is-visible>*:nth-child(4){transition-delay:.24s}
[data-stagger].is-visible>*:nth-child(5){transition-delay:.32s}
[data-stagger].is-visible>*:nth-child(6){transition-delay:.4s}
[data-stagger].is-visible>*:nth-child(7){transition-delay:.46s}
[data-stagger].is-visible>*:nth-child(8){transition-delay:.52s}

/* ---------- Image reveal (photos zoom + fade in as they scroll into view) ---------- */
/* JS adds .is-in to each media box when it enters the viewport. Works great on
   mobile, where there's no hover — the photos come alive on scroll instead. */
.product-card__media img,.who__ph img,.results__media img,.idea-card__media img,
.feature__media img,.why-split__media img,.post-card__media img,.gallery__item img,
.work-strip__item img{opacity:0;transform:scale(1.12);transition:opacity .9s var(--ease-out),transform 1.15s var(--ease-expo)}
.is-in img{opacity:1;transform:scale(1)}
/* let the hover zoom still win once revealed */
.service-card:hover .service-card__media img,
.product-card:hover .product-card__media img,
.gallery__item:hover img,.work-strip__item:hover img,
.post-card:hover .post-card__media img{transform:scale(1.06)}
.who__ph:hover img{transform:scale(1.05)}

/* ---------- Responsive ---------- */
@media (max-width:1000px){
  .footer__grid{grid-template-columns:1fr 1fr}
  .steps{grid-template-columns:repeat(2,1fr)}
  .stats{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:900px){
  .nav__links,.nav__cta .nav__phone small{display:none}
  .nav-toggle{display:flex}
  .nav__cta .nav__phone{font-size:.9rem}
  .billboard{min-height:clamp(460px,64vh,600px)}
  .billboard__inner{padding-bottom:clamp(7rem,6rem + 4vw,9rem)}
  .products-grid{grid-template-columns:1fr 1fr}
  .products .container{margin-top:-4.5rem}
  .who__grid,.reliable__grid,.idea-card,.results__grid{grid-template-columns:1fr}
  .who__collage{max-width:560px}
  .results__media{max-width:560px;aspect-ratio:4/3}
  .testi-cards{grid-template-columns:1fr}
  .services-grid,.areas-grid,.post-grid{grid-template-columns:1fr 1fr}
  .feature,.feature--reverse .feature__media,.why-split{grid-template-columns:1fr}
  .feature--reverse .feature__media{order:0}
  .cta-band__inner{grid-template-columns:1fr}
  .cta-band__actions{min-width:0}
  .gallery__grid{grid-template-columns:1fr 1fr}
  .testi-row{grid-template-columns:1fr;border-top:none}
  .testi-mini{border-left:none!important;padding:1.4rem 0!important;border-top:1px solid var(--line)}
  .section--forest .testi-mini{border-color:rgba(255,255,255,.16)}
  .testi-mini:first-child{border-top:none}
}
@media (max-width:640px){
  :root{--header-h:66px}
  .services-grid,.areas-grid,.post-grid,.gallery__grid,.stats{grid-template-columns:1fr}
  .gallery__grid{grid-template-columns:1fr 1fr}
  .form-row{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .mobile-cta{display:flex}
  body{padding-bottom:70px}
  .billboard{min-height:clamp(440px,70vh,560px)}
  .products-grid{grid-template-columns:1fr}
  .products .container{margin-top:-3.6rem}
  .who__metrics{grid-template-columns:1fr}
  .who__badge{width:112px;height:112px;border-width:4px}
  .who__badge-num{font-size:1.6rem}
  .work-strip__item{flex-basis:78vw}
  .work-strip__nav{width:40px;height:40px}
  .stats.stats--bare{grid-template-columns:1fr;gap:1.6rem;text-align:center}
  .idea-card{margin-bottom:-48px}
  .start-here{padding-top:calc(var(--section-y) + 48px + 1.2rem)}
  .results__call{gap:1rem}
  .results__call .btn{width:100%}
  .article__meta{font-size:.8rem}
  .nav__phone span{display:none}
  .nav__phone{padding:.45rem;gap:0;border:1px solid var(--line);border-radius:12px}
  .nav__cta .btn--accent{display:none}
  .nav{gap:.6rem}
  .brand__logo{height:46px}
}
/* ---------- Mobile typography — big serif headings need more air between wrapped
   lines than they do on desktop; give the display titles extra line-height and a
   touch more breathing room around eyebrows/leads on phones ---------- */
@media (max-width:640px){
  .billboard__title{line-height:1.18}
  .billboard__lead{line-height:1.6}
  .page-hero h1{line-height:1.18}
  .article__title{line-height:1.2}
  .section-head__title,.reliable__title,.results__call h2,.idea-card__body h2,
  .lead-card__head h3,.who h2{line-height:1.34}
  .faq__q{line-height:1.36;padding-block:1.2rem}
  /* a little more separation eyebrow → title, and section head → body */
  .section-head__title{margin-top:.9rem}
  .section-head{margin-bottom:1.9rem}
  .eyebrow{letter-spacing:.1em}
  /* on phones, reveal from the bottom only — sideways slides risk clipping past
     the narrow gutter, so left/right become a plain vertical rise here */
  .reveal[data-reveal="left"],.reveal[data-reveal="right"]{transform:translateY(22px)}
}
@media (max-width:400px){
  .gallery__grid{grid-template-columns:1fr}
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important;scroll-behavior:auto!important}
  .reveal,[data-stagger]>*,.billboard__content>*{opacity:1!important;transform:none!important}
  .marquee__track{animation:none;transform:none}
  .float-anim{animation:none}
  .billboard__slide img,.is-in img,
  .product-card__media img,.who__ph img,.results__media img,.idea-card__media img,
  .feature__media img,.why-split__media img,.post-card__media img,.gallery__item img,
  .work-strip__item img{opacity:1!important;transform:none!important;animation:none!important}
}

/* ---------- Print ---------- */
@media print{.site-header,.mobile-cta,.cta-band,.lead-card,.share-row{display:none}body{padding:0}}
