/* ============================================================
   Clean Cut Properties — design system v2 (editorial uplift)
   ============================================================ */

:root {
  /* palette — logo greens for accents, lighter forest for structural dark sections */
  --brand:        #86C61A;   /* "CLEAN" — lime/yellow-green (primary brand colour) */
  --brand-dark:   #22972F;   /* "CUT" — medium green */
  --brand-2:      #A5D843;   /* lighter lime accent */

  --green-900: #1A6B2A;   /* dark sections — brand-aligned medium-dark green, not forest */
  --green-800: #1F7A30;
  --green-700: #1A6B2A;   /* eyebrow / tag text on cream */
  --green-600: #22972F;   /* = CUT (brand-dark) */
  --green-500: #86C61A;   /* = CLEAN (brand) */
  --green-400: #A5D843;
  --green-100: #DBEDB6;
  --green-50:  #ECF5D4;
  --cream:     #f3f7eb;   /* warm cream with a faint green tint to tie in the brand */
  --cream-2:   #e6ebd5;
  --paper:     #f8fcf4;   /* near-white with the faintest green undertone */
  --tint:      #e6efd2;   /* more saturated green-cream — for "pop" sections */
  --sand:      #e8d9b8;

  /* accent aliases — existing rules read brand green now */
  --terra:     #25BC42;
  --terra-2:   #43D162;
  --terra-50:  #E5F7E6;

  --ink:       #0c140e;
  --ink-soft:  #475048;
  --line:      #e2dbc7;
  --line-soft: #ece5d2;
  --white:     #ffffff;

  /* type */
  --display: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
  --body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* layout */
  --maxw: 1240px;
  --maxw-narrow: 880px;
  --pad:  clamp(1.1rem, 3vw, 2.2rem);
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 26px;
  --radius-xl: 36px;

  /* shadows */
  --shadow-sm: 0 1px 2px rgba(15,36,25,.06), 0 4px 14px -6px rgba(15,36,25,.10);
  --shadow-md: 0 14px 36px -16px rgba(15,36,25,.28);
  --shadow-lg: 0 36px 64px -22px rgba(15,36,25,.4);

  /* curves */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ─────────── base ─────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* paper texture — subtle */
  background-image:
    radial-gradient(rgba(20,32,26,.018) 1px, transparent 1px),
    radial-gradient(rgba(20,32,26,.012) 1px, transparent 1px);
  background-size: 4px 4px, 8px 8px;
  background-position: 0 0, 2px 2px;
}
::selection { background: var(--brand); color: #fff; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.04;
  margin: 0 0 .55em;
  color: var(--ink);
}
h1 { font-weight: 500; }
p { margin: 0 0 1em; color: var(--ink-soft); }
em { font-style: italic; color: var(--brand); }

.container       { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.container-narrow{ width: 100%; max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 var(--pad); }

/* ─────────── eyebrow ─────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1.5px; background: currentColor;
}

/* ─────────── sections ─────────── */
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section-cream { background: var(--cream); }
.section-paper { background: var(--tint); }   /* now uses the richer tint by default */
.section-deep  { background: var(--green-900); color: var(--cream); }
/* Dot-pattern background — fine sprinkle, like seed scattered on the page */
.section-dots { position: relative; overflow: hidden; }
.section-dots::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(15,94,31,.14) 1.2px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.section-dots > * { position: relative; }
.section-deep h1, .section-deep h2, .section-deep h3 { color: var(--white); }
.section-deep p { color: rgba(232,217,184,.78); }

.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head-row { display:flex; gap:2rem; align-items:end; justify-content:space-between; flex-wrap:wrap; max-width:none; }
.section-title { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
.section-title-xl { font-size: clamp(2.6rem, 6.4vw, 5rem); }
.section-lede { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--ink-soft); max-width: 56ch; }

.divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 1.6rem 0;
  color: var(--green-600); font-size: .85rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
}
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* ─────────── buttons ─────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .9rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .97rem;
  line-height: 1;
  transition: transform .2s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
  border: 1.5px solid transparent;
  position: relative;
}
.btn svg { width: 18px; height: 18px; }
.btn-lg { padding: 1.1rem 1.9rem; font-size: 1.02rem; }
.btn-primary { background: #168331; color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #1ea03d; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.14); border-color: var(--white); }
.btn-ghost { background: transparent; color: var(--green-800); border-color: var(--green-800); }
.btn-ghost:hover { background: var(--green-800); color: var(--cream); }
.btn-ghost-light { background: transparent; color: var(--green-900); border-color: var(--green-700); }
.btn-ghost-light:hover { background: var(--green-800); color: var(--cream); }
.btn-block { width: 100%; }
.btn-quiet { padding: 0; color: var(--green-700); font-weight: 600; border-bottom: 1.5px solid currentColor; border-radius: 0; }
.btn-quiet:hover { color: var(--terra); }

.link-arrow {
  font-weight: 600; color: var(--green-700);
  display: inline-flex; align-items: center; gap: .35rem;
  padding-bottom: 3px;
  border-bottom: 1.5px solid currentColor;
  transition: color .15s var(--ease), gap .2s var(--ease);
}
.link-arrow:hover { color: var(--terra); gap: .55rem; }

/* ─────────── announce ─────────── */
.announce {
  background: var(--green-900);
  color: var(--cream-2);
  font-size: .82rem;
  letter-spacing: .04em;
  padding: .6rem 0;
  text-align: center;
}
.announce span { display: inline-flex; align-items: center; gap: .8rem; }
.announce span::before, .announce span::after { content: "✦"; color: var(--terra-2); opacity: .8; }

/* ─────────── header ─────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 240, 225, .82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.scrolled {
  background: rgba(246, 240, 225, .96);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -18px rgba(15,36,25,.25);
}
.header-inner {
  display: flex; align-items: center; gap: 1.4rem;
  padding-top: .85rem; padding-bottom: .85rem;
}
.logo {
  display: inline-flex; align-items: center;
}
.logo-img {
  height: 58px;
  width: auto;
  display: block;
}
.site-footer .logo-img { height: 50px; }
@media (max-width: 640px) {
  .logo-img { height: 46px; }
  .site-footer .logo-img { height: 42px; }
}
.logo-text { display: inline-flex; flex-direction: column; line-height: 1; }
.logo-title {
  font-family: var(--display); font-weight: 600; font-size: 1.18rem;
  color: var(--green-900); letter-spacing: -.012em;
}
.logo-sub {
  font-family: var(--body); font-size: .66rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase; color: var(--green-600);
  margin-top: 4px;
}

.nav { flex: 1; }
.nav-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: .15rem; justify-content: center;
}
.nav-link {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .6rem .9rem;
  font-weight: 500; font-size: .96rem;
  color: var(--green-900);
  border-radius: 8px;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.nav-link:hover { background: rgba(15,36,25,.06); color: var(--terra); }
.nav-link.active { color: var(--terra); }
.caret { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translate(-2px,-2px); transition: transform .2s; }

/* mega menu */
.has-mega { position: relative; }
.has-mega .mega {
  position: absolute; top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: grid; grid-template-columns: repeat(4, minmax(170px, 1fr)); gap: 1.6rem;
  width: max-content; max-width: min(1100px, 92vw);
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
/* invisible bridge so the mega menu stays open while the cursor crosses the gap */
.has-mega .mega::before {
  content: "";
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
}
.has-mega .mega-sm { grid-template-columns: repeat(2, 1fr); }
.has-mega:hover .mega, .has-mega:focus-within .mega {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.has-mega:hover .caret, .has-mega:focus-within .caret { transform: rotate(-135deg) translate(-2px,-2px); }
.mega-col h4 {
  font-family: var(--body); font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--green-600);
  margin: 0 0 .9rem;
}
.mega-col a {
  display: block;
  padding: .35rem 0;
  font-size: .94rem; color: var(--green-900);
  transition: color .15s var(--ease), padding-left .2s var(--ease);
}
.mega-col a small { display: block; font-size: .78rem; color: var(--ink-soft); font-weight: 400; }
.mega-col a:hover { color: var(--terra); padding-left: 4px; }
.mega-col a strong { display: block; font-weight: 600; }
.mega-feature {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
}
.mega-feature p { font-size: .9rem; margin-bottom: .8rem; }

.header-cta { display: flex; align-items: center; gap: .5rem; }
.header-cta .call-link svg { color: var(--green-700); }

.hamburger { display: none; width: 44px; height: 44px; border-radius: 8px; position: relative; }
.hamburger span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--green-900); border-radius: 2px; transition: transform .2s, opacity .2s, top .2s; }
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.drawer {
  display: flex; flex-direction: column; gap: 0;
  padding: 1rem var(--pad) 1.4rem;
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.drawer[hidden] { display: none; }
.drawer a {
  padding: .85rem 0; border-bottom: 1px solid var(--line);
  font-weight: 500; color: var(--green-900);
}
.drawer-cta { display: grid; gap: .55rem; margin-top: 1rem; }

/* ─────────── HERO ─────────── */
.hero {
  position: relative;
  min-height: clamp(620px, 84vh, 880px);
  display: flex; align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  animation: hero-pan 14s ease-out forwards;
  filter: brightness(0.72) saturate(1.05);
}
@keyframes hero-pan {
  to { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 75% at 22% 55%, rgba(0,0,0,.28), transparent 72%),
    linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.6) 100%);
}
.hero-inner { padding: clamp(4.5rem, 11vw, 8rem) 0 clamp(3rem, 6vw, 5rem); max-width: 980px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  padding: .45rem 1rem; border-radius: 999px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.22);
  font-weight: 600;
  margin-bottom: 1.6rem;
  color: var(--cream-2);
}
.hero-eyebrow::before {
  content: "✦"; color: var(--terra-2);
}
.hero-title {
  font-family: var(--display);
  color: var(--white);
  font-size: clamp(2.6rem, 7.2vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 1.4rem;
  text-shadow: 0 2px 36px rgba(0,0,0,.35);
}
.hero-title em { color: var(--cream-2); font-style: italic; font-weight: 300; }
.hero-sub {
  color: rgba(255,255,255,.92);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  max-width: 660px; margin-bottom: 2.2rem;
  line-height: 1.5;
  text-shadow: 0 1px 16px rgba(0,0,0,.45);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.6rem; }
.hero-badges {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: .6rem 1.6rem;
  color: rgba(255,255,255,.92); font-size: .9rem;
}
.hero-badges li { display: inline-flex; align-items: center; gap: .45rem; }
.hero-badges svg { width: 20px; height: 20px; color: var(--cream-2); }

.hero-stat {
  position: absolute;
  bottom: clamp(1.6rem, 5vw, 3.4rem);
  right: clamp(1.6rem, 5vw, 4rem);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  color: var(--white);
  max-width: 260px;
  box-shadow: var(--shadow-lg);
}
.hero-stat strong {
  display: block; font-family: var(--display); font-weight: 500;
  font-size: 2.4rem; line-height: 1; color: var(--cream-2);
  margin-bottom: .3rem;
}
.hero-stat span { font-size: .85rem; color: rgba(255,255,255,.85); line-height: 1.35; display: block; }

/* page hero (smaller, internal pages) */
.page-hero {
  position: relative; isolation: isolate;
  min-height: clamp(440px, 56vh, 620px);
  display: flex; align-items: center;
  color: var(--white);
  overflow: hidden;
}
.page-hero .hero-media img { animation: none; transform: none; }
.page-hero .hero-inner { padding: clamp(3.5rem, 8vw, 5.5rem) 0; max-width: 880px; }
.page-hero .hero-title { font-size: clamp(2.2rem, 5.6vw, 4.6rem); }
.page-hero .hero-sub { font-size: 1.12rem; max-width: 560px; }

/* breadcrumbs */
.crumbs { font-size: .82rem; color: var(--ink-soft); padding: 1.4rem 0 0; display:flex; align-items:center; gap:.5rem; flex-wrap: wrap; }
.crumbs a { color: var(--green-700); border-bottom: 1px solid var(--line-soft); }
.crumbs a:hover { color: var(--terra); }
.crumbs .sep { opacity: .5; }

/* ─────────── MARQUEE ─────────── */
.marquee {
  background: var(--green-900);
  color: var(--cream-2);
  padding: 1.1rem 0 1.3rem;
  border-top: 1px solid rgba(232,217,184,.12);
  border-bottom: 1px solid rgba(232,217,184,.12);
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(.9rem, 1.3vw, 1.15rem);
  letter-spacing: .01em;
  position: relative;
}
.marquee-track {
  display: inline-flex; gap: 1.4rem;
  animation: marquee 36s linear infinite;
  padding-left: 1.4rem;
}
.marquee-track > span { display: inline-flex; align-items: center; gap: 1.4rem; }
.marquee-track > span::after {
  content: "✦"; color: var(--terra-2); font-size: 1.1em;
}
/* Solid overlay that covers the marquee text — recedes from left as the MAN passes */
.marquee::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green-900);
  pointer-events: none;
  z-index: 1;
  animation: reveal-text 28s linear 1 forwards;
}
/* Small grass strip at the bottom of the marquee — cut as mower passes */
.marquee::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><g fill='%23e8d9b8'><path d='M2,14 Q4,8 7,2 Q8,1.5 8.5,2 Q5,8 4,14 Z'/><path d='M9,14 Q9.5,11 10,9 Q10.5,8.5 11,9 Q11,11 11.5,14 Z'/><path d='M13,14 Q12,9 9,5 Q9.5,4.5 10,5 Q13,9 15,14 Z'/><path d='M17,14 Q17,9 16,3 Q17,2.5 18,3 Q18,9 19,14 Z'/><path d='M21,14 Q22,11 23,9 Q23.5,8.5 24,9 Q23,11 22,14 Z'/><path d='M25,14 Q27,8 30,3 Q31,2.5 31,3 Q28,8 26,14 Z'/><path d='M32,14 Q31,11 30,9 Q30.5,8.5 31,9 Q31.5,11 32.5,14 Z'/><path d='M35,14 Q34,9 31,6 Q31.5,5.5 32,6 Q35,9 38,14 Z'/><path d='M40,14 Q40,9 39,6 Q40,5.5 41,6 Q41,9 42,14 Z'/><path d='M44,14 Q45,11 46,9 Q46.5,8.5 47,9 Q46,11 45,14 Z'/><path d='M50,14 Q52,7 51,2 Q52,1.5 53,2 Q54,7 52,14 Z'/><path d='M55,14 Q55,11 54,9 Q54.5,8.5 55,9 Q55.5,11 56,14 Z'/><path d='M59,14 Q58,9 55,6 Q55.5,5.5 56,6 Q59,9 61,14 Z'/><path d='M64,14 Q66,8 69,3 Q70,2.5 70,3 Q67,8 65,14 Z'/><path d='M72,14 Q72,11 73,10 Q73.5,9.5 74,10 Q73.5,11 73,14 Z'/><path d='M76,14 Q77,9 76,5 Q77,4.5 78,5 Q78,9 79,14 Z'/><path d='M81,14 Q82,7 81,2 Q82,1.5 83,2 Q83,7 83,14 Z'/><path d='M86,14 Q86,11 86,10 Q86.5,9.5 87,10 Q87,11 87,14 Z'/><path d='M90,14 Q92,8 94,4 Q95,3.5 95,4 Q93,8 91,14 Z'/><path d='M97,14 Q96,9 93,6 Q93.5,5.5 94,6 Q96,9 99,14 Z'/><path d='M102,14 Q102,9 101,5 Q102,4.5 103,5 Q103,9 104,14 Z'/><path d='M106,14 Q107,11 108,9 Q108.5,8.5 109,9 Q108,11 107,14 Z'/><path d='M111,14 Q113,7 111,2 Q112,1.5 113,2 Q115,7 113,14 Z'/><path d='M116,14 Q116,11 116,10 Q116.5,9.5 117,10 Q117,11 117,14 Z'/><path d='M120,14 Q120,9 119,6 Q120,5.5 121,6 Q121,9 122,14 Z'/><path d='M125,14 Q127,8 130,3 Q131,2.5 131,3 Q128,8 126,14 Z'/><path d='M133,14 Q133,11 133,9 Q133.5,8.5 134,9 Q134,11 134,14 Z'/><path d='M137,14 Q136,9 133,6 Q133.5,5.5 134,6 Q136,9 139,14 Z'/><path d='M142,14 Q142,9 141,6 Q142,5.5 143,6 Q143,9 144,14 Z'/><path d='M147,14 Q148,11 149,9 Q149.5,8.5 150,9 Q149,11 148,14 Z'/><path d='M152,14 Q154,7 153,2 Q154,1.5 155,2 Q155,7 154,14 Z'/><path d='M157,14 Q157,11 157,10 Q157.5,9.5 158,10 Q158,11 158,14 Z'/><path d='M161,14 Q161,9 160,5 Q161,4.5 162,5 Q162,9 162,14 Z'/><path d='M166,14 Q168,8 171,3 Q172,2.5 172,3 Q169,8 167,14 Z'/><path d='M174,14 Q173,9 170,6 Q170.5,5.5 171,6 Q173,9 176,14 Z'/><path d='M178,14 Q178,11 178,10 Q178.5,9.5 179,10 Q179,11 179,14 Z'/><path d='M182,14 Q184,7 183,2 Q184,1.5 185,2 Q185,7 185,14 Z'/><path d='M187,14 Q187,11 187,9 Q187.5,8.5 188,9 Q188,11 188,14 Z'/><path d='M191,14 Q190,9 188,6 Q188.5,5.5 189,6 Q191,9 193,14 Z'/><path d='M195,14 Q197,8 199,3 Q200,2.5 200,3 Q198,8 196,14 Z'/></g></svg>");
  background-repeat: repeat-x;
  background-size: 160px 14px;
  background-position: center bottom;
  opacity: .65;
  pointer-events: none;
  z-index: 2;
  animation: mow-the-grass 28s linear 1 forwards;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-cream { background: var(--cream); color: var(--green-800); border-color: var(--line); }
.marquee-cream .marquee-track > span::after { color: var(--terra); }

/* ─────────── STATS ─────────── */
.stats {
  background: var(--green-900);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
/* Mower-man walking across the marquee banner */
/* Outer span = horizontal walk; inner imgs = alternating walk-cycle frames */
.mower-walker {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
  display: block;
  width: clamp(52px, 5.5vw, 75px);    /* scaled down for marquee */
  aspect-ratio: 1869 / 1388;
  animation: walk-and-mow 28s linear 1 forwards;
}
.mower-walker .walk-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: invert(1);
  opacity: 0;
  /* no mix-blend-mode — silhouette stays solid white, fully opaque, so it hides
     anything behind it (labels won't show through) */
}
/* Two-frame walk cycle — each frame visible for half the cycle */
.mower-walker .walk-frame-1 { animation: walk-show-1 .65s steps(1, end) infinite; }
.mower-walker .walk-frame-2 { animation: walk-show-2 .65s steps(1, end) infinite; }
@keyframes walk-show-1 {
  0%   { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes walk-show-2 {
  0%   { opacity: 0; }
  50%  { opacity: 1; }
  100% { opacity: 0; }
}
/*  Sync math — mower ≈ 5.5vw wide; front wheel at ~85% of width (≈4.68vw offset).
    The walk takes the MAN's left edge from off-screen-left (translateX=-5.5vw)
    all the way to the section's right edge (translateX=100vw) over 0%–85%.

    Two separate clip-paths run on this same timeline:
      • grass (::after) — clipped at the WHEEL position (where mowing happens):
        wheel reaches 0vw at  ~0.66% of cycle
        wheel reaches 100vw at ~81.23% of cycle
      • overlay (::before) — clipped at the MAN's left edge (text reveals AFTER he passes):
        man reaches 0vw at ~4.43% of cycle
        man reaches 100vw at 85% of cycle                                          */

/* One-time animation — walks across, then everything stays in its final state
   (mower off-screen, grass fully mowed, text fully revealed). No reset.       */
@keyframes walk-and-mow {
  0%    { transform: translateX(-5.5vw); opacity: 1; }
  85%   { transform: translateX(100vw); opacity: 1; }
  93%   { transform: translateX(110vw); opacity: 1; }
  98%   { transform: translateX(110vw); opacity: 0; }
  100%  { transform: translateX(110vw); opacity: 0; }
}
/* Grass cuts at the wheel position — stays cut */
@keyframes mow-the-grass {
  0%, 0.66% { clip-path: inset(0 0 0 0); }
  81.23%    { clip-path: inset(0 0 0 100%); }
  100%      { clip-path: inset(0 0 0 100%); }
}
/* Text overlay recedes at the man's left edge — stays revealed */
@keyframes reveal-text {
  0%, 4.43% { clip-path: inset(0 0 0 0); }
  85%       { clip-path: inset(0 0 0 100%); }
  100%      { clip-path: inset(0 0 0 100%); }
}
@media (prefers-reduced-motion: reduce) {
  .stats::after { animation: none; }
  .mower-walker { display: none; }
}
.stats-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(5, 1fr);
}
.stat { text-align: left; padding: .25rem 1.1rem; border-left: 1px solid rgba(232,217,184,.16); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat-num {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.2vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -.025em;
  color: var(--sand);
  line-height: .95;
  margin-bottom: .45rem;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: .82rem; color: rgba(232,217,184,.78);
  letter-spacing: .02em; line-height: 1.35;
}

/* ─────────── SERVICES (bento) ─────────── */
.bento {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-flow: dense;
}
.bento-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  grid-column: span 2;
  min-height: 240px;
}
.bento-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--green-100); }
.bento-item--wide { grid-column: span 3; }
.bento-item--tall { grid-row: span 2; min-height: 480px; }
.bento-item--feature {
  grid-column: span 4;
  background: var(--green-800);
  color: var(--cream);
  border-color: transparent;
}
.bento-item--feature h3 { color: var(--white); font-size: clamp(1.5rem, 2.4vw, 2rem); }
.bento-item--feature p { color: rgba(232,217,184,.85); }
.bento-item--image {
  color: var(--white); border-color: transparent; padding: 0;
  background-size: cover; background-position: center;
  min-height: 280px;
  justify-content: flex-end;
}
.bento-item--image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,36,25,.05) 0%, rgba(15,36,25,.78) 100%);
}
.bento-item--image > * { position: relative; z-index: 1; padding: 1.8rem; }
.bento-item--image h3 { color: var(--white); }
.bento-item--image p { color: rgba(255,255,255,.85); margin-bottom: 0; }

.service-ico {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--green-50);
  color: var(--green-700);
  display: grid; place-items: center;
  margin-bottom: 1.2rem;
  transition: background .2s var(--ease);
}
.service-ico svg { width: 28px; height: 28px; }
.bento-item--feature .service-ico { background: rgba(232,217,184,.16); color: var(--cream); }
.bento-item h3 { font-size: 1.32rem; margin-bottom: .4rem; }
.bento-item p { font-size: .96rem; margin: 0; }
.bento-item .link-arrow { margin-top: auto; padding-top: 1rem; align-self: flex-start; }
.bento-item--feature .link-arrow { color: var(--cream-2); }

.services-foot {
  margin-top: 1.6rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft); font-size: .95rem;
}

/* ─────────── PROCESS ─────────── */
.process-grid {
  display: grid; gap: 1.2rem;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: step;
}
.process-card {
  position: relative;
  padding: 2.4rem 1.6rem 1.8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  counter-increment: step;
}
.process-card::before {
  content: "0" counter(step);
  position: absolute;
  top: -.4rem; left: 1.4rem;
  font-family: var(--display); font-weight: 400; font-style: italic;
  font-size: clamp(3.4rem, 5vw, 4.6rem);
  line-height: 1;
  color: var(--terra);
  opacity: .9;
}
.process-card h3 { font-size: 1.18rem; margin: 0 0 .35rem; padding-top: 1.6rem; }
.process-card p { font-size: .94rem; margin: 0; }

/* ─────────── SECTORS ─────────── */
.sector-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
.sector-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 1.8rem;
  min-height: 260px;
  color: var(--white);
  display: flex; flex-direction: column; justify-content: flex-end;
  isolation: isolate;
  transition: transform .3s var(--ease);
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
}
.sector-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15,36,25,.05) 0%, rgba(15,36,25,.78) 100%);
  transition: opacity .25s var(--ease);
}
.sector-card:hover { transform: translateY(-4px); }
.sector-card:hover::after { background: linear-gradient(180deg, rgba(15,36,25,.15) 0%, rgba(15,36,25,.85) 100%); }
.sector-card h3 { color: var(--white); font-size: 1.45rem; margin-bottom: .4rem; }
.sector-card p { color: rgba(255,255,255,.9); margin: 0 0 .7rem; font-size: .95rem; }
.sector-card .link-arrow { color: var(--cream-2); border-color: var(--cream-2); }
.sector-card .link-arrow:hover { color: var(--white); }
.sector-card .idx {
  position: absolute; top: 1.4rem; left: 1.4rem;
  font-family: var(--display); font-size: .9rem; font-style: italic;
  color: var(--cream-2); opacity: .9;
}
.sector-feature {
  grid-column: span 2;
  min-height: 360px;
  background-color: var(--green-700);
}
.sector-tag {
  position: absolute; top: 1.4rem; right: 1.4rem;
  background: var(--terra); color: var(--white);
  font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 999px;
}
.sector-feature h3 { font-size: clamp(1.7rem, 2.4vw, 2.2rem); }
.sector-feature p { font-size: 1.02rem; max-width: 540px; }

/* ─────────── ABOUT split ─────────── */
.split {
  display: grid; gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
}
.split--reverse { grid-template-columns: 1fr 1.05fr; }
.split--reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img {
  width: 100%; height: 100%; max-height: 600px; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.split-media-second {
  position: absolute; bottom: -32px; right: -32px;
  width: 50%; max-width: 280px;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream);
}
.split-media-second img { max-height: 360px; }

.about-badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--terra); color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.5rem;
  text-align: center; max-width: 220px;
  box-shadow: var(--shadow-lg);
}
.about-badge strong {
  display: block; font-family: var(--display); font-weight: 500;
  font-size: 3.2rem; line-height: 1; margin-bottom: .3rem;
}
.about-badge span { font-size: .82rem; line-height: 1.35; display: block; }

.points {
  list-style: none; padding: 0; margin: 1.6rem 0 0;
  display: grid; gap: .65rem;
}
.points li {
  position: relative; padding-left: 1.9rem; font-size: .98rem; color: var(--ink);
}
.points li::before {
  content: ""; position: absolute; left: 0; top: .35rem;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-50);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m9 17 8-8-1.4-1.4L9 14.2 5.4 10.6 4 12z' fill='%23234433'/%3E%3C/svg%3E");
  background-size: 18px; background-position: center; background-repeat: no-repeat;
}

/* ─────────── FEATURE QUOTE ─────────── */
.feature-quote {
  background: var(--green-900);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative; overflow: hidden;
}
.feature-quote::before {
  content: "“"; position: absolute;
  top: -3rem; left: 2rem;
  font-family: var(--display); font-style: italic;
  font-size: clamp(20rem, 32vw, 32rem);
  line-height: 1; color: rgba(232,217,184,.07);
  pointer-events: none;
}
.feature-quote blockquote {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.25; letter-spacing: -.013em;
  color: var(--cream); margin: 0 0 2rem;
  max-width: 22ch;
}
.feature-quote blockquote em { color: #E89060; font-style: italic; font-weight: 400; }
.feature-quote-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: center;
}
.feature-quote-meta { display: grid; gap: .25rem; }
.feature-quote-meta .who {
  font-family: var(--display); font-weight: 500; font-size: 1.3rem; color: var(--white);
}
.feature-quote-meta .role {
  font-size: .92rem; letter-spacing: .04em; color: var(--cream-2);
}
.feature-quote-stars { color: #E89060; font-size: 1.2rem; letter-spacing: .2rem; margin-bottom: 1rem; }
.feature-quote-side {
  border-left: 1px solid rgba(232,217,184,.16);
  padding-left: 2.5rem;
  display: grid; gap: 1.4rem;
}
.feature-quote-mini blockquote {
  font-family: var(--body); font-style: normal;
  font-size: 1rem; line-height: 1.55;
  color: rgba(232,217,184,.92);
  max-width: none;
  margin: 0 0 .5rem;
}
.feature-quote-mini cite {
  font-style: normal; font-size: .82rem; color: var(--cream-2); opacity: .75;
}

/* ─────────── projects ─────────── */
.projects-grid {
  display: grid; gap: 1.2rem;
  grid-template-columns: repeat(4, 1fr);
}
.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.project-img {
  aspect-ratio: 4 / 3;
  background-size: cover; background-position: center;
}
.project-meta { display: flex; gap: .4rem; padding: 1.1rem 1.3rem 0; flex-wrap: wrap; }
.tag {
  display: inline-block;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700;
  color: var(--green-700);
  background: var(--green-50);
  padding: .3rem .55rem; border-radius: 999px;
}
.tag-light { background: rgba(255,255,255,.16); color: var(--cream); }
.project-card h3 { font-size: 1.1rem; padding: .6rem 1.3rem .2rem; margin: 0; }
.project-card p { padding: 0 1.3rem 1.3rem; font-size: .92rem; margin: 0; }
.projects-note {
  margin-top: 1.8rem; font-size: .9rem; color: var(--ink-soft); font-style: italic;
}

/* ─────────── testimonials grid ─────────── */
.testimonials { background: var(--cream); }
.quote-grid {
  display: grid; gap: 1.2rem;
  grid-template-columns: repeat(2, 1fr);
}
.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 0;
}
.stars { color: var(--brand); font-size: 1.1rem; letter-spacing: .15rem; margin-bottom: .9rem; }
.quote-card blockquote {
  margin: 0 0 1rem;
  font-family: var(--display); font-size: 1.18rem; line-height: 1.45;
  font-weight: 400; color: var(--ink);
}
.quote-card blockquote em { color: var(--brand-dark); }
.quote-card figcaption { font-size: .92rem; color: var(--ink-soft); }
.quote-card figcaption strong { color: var(--green-900); }

/* ─────────── quote form ─────────── */
.quote-section { background: var(--paper); }
.quote-grid {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr 1.05fr;
}
.quote-copy { padding-top: .5rem; }
.quote-points {
  list-style: none; padding: 0; margin: 1.4rem 0 0;
  display: grid; gap: .65rem;
}
.quote-points a { color: var(--green-800); border-bottom: 1.5px solid transparent; }
.quote-points a:hover { border-bottom-color: var(--terra); color: var(--terra); }

.quote-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
  display: grid; gap: 1rem;
}
.quote-form label {
  display: grid; gap: .35rem;
  font-size: .85rem; font-weight: 600; color: var(--green-800);
  letter-spacing: .02em;
}
.quote-form label small { font-weight: 400; color: var(--ink-soft); }
.quote-form input,
.quote-form select,
.quote-form textarea {
  padding: .85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  font-weight: 400;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .15s var(--ease), background .15s var(--ease), box-shadow .15s var(--ease);
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--green-600);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(79,138,106,.18);
}
.grid-2 { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.form-fineprint { font-size: .8rem; color: var(--ink-soft); margin: -.4rem 0 0; }
.form-success {
  background: var(--green-50);
  color: var(--green-900);
  padding: 1rem 1.2rem;
  border-radius: 12px;
  font-size: .95rem;
}
.form-success a { color: var(--terra); font-weight: 600; }

/* ─────────── footer ─────────── */
.site-footer {
  background: var(--green-900);
  color: rgba(232,217,184,.82);
  padding-top: 4.5rem;
  position: relative; overflow: hidden;
}
.site-footer::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 100% 0%, rgba(196,102,60,.18), transparent 60%);
  pointer-events: none;
}
.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  padding-bottom: 3rem;
  position: relative;
}
.site-footer h4 {
  font-family: var(--body); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--sand); margin: 0 0 .9rem;
}
.site-footer a {
  display: block; padding: .25rem 0;
  color: rgba(232,217,184,.82);
  transition: color .15s var(--ease), padding-left .15s var(--ease);
}
.site-footer a:hover { color: var(--white); padding-left: 4px; }
.site-footer p { color: rgba(232,217,184,.7); font-size: .92rem; }
.muted { font-size: .82rem !important; opacity: .8; }
.footer-bottom {
  border-top: 1px solid rgba(232,217,184,.16);
  padding: 1.4rem 0; font-size: .82rem;
  position: relative;
}
.footer-bottom .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-brand .logo { color: var(--sand); }
.footer-brand .logo-title { color: var(--cream); }
.footer-brand .logo-sub { color: var(--cream-2); }

/* ─────────── mobile sticky bar ─────────── */
.mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 40;
  padding: .65rem var(--pad) calc(.65rem + env(safe-area-inset-bottom, 0));
  background: rgba(246, 240, 225, .96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  gap: .6rem;
}
.mobile-bar .btn { flex: 1; padding: .9rem 1rem; }

/* ─────────── INNER PAGE COMPONENTS ─────────── */

/* scope list (used on service & sector pages) */
.scope-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0 2.5rem; margin-top: 1.4rem;
}
.scope-grid div {
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
  display: flex; gap: .65rem; align-items: center;
  font-size: .98rem;
}
.scope-grid div::before {
  content: ""; flex: 0 0 18px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-50);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m9 17 8-8-1.4-1.4L9 14.2 5.4 10.6 4 12z' fill='%23234433'/%3E%3C/svg%3E");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
}

/* value grid */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.value-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.8rem;
}
.value-card .num {
  font-family: var(--display); font-size: 2rem; color: var(--terra);
  display: block; margin-bottom: .3rem; line-height: 1; font-weight: 500;
}
.value-card h3 { font-size: 1.18rem; margin-bottom: .4rem; }
.value-card p { font-size: .96rem; margin: 0; }

/* compliance panel */
.compliance {
  background: var(--green-50); border: 1px solid var(--green-100);
  border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 3rem);
}
.compliance-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 2.5rem; align-items: start; }
.compliance ul { list-style: none; padding: 0; margin: .8rem 0 0; display: grid; gap: .65rem; }
.compliance li { display: flex; gap: .7rem; align-items: flex-start; font-size: .98rem; color: var(--ink); }
.compliance li svg { flex: 0 0 22px; width: 22px; height: 22px; color: var(--green-700); margin-top: 2px; }

/* FAQ */
.qa-list { display: grid; gap: .8rem; }
.qa-item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.2rem 1.5rem;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.qa-item[open] { border-color: var(--green-100); background: var(--white); }
.qa-item summary {
  font-family: var(--display); font-weight: 500; font-size: 1.1rem;
  color: var(--green-900); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.qa-item summary::-webkit-details-marker { display: none; }
.qa-item summary::after {
  content: "+"; font-family: var(--body); font-size: 1.5rem;
  color: var(--terra); font-weight: 400; transition: transform .25s var(--ease);
}
.qa-item[open] summary::after { transform: rotate(45deg); }
.qa-item p { margin: .9rem 0 0; font-size: .96rem; }

/* founder card */
.founder-card {
  display: grid; grid-template-columns: 240px 1fr; gap: 1.8rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.8rem; align-items: center;
}
.founder-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); }
.founder-card h3 { margin-bottom: .25rem; }
.founder-card .role {
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-600); font-weight: 600;
}

/* CTA band */
.cta-band {
  background: var(--terra); color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 0% 100%, rgba(255,255,255,.18), transparent 50%);
}
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
.cta-band p { color: rgba(255,255,255,.92); max-width: 580px; margin: 0 auto 1.5rem; font-size: 1.05rem; }
.cta-band .btn-primary { background: var(--white); color: var(--terra); }
.cta-band .btn-primary:hover { background: var(--cream); color: var(--terra); }
.cta-band .btn-outline { border-color: rgba(255,255,255,.75); }
.cta-band .btn-outline:hover { background: rgba(255,255,255,.14); border-color: var(--white); }

/* related tiles (cross-link between sectors / services) */
.related-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
.related-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem 1.5rem;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
  display: block;
}
.related-card:hover { border-color: var(--green-200, var(--green-100)); transform: translateY(-2px); }
.related-card h4 {
  font-family: var(--display); font-size: 1.15rem; margin: 0 0 .3rem;
  color: var(--green-900);
}
.related-card p { font-size: .92rem; margin: 0; color: var(--ink-soft); }
.related-card .link-arrow { margin-top: .8rem; font-size: .88rem; }

/* botanical decorative SVG accent */
.botanical {
  position: absolute; pointer-events: none; opacity: .14; color: var(--green-700);
}

/* ─── Mower-man silhouettes (echoes the logo) ─── */
.mower-silhouette {
  position: absolute;
  pointer-events: none;
  display: block;
  z-index: 0;
  height: auto;
  mix-blend-mode: multiply; /* makes the white bg of the PNG disappear over cream sections */
}
/* Subtle side imprints on content sections */
.mower-side-l {
  left: -3%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(140px, 14vw, 220px);
  opacity: .08;
}
.mower-side-r {
  right: -3%;
  top: 50%;
  transform: translateY(-50%) scaleX(-1); /* flip to face inward */
  width: clamp(140px, 14vw, 220px);
  opacity: .08;
}
.mower-side-bl {
  left: 2%;
  bottom: 4%;
  width: clamp(120px, 12vw, 180px);
  opacity: .09;
}
.mower-side-tr {
  right: 2%;
  top: 4%;
  width: clamp(120px, 12vw, 180px);
  opacity: .09;
  transform: scaleX(-1);
}
/* Footer — faded watermark (dark bg, so invert + screen instead of multiply) */
.mower-footer {
  bottom: -10%;
  right: -2%;
  width: clamp(240px, 26vw, 360px);
  opacity: .08;
  mix-blend-mode: screen;
  filter: invert(1);
}
@media (max-width: 768px) {
  .mower-silhouette { display: none; }
}

/* ─── Trusted-by client wall ─── */
.trusted-by {
  background: var(--paper);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trusted-by .section-head {
  text-align: center;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  max-width: 720px;
}
.trusted-by .eyebrow::before {
  background: var(--brand);
}
.trusted-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem .65rem;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.trusted-grid > span {
  display: inline-flex;
  align-items: center;
  padding: .55rem 1.05rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--display);
  font-size: clamp(.86rem, 1vw, .98rem);
  font-weight: 500;
  color: var(--green-900);
  letter-spacing: -.005em;
  white-space: nowrap;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.trusted-grid > span:hover {
  background: var(--white);
  border-color: var(--green-100);
  transform: translateY(-1px);
}
.trusted-grid > .trusted-more {
  background: transparent;
  border-color: transparent;
  color: var(--ink-soft);
  font-style: italic;
}

/* ─── Subtle grass-blade accent ─── */
/* Applies to any block with .grass-base — renders a small grass strip along the bottom edge */
.grass-base {
  position: relative;
}
.grass-base::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'><g fill='%23146b25'><path d='M3 20 L5 8 L7 20 Z'/><path d='M11 20 L14 3 L16 20 Z'/><path d='M21 20 L23 9 L25 20 Z'/><path d='M30 20 L33 4 L35 20 Z'/><path d='M40 20 L42 10 L44 20 Z'/><path d='M49 20 L52 5 L54 20 Z'/><path d='M59 20 L61 9 L63 20 Z'/><path d='M68 20 L71 3 L73 20 Z'/><path d='M78 20 L80 8 L82 20 Z'/><path d='M88 20 L91 5 L93 20 Z'/></g></svg>");
  background-repeat: repeat-x;
  background-size: 100px 20px;
  background-position: center bottom;
  opacity: .15;
  pointer-events: none;
  z-index: 0;
}
/* Auto-apply to standard service bento items (exclude image and feature variants) */
.bento-item:not(.bento-item--image):not(.bento-item--feature) {
  position: relative;
}
.bento-item:not(.bento-item--image):not(.bento-item--feature)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'><g fill='%23146b25'><path d='M3 20 L5 8 L7 20 Z'/><path d='M11 20 L14 3 L16 20 Z'/><path d='M21 20 L23 9 L25 20 Z'/><path d='M30 20 L33 4 L35 20 Z'/><path d='M40 20 L42 10 L44 20 Z'/><path d='M49 20 L52 5 L54 20 Z'/><path d='M59 20 L61 9 L63 20 Z'/><path d='M68 20 L71 3 L73 20 Z'/><path d='M78 20 L80 8 L82 20 Z'/><path d='M88 20 L91 5 L93 20 Z'/></g></svg>");
  background-repeat: repeat-x;
  background-size: 100px 20px;
  background-position: center bottom;
  opacity: .15;
  pointer-events: none;
  z-index: 0;
}

/* ─────────── animations ─────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; }
.reveal.is-visible { animation: fade-up .8s var(--ease) both; }

/* ─────────── responsive ─────────── */
@media (max-width: 1024px) {
  .nav { display: none; }
  .hamburger { display: block; }
  .has-mega .mega { display: none; }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento-item { grid-column: span 2; }
  .bento-item--feature, .bento-item--wide { grid-column: span 4; }
  .bento-item--tall { grid-row: auto; min-height: 240px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-feature { grid-column: span 2; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .split-media-second { right: 16px; bottom: -22px; width: 40%; }
  .about-badge { left: 16px; bottom: -22px; }
  .quote-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(4) { border-left: 0; padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .compliance-grid { grid-template-columns: 1fr; }
  .feature-quote-grid { grid-template-columns: 1fr; }
  .feature-quote-side { border-left: 0; padding-left: 0; border-top: 1px solid rgba(232,217,184,.16); padding-top: 2rem; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .scope-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; padding-bottom: 76px; }
  .announce { font-size: .76rem; }
  .header-cta .btn:not(.hamburger) { display: none; }
  .header-cta .call-link { display: inline-flex; padding: .55rem; }
  .header-cta .call-link span { display: none; }
  .hero { min-height: 600px; }
  .hero-stat { display: none; }
  .hero-ctas .btn { flex: 1 1 100%; }
  .hero-badges { gap: .5rem .9rem; font-size: .85rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; }
  .stat { border-left: 0; padding-left: 0; border-top: 1px solid rgba(232,217,184,.16); padding-top: 1.2rem; }
  .stat:nth-child(-n+2) { border-top: 0; padding-top: 0; }
  .stat:nth-child(5) { grid-column: span 2; }
  .bento { grid-template-columns: 1fr; }
  .bento-item, .bento-item--feature, .bento-item--wide { grid-column: span 1; }
  .process-grid { grid-template-columns: 1fr; }
  .sector-grid { grid-template-columns: 1fr; }
  .sector-feature { grid-column: span 1; }
  .projects-grid { grid-template-columns: 1fr; }
  .quote-grid { gap: 2rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .footer-bottom .container { flex-direction: column; }
  .mobile-bar { display: flex; }
  .section { padding: 4.5rem 0; }
  .related-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .marquee-track { animation: none; }
}

/* ─────────── thank-you page ─────────── */
.thankyou { padding-top: clamp(3rem, 8vw, 6rem); padding-bottom: clamp(3rem, 8vw, 6rem); }
.thankyou-inner { text-align: center; }
.thankyou-check {
  width: 76px; height: 76px; margin: 0 auto 1.4rem;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--brand-dark, #22972F);
  box-shadow: 0 10px 28px rgba(34,151,47,.28);
}
.thankyou-inner .eyebrow { justify-content: center; }
.thankyou-inner .section-lede { max-width: 60ch; margin-left: auto; margin-right: auto; }
/* Outline button sits on a light bg here — give it readable dark-green styling */
.thankyou .btn-outline {
  color: var(--green-700);
  border-color: var(--green-600);
}
.thankyou .btn-outline:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  color: #fff;
}
.thankyou-ctas {
  display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center;
  margin-top: 1.8rem;
}
@media (max-width: 540px) {
  .thankyou-ctas { flex-direction: column; }
  .thankyou-ctas .btn { width: 100%; }
}
