/* =========================================================
   Sukhmani Pest Control — Homepage
   Tokens sampled directly from Sukhmani-HomePage.pdf
   ========================================================= */

@font-face {
  font-family: 'Franklin Gothic Demi';
  src: url('../fonts/franklingothic_demi.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --green:      #3BA100;   /* bright accent: headline, badges, circles */
  --green-dk:   #2E7F00;
  --olive:      #38462D;   /* dark panels, buttons, headings */
  --olive-dk:   #2C3823;

  --bg:         #F1F5DF;   /* page background */
  --bg-light:   #F9FFE2;   /* lighter section band + nav pill */
  --bg-dim:     #EDEFDD;   /* dimmer section band */
  --sage:       #E4E8D3;   /* eyebrow pills, service cards */
  --sage-dk:    #D5DBC2;

  --ink:        #0C1C01;   /* headline near-black */
  --body:       #58644C;   /* body copy */
  --muted:      #7B856D;
  --line:       #D6DCC4;
  --cream:      #FAFFE3;   /* icon + text on dark */
  --star:       #F5A623;

  --ff-head: 'Franklin Gothic Demi', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  --ff-body: 'Inter', system-ui, sans-serif;

  --sec: 110px;            /* section rhythm */
  --r-card: 20px;
  --r-lg: 28px;
  --r-pill: 999px;
}

* { -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; scroll-padding-top: 130px; }

body {
  font-family: var(--ff-body);
  font-weight: 400;
  background: var(--bg);
  color: var(--body);
  font-size: 15px;
  line-height: 1.72;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: var(--ff-head); color: var(--olive); font-weight: 700; line-height: 1.14; letter-spacing: 0; }
a { text-decoration: none; color: inherit; transition: color .25s ease; }
img { max-width: 100%; height: auto; }
p:last-child { margin-bottom: 0; }
::selection { background: var(--green); color: #fff; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 4px; }

/* Container — mirrors the 1680-in-1920 grid the design was drawn on (87.5%).
   Bootstrap's .container is overridden so every section shares one rhythm. */
.container,
.container-fluid,
.container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
  width: 100%;
  max-width: 1680px;
  padding-inline: 20px;
  margin-inline: auto;
}
@media (min-width: 576px)  { .container { padding-inline: 28px; } }
@media (min-width: 768px)  { .container { padding-inline: 36px; } }
@media (min-width: 992px)  { .container { padding-inline: 48px; } }
@media (min-width: 1400px) { .container { padding-inline: 60px; } }
@media (min-width: 1920px) { .container { padding-inline: 0; } }

.section { padding: var(--sec) 0; position: relative; }
.sec-light {  background: linear-gradient(180deg, #FAFFE3 0%, #EDF0DE 100%);
}
.sec-dim   { background: var(--bg-dim);     background: linear-gradient(180deg, #FAFFE3 0%, #EDF0DE 100%);}

/* ---------- Shared ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--olive);
  background: var(--sage);
  padding: 15px 50px;
  margin-bottom: 22px;
  border-radius: 8px;
  clip-path: polygon(
    0% 12%, 15% 14%, 35% 18%, 50% 21%, 65% 18%, 85% 14%, 100% 10%,
    100% 90%, 85% 86%, 65% 82%, 50% 79%, 35% 82%, 15% 86%, 0% 88%
  );
}

.sec-title { font-size: clamp(1.85rem, 3.1vw, 2.85rem); margin: 0 0 18px; }
.sec-title.on-dark { color: var(--cream); }


.btn {
  font-family: var(--ff-head);
  font-weight: 700; font-size: 15px;
  border: 0; border-radius: 14px;
  padding: 20px 100px !important;
  display: inline-flex; align-items: center; justify-content: center; gap:10px;
  line-height: 1.1;
  transition: transform .28s cubic-bezier(.4,0,.2,1), background .28s ease, box-shadow .28s ease;
}
.btn-olive { background: var(--olive); color: var(--cream);     clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 91%);}
.btn-olive:hover { background: var(--olive-dk); color: var(--cream); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(56,70,45,.24); }
.btn-cream { background: var(--bg-light); color: var(--olive); }
.btn-cream:hover { background: #fff; color: var(--olive); transform: translateY(-2px); }

.read-more {
  font-family: var(--ff-head); font-weight: 700; font-size: 15px;
  color: var(--olive); display: inline-flex; align-items: center; gap: 9px;
}
.read-more span { transition: transform .25s ease; }
.read-more:hover { color: var(--green); }
.read-more:hover span { transform: translateX(5px); }

/* =========================================================
   Header
   ========================================================= */
.site-header { position: sticky; top: 0; z-index: 1030; background: var(--bg-dim); padding: 22px 0; transition: padding .3s ease, box-shadow .3s ease; }
.site-header.stuck { padding: 12px 0; box-shadow: 0 8px 30px rgba(56,70,45,.09); }

.header-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { height: 52px; width: auto; display: block; }

.nav-pill {
  background: var(--bg-light);
  border-radius: 22px;
  padding: 18px 34px;
  display: flex; align-items: center; gap: 44px;
  box-shadow: 10px 10px 0 rgba(56,70,45,.07);
  position: relative;
}
.nav-pill a {
  font-size: 16px; color: var(--ink); font-weight: 400;
  display: inline-flex; align-items: center; gap: 9px;
}
.nav-pill a:hover, .nav-pill a.active { color: var(--green); }
.nav-pill a svg { flex-shrink: 0; }

.nav-mega {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-mega__trigger {
  padding: 8px 0;
}
.nav-mega__chev {
  transition: transform .25s ease;
}
.nav-mega:hover .nav-mega__chev,
.nav-mega:focus-within .nav-mega__chev {
  transform: rotate(180deg);
}
.mega-panel {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  width: min(760px, calc(100vw - 48px));
  transform: translate(-50%, 12px);
  background: var(--bg-light);
  border: 1px solid rgba(56, 70, 45, .1);
  border-radius: 10px;
  box-shadow: 0 26px 70px rgba(12, 28, 1, .18);
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  z-index: 1045;
}
.mega-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
}
.nav-mega:hover .mega-panel,
.nav-mega:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.mega-panel__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.nav-pill .mega-service {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 11px 12px;
  border-radius: 8px;
  color: var(--olive);
  background: rgba(228, 232, 211, .48);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.nav-pill .mega-service:hover,
.nav-pill .mega-service:focus-visible {
  background: var(--sage);
  color: var(--green-dk);
  transform: translateY(-2px);
}
.mega-service img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 28px;
  filter: brightness(0) saturate(100%);
}
.nav-pill .mega-all {
  display: flex;
  justify-content: center;
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--olive);
  color: var(--cream);
  font-family: var(--ff-head);
  font-weight: 700;
}
.nav-pill .mega-all:hover {
  background: var(--green-dk);
  color: var(--cream);
}

.call-box { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.call-btn {
  width: 66px; height: 66px; border-radius: 18px;
  background: var(--green);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform .28s ease, background .28s ease;
}
.call-btn:hover { background: var(--green-dk); transform: translateY(-2px); }
.call-btn img { width: 32px; height: 32px; }
.call-label { font-size: 15px; color: var(--body); line-height: 1.3; }
.call-num { font-family: var(--ff-head); font-weight: 700; font-size: 21px; color: var(--ink); }

.burger { display: none; width: 54px; height: 54px; border: 0; border-radius: 15px; background: var(--olive); color: var(--cream); place-items: center; }

.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(330px, 88vw);
  background: var(--bg-light); z-index: 1060; padding: 26px 26px 40px;
  transform: translateX(100%); transition: transform .38s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; display: flex; flex-direction: column;
}
.drawer.open { transform: none; }
.drawer .m-link { font-family: var(--ff-head); font-weight: 700; font-size: 17px; color: var(--olive); padding: 15px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; width: 100%; display: flex; align-items: center; gap: 10px; text-align: left; }
.drawer .m-link:hover,
.drawer .m-link.active { color: var(--green); }
.m-mega__toggle { justify-content: space-between; cursor: pointer; }
.m-mega__chev { flex-shrink: 0; transition: transform .25s ease; }
.m-mega.open .m-mega__chev { transform: rotate(180deg); }
.m-mega__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}
.m-mega.open .m-mega__panel { max-height: 780px; }
.m-service {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 9px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(228, 232, 211, .62);
  color: var(--olive);
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}
.m-service:hover,
.m-service:focus-visible {
  background: var(--sage);
  color: var(--green-dk);
}
.m-service img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex: 0 0 26px;
  filter: brightness(0) saturate(100%);
}
.m-service--all {
  justify-content: center;
  background: var(--olive);
  color: var(--cream);
  margin-top: 14px;
}
.m-service--all:hover,
.m-service--all:focus-visible {
  background: var(--green-dk);
  color: var(--cream);
}
.drawer-x { align-self: flex-end; border: 0; background: var(--sage); width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: var(--olive); margin-bottom: 14px; }
.backdrop { position: fixed; inset: 0; background: rgba(12,28,1,.5); z-index: 1050; opacity: 0; visibility: hidden; transition: .35s; }
.backdrop.show { opacity: 1; visibility: visible; }

/* =========================================================
   Hero
   ========================================================= */
.hero { padding: 70px 0 var(--sec); position: relative; overflow: hidden; }
.hero__decor {
  position: absolute;
  top: -20%;
  right: 0;
  width: 85%;
  opacity: 1;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.hero__title { font-size: clamp(2.4rem, 5.4vw, 4.55rem); color: var(--ink); font-weight: 700; line-height: 1.06; margin: 0; }
.hero__title em { font-style: normal; color: var(--green); }
.hero__title .inline-cta { display: inline-block; vertical-align: middle; margin-left: 50px;
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 91%);}

.hero__lede { font-size: 17px; max-width: 830px; margin-top: 46px; color: var(--body); }

.hero-feats { position: relative; z-index: 2; }
.hero-feat { display: flex; align-items: center; gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.hero-feat:last-child { border-bottom: 0; }
.hero-feat__ic { width: 46px; height: 46px; border-radius: 50%; background: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.hero-feat__ic img { width: 24px; height: 24px; }
.hero-feat p { font-size: 15px; color: var(--ink); margin: 0; font-weight: 400; }

.hero__media { margin-top: 60px; border-radius: var(--r-lg); overflow: hidden; position: relative; }
.hero__media img.shot { width: 100%; display: block; }
.hero__media.is-playing {
  aspect-ratio: 1680 / 708;
  background: #000;
}
.hero__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.play-btn {
  position: absolute; inset: 0; margin: auto;
  width: 86px; height: 86px; border-radius: 50%; border: 0;
  background: var(--bg-light); color: var(--olive);
  display: grid; place-items: center;
  transition: transform .3s ease, background .3s ease;
}
.play-btn:hover { transform: scale(1.08); background: #fff; }
.play-btn::after {
  content: ''; position: absolute; inset: -12px; border-radius: 50%;
  border: 2px solid rgba(250,255,227,.5); animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(.9); opacity: .9 } 100% { transform: scale(1.35); opacity: 0 } }

/* =========================================================
   Core services
   ========================================================= */
.core-row {
  display: grid; grid-template-columns: 1fr 1.32fr 1.32fr;
  gap: 56px; align-items: center; padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.core-row:last-child { border-bottom: 0; }
.core-row__ic { width: 58px; height: 58px; margin-bottom: 22px; display: block; }
.core-row__title { font-family: var(--ff-body); font-weight: 400; font-size: clamp(1.5rem, 2.1vw, 2rem); color: var(--olive); letter-spacing: -.01em; line-height: 1.22; margin: 0; }
.core-row__media { border-radius: var(--r-card); overflow: hidden; }
.core-row__media img { width: 100%; display: block; transition: transform .65s cubic-bezier(.4,0,.2,1); }
.core-row:hover .core-row__media img { transform: scale(1.05); }
.core-row__body p { font-size: 15px; margin-bottom: 22px; }

/* =========================================================
   About
   ========================================================= */
.about { position: relative; overflow: hidden; }
.about__twig-1 { position: absolute; top: 30px; left: 30%; width: 300px; opacity: .85; pointer-events: none; }
.about__twig-2 { position: absolute; top: 190px; left: 24%; width: 280px; opacity: .85; pointer-events: none; }
.about__visual img { width: 100%; display: block; }
.about__copy p { font-size: 15px; margin-bottom: 20px; }
.about__copy .btn { margin-top: 22px; }

/* =========================================================
   About page
   ========================================================= */
.about-page {
  background: var(--bg-light);
  overflow: hidden;
  background: linear-gradient(180deg, #FAFFE3 0%, #EDF0DE 100%);
}
section#core {
  background: #FAFFE3;
}
.hero {
  background: #FAFFE3;
}
.about-hero {
  position: relative;
  padding: 88px 0 72px;
}
.about-hero__decor {
  position: absolute;
  right: 6%;
  top: 82px;
  width: 380px;
  opacity: .28;
  pointer-events: none;
}
.about-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(320px, .92fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-hero h1 {
  color: var(--ink);
  font-size: clamp(2.55rem, 4.85vw, 4.7rem);
  max-width: 840px;
  margin: 0 0 28px;
}
.about-hero h1 span { color: var(--green); }
.about-hero p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.76;
  max-width: 820px;
  margin-bottom: 18px;
}
.about-hero__media {
  border-radius: 24px;
  overflow: hidden;
  background: var(--sage);
}
.about-hero__media img {
  width: 100%;
  aspect-ratio: 760 / 480;
  object-fit: cover;
  display: block;
}
.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  padding: 12px 0 74px;
}
.principle-card {
  background: rgba(249, 255, 226, .78);
  border-radius: 18px;
  min-height: 214px;
  padding: 42px 60px;
  text-align: center;
  box-shadow: 0 14px 38px rgba(56, 70, 45, .06);
}
.principle-card__ic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--green);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}
.principle-card__ic img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.principle-card h3 {
  font-size: 1.22rem;
  color: var(--olive);
  margin-bottom: 12px;
}
.principle-card p {
  color: var(--body);
  font-size: 13.5px;
  line-height: 1.62;
  margin: 0;
}
.about-promise {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 28px;
  align-items: stretch;
  padding-bottom: 80px;
}
.about-promise__bug {
  position: absolute;
  left: 62%;
  top: -48px;
  width: 86px;
  z-index: 2;
  pointer-events: none;
}
.promise-panel,
.years-panel {
  background: var(--olive);
  color: var(--cream);
  min-height: 212px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promise-panel {
  border-radius: 20px;
  padding: 42px 58px;
  clip-path: polygon(0 0, 100% 4%, 100% 92%, 0 100%);
}
.promise-stamp {
  width: 112px;
  margin-bottom: 10px;
}
.promise-panel h2,
.years-panel h2 {
  color: var(--cream);
  margin: 0 0 14px;
}
.promise-panel h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}
.promise-panel p {
  color: rgba(250, 255, 227, .78);
  font-size: 14px;
  line-height: 1.66;
  max-width: 820px;
  margin: 0;
}
.years-panel {
  border-radius: 18px;
  align-items: center;
  text-align: center;
  padding: 34px;
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 91%);
}
.years-panel strong {
  font-family: var(--ff-head);
  color: var(--cream);
  font-size: clamp(3rem, 5.4vw, 5rem);
  line-height: .95;
}
.years-panel span {
  color: rgba(250, 255, 227, .86);
  font-weight: 700;
}
.about-who {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(300px, .9fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
  padding-bottom: 96px;
}
.about-who__media {
  border-radius: 22px;
  overflow: hidden;
  background: var(--sage);
}
.about-who__media img {
  width: 100%;
  aspect-ratio: 860 / 355;
  object-fit: cover;
  display: block;
}
.about-who h2 {
  color: var(--olive);
  font-size: clamp(2.05rem, 3.7vw, 4rem);
  margin: 0 0 30px;
}
.about-list {
  display: grid;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--olive);
  font-weight: 700;
  font-size: 15px;
}
.about-list__ic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: unset;
  display: grid;
  place-items: center;
  margin: unset;
}
.about-list__ic img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.about-page .services-head {
  margin-bottom: 52px;
}
.about-page .svc-link:nth-child(4n+1) .svc,
.about-page .col-6:nth-child(4n+1) .svc {
  transform: unset !important;
}
.about-page .svc-link:nth-child(4n) .svc,
.about-page .col-6:nth-child(4n) .svc {
  transform: unset !important;
}
.about-page .svc-link:hover .svc,
.about-page .col-6:hover .svc {
  transform: translateY(-6px);
}

/* =========================================================
   Trust
   ========================================================= */
.trust { position: relative; overflow: hidden; }
.trust__decor { position: absolute; top: 20px; left: 45%; width: 190px; opacity: 1; pointer-events: none; }

.trust-item { display: flex; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.trust-item:last-child { border-bottom: 0; }
.trust-item__ic { width: 46px; height: 46px; border-radius: 50%; background: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.trust-item__ic img { width: 24px; height: 24px; }
.trust-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.trust-item p { font-size: 14.5px; margin: 0; }

.trust-visual { position: relative; }
.trust-visual > img { width: 100%; display: block; }

.stat {
  position: absolute;
  width: 48.4%; height: 31.2%;          /* exact notch cut into trust-family.webp */
  background: var(--olive); color: var(--cream);
  border-radius: var(--r-card); padding: 16px 20px; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.stat b { font-family: var(--ff-head); font-weight: 700; font-size: clamp(1.4rem, 3vw, 2.3rem); color: var(--cream); display: block; line-height: 1; }
.stat span { font-size: clamp(11px, 1.1vw, 13.5px); color: rgba(250,255,227,.82); line-height: 1.35; }
.stat--exp { top: 0; right: 0; }
.stat--loc { bottom: 0; left: 0; }

.stat-bar {
  background: var(--olive); color: var(--cream); border-radius: var(--r-card);
  margin-top: 18px; padding: 24px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.stat-bar p { font-size: clamp(13px, 1.1vw, 15px); color: rgba(250,255,227,.85); margin: 0; }
.stat-bar > div { flex-shrink: 0; }
.stat-bar b { font-family: var(--ff-head); font-weight: 700; font-size: clamp(1.5rem, 2.6vw, 2.3rem); color: var(--cream); display: block; line-height: 1; }
.stat-bar span { font-size: 13.5px; color: rgba(250,255,227,.82); }

/* =========================================================
   Gallery
   ========================================================= */
.gallery-slider { margin: 0 -15px; }
.gal { padding: 0 15px; }
.gal img { width: 100%; aspect-ratio: 539 / 531; object-fit: cover; border-radius: var(--r-card); display: block; }
.slick-track { display: flex !important; align-items: stretch; }
.slick-slide { height: inherit !important; }
.slick-slide > div { height: 100%; }

.slick-dots { display: flex !important; justify-content: center; align-items: center; gap: 10px; list-style: none; padding: 0; margin: 44px 0 0; }
.slick-dots li button { font-size: 0; width: 9px; height: 9px; padding: 0; border: 0; border-radius: var(--r-pill); background: var(--olive); opacity: .55; transition: all .3s ease; }
.slick-dots li.slick-active button { background: var(--green); opacity: 1; width: 68px; height: 8px; }

/* =========================================================
   Services grid
   ========================================================= */
.services-head { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; margin-bottom: 56px; position: relative; }
.services-head .roach { position: absolute; right: 6px; top: -40px; width: 78px; pointer-events: none; }

.svc {
  background: var(--sage); border-radius: var(--r-card);
  padding: 46px 26px 40px; height: 100%; text-align: center;
  transition: transform .3s cubic-bezier(.4,0,.2,1), background .3s ease, box-shadow .3s ease;
}
.svc__ic { width: 52px; height: 52px; border-radius: 13px; background: var(--green); display: grid; place-items: center; margin: 0 auto 26px; transition: background .3s ease; }
.svc__ic img { width: 27px; height: 27px; }
.svc h3 { font-size: 1.42rem; margin-bottom: 14px; line-height: 1.2; }
.svc p { font-size: 13.5px; line-height: 1.6; margin: 0; color: var(--body); }

.svc:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(56,70,45,.13); }
.svc.featured { background: var(--olive); }
.svc.featured h3 { color: var(--cream); }
.svc.featured p { color: rgba(250,255,227,.78); }
.svc-link { display: block; color: inherit; }
.svc-link:hover { color: inherit; }

/* =========================================================
   Services page
   ========================================================= */
.services-page {
  background: var(--bg-light);
  padding-top: 90px;
  overflow: hidden;
}
.services-page__head {
  max-width: 760px;
  margin: 0 auto 42px;
}
.services-page__head h1 {
  color: var(--ink);
  font-size: clamp(2.5rem, 5vw, 4.35rem);
  margin: 0 0 18px;
}
.services-page__head p {
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.72;
  margin: 0 auto;
}
.services-page__decor {
  position: absolute;
  opacity: 1;
  pointer-events: none;
  user-select: none;
}
.services-page__decor--top {
  width: 100%;
  right: 0;
  top: 0%;
}
.services-page__decor--mid {
  width: 100%;
  left: -95px;
  top: 1200px;
  transform: rotate(261deg);
}
.services-page__decor--bottom {
  width: 100%;
  right: 0;
  top: 2400px;
}
.service-list {
  position: relative;
  z-index: 1;
}
.service-line {
  display: grid;
  grid-template-columns: minmax(180px, .82fr) minmax(280px, 1.2fr) minmax(260px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 90px);
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.service-line:last-child {
  border-bottom: 0;
}
.service-line__title img {
  width: 43px;
  height: 43px;
  object-fit: contain;
  margin-bottom: 20px;
  opacity: .74;
}
.service-line__title h2 {
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--olive);
  font-size: clamp(1.45rem, 2vw, 2rem);
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0;
}
.service-line__photo {
  border-radius: 16px;
  overflow: hidden;
  
}
.service-line__photo img {
  width: 100%;
  aspect-ratio: 600 / 400;
  object-fit: cover;
  display: block;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
}
.service-line:hover .service-line__photo img {
  transform: scale(1.045);
}
.service-line__copy p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 22px;
}
.contact.contact--services::before {
  background-image: linear-gradient(rgba(12, 28, 1, .22), rgba(12, 28, 1, .22)), url("../img/webp/services/contact-photo.webp");
}

/* =========================================================
   Service detail pages
   ========================================================= */
.detail-hero {
  position: relative;
  background: var(--bg-light);
  padding: 78px 0 68px;
  overflow: hidden;
}
.detail-hero__decor {
  position: absolute;
  right: 7%;
  top: 0px;
  width: auto;
  opacity: 1;
  pointer-events: none;
  object-fit: cover;
}
.detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(320px, 560px) 1fr;
  gap: clamp(46px, 7vw, 120px);
  align-items: start;
}
.detail-hero__media {
  border-radius: 14px;
  overflow: hidden;
  background: var(--sage);
  margin-top: 14px;
}
.detail-hero__media img {
  width: 100%;
  aspect-ratio: 400 / 400;
  object-fit: cover;
  display: block;
}
.detail-hero__copy h1 {
  color: var(--ink);
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  margin: 0 0 24px;
}
.detail-hero__copy p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.72;
  margin-bottom: 18px;
}
.why-panel {
  margin-top: 28px;
}
.why-panel h2 {
  color: var(--ink);
  font-size: clamp(1.2rem, 1.8vw, 1.75rem);
  margin-bottom: 18px;
}
.why-panel ul,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.why-panel li,
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #39462E;
  font-size: 14.5px;
  line-height: 1.45;
  margin-bottom: 12px;
}
.why-icon {
  width: 40px;
  height: 34px;
  border-radius: 50%;
  background: unset;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  margin-top: -5px;
}
.why-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.check-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
    background: #39462E;
  /* flex: 0 0 8px; */
  margin-top: .45em;
}
.why-panel .btn {
  margin-top: 12px;
  padding: 17px 42px;
}
.detail-copy {
  padding-top: 48px;
}
.detail-copy__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 7vw, 115px);
}
.detail-block h2 {
  color: var(--olive);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  margin-bottom: 20px;
}
.detail-block p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.74;
  margin-bottom: 16px;
}
.detail-block .check-list {
  margin-top: 20px;
}
.services-strip {
  padding-top: 34px;
}

/* =========================================================
   Contact page
   ========================================================= */
.contact-page {
  position: relative;
  background: var(--bg-light);
  padding: 78px 0 100px;
  overflow: hidden;
}
.contact-page__decor {
  position: absolute;
  right: 0;
  top: 118px;
  width: 430px;
  opacity: .18;
  pointer-events: none;
}
.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(300px, 470px) minmax(280px, 500px) minmax(320px, 560px);
  grid-template-areas:
    "media content details"
    "media form form";
  column-gap:clamp(20px, 3.5vw, 20px);
  
  align-items: start;
}
.contact-page__media {
  grid-area: media;
  border-radius: 14px;
  overflow: hidden;
  background: var(--sage);
  align-self: stretch;
}
.contact-page__media img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  display: block;
}
.contact-page__content {
  grid-area: content;
  padding-top: 10px;
}
.contact-page__content h1 {
  color: var(--ink);
  font-size: clamp(2.35rem, 3.55vw, 4.05rem);
  max-width: 500px;
  margin: 0 0 26px;
}
.contact-page__content p {
  color: var(--body);
  font-size: 17px;
  line-height: 1.66;
  max-width: 430px;
  margin-bottom: 34px;
}
.contact-mini {
  grid-area: details;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  padding-top: 10px;
}
.contact-mini__panel {
  background: var(--olive);
  border-radius: 4px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  min-height: 142px;
  padding: 34px 22px 28px;
}
.contact-mini__panel:first-child {
  clip-path: polygon(0 0, 100% 8%, 100% 82%, 0 100%);
}
.contact-mini__panel:last-child {
  clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 86%);
}
.contact-mini__item {
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.35;
  min-width: 0;
}
.contact-mini__item:hover {
  color: var(--cream);
}
.contact-mini__item span {
  width: 22px;
  height: 22px;
  border-radius: 0;
  background: transparent;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-mini__item img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.contact-page__form {
  grid-area: form;
  background: transparent;
  margin-top: 0;
}
.contact-page__form form {
  display: block;
}
.contact-page__form .fld input,
.contact-page__form .fld select,
.contact-page__form .fld textarea {
  background: rgba(228, 232, 211, .72);
  border: 0;
  border-radius: 8px;
  min-height: 58px;
  padding: 14px 18px;
}
.contact-page__form .fld textarea {
  min-height: 128px;
}
.contact-page__form .fld label {
  color: var(--olive);
  margin-bottom: 8px;
}
.contact-page__form .form-foot {
  justify-content: flex-start;
}
.contact-page__form .note {
  display: none;
}
.contact-page__form .btn {
  padding: 18px 42px;
  min-width: min(445px, 100%);
}
.map-panel {
  margin-top: 84px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--sage);
}
.map-panel img {
  width: 100%;
  display: block;
  aspect-ratio: 1572 / 476;
  object-fit: cover;
}

/* =========================================================
   Policy pages
   ========================================================= */
.policy-page {
  background: var(--bg-light);
  padding: 90px 0 110px;
}
.policy-panel {
  max-width: 1050px;
  margin: 0 auto;
  background: rgba(249, 255, 226, .8);
  border: 1px solid rgba(56, 70, 45, .1);
  border-radius: 18px;
  padding: clamp(34px, 5vw, 70px);
}
.policy-panel h1 {
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 3.85rem);
  margin-bottom: 22px;
}
.policy-panel h2 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  margin: 34px 0 12px;
}
.policy-panel p,
.policy-panel li {
  color: var(--body);
  font-size: 15px;
  line-height: 1.74;
}
.policy-panel ul {
  padding-left: 20px;
  margin-bottom: 0;
}
.policy-panel a {
  color: var(--green-dk);
  font-weight: 700;
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
  border-radius: var(--r-lg); overflow: hidden; text-align: center;
  background: var(--olive) url("../img/cta-bg.webp") center / cover no-repeat;
  padding: 96px 30px 104px;
}
.cta h2 { color: var(--cream); font-size: clamp(1.6rem, 3.1vw, 2.6rem); max-width: 800px; margin: 0 auto 20px; }
.cta p { color: rgba(250,255,227,.8); font-size: 15px; margin-bottom: 40px; }

/* =========================================================
   Testimonials
   ========================================================= */
.testi { overflow: hidden; }
.quote-mark { font-family: var(--ff-head); font-weight: 700; font-size: 8rem; line-height: .62; color: var(--sage-dk); display: block; margin-bottom: 22px; }

.testi-slider { margin: 0 -14px; }
.tcard-wrap { padding: 0 14px; height: 100%; }
.tcard {   background: #EDF0DE; border-radius: var(--r-card); padding: 34px 30px; height: 100%; display: flex; flex-direction: column; }
.tcard .stars { color: var(--star); font-size: 19px; letter-spacing: 5px; margin-bottom: 20px; }
.tcard p { font-size: 14.5px; line-height: 1.68; flex: 1 1 auto; margin-bottom: 28px; }
.tperson { display: flex; align-items: center; gap: 14px; }
.tperson img { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; }
.tperson b { font-family: var(--ff-head); font-weight: 700; font-size: 15px; color: var(--olive); }

.testi-nav { display: flex; align-items: center; gap: 22px; margin-top: 52px; }
.testi-nav button { border: 0; background: none; color: var(--olive); padding: 0; display: grid; place-items: center; transition: transform .25s ease, color .25s ease; }
.testi-nav button:hover { color: var(--green); }
.testi-nav button.prev:hover { transform: translateX(-4px); }
.testi-nav button.next:hover { transform: translateX(4px); }
.testi-track { flex: 1 1 auto; max-width: 250px; height: 3px; background: var(--sage-dk); border-radius: var(--r-pill); overflow: hidden; }
.testi-track i { display: block; height: 100%; width: 33%; background: var(--green); border-radius: var(--r-pill); transition: width .45s cubic-bezier(.4,0,.2,1), margin-left .45s cubic-bezier(.4,0,.2,1); }

/* =========================================================
   Contact
   ========================================================= */
.contact {
  position: relative;
  padding: 0;
  isolation: auto;
  background: unset;
}
.contact::before {
  content: ''; position: absolute; inset: 0; z-index: 9;
  background: url("../img/contact-bg.webp") center center / cover no-repeat;
}
.contact__inner { padding: 120px 0; }

.form-card {
  position: relative;
  background: #edf0de;
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  backdrop-filter: blur(22px) saturate(135%);
  border: 1px solid rgba(255, 255, 255, .45);
  /* box-shadow: 0 26px 70px rgba(12, 28, 1, .22); */
  border-radius: 10px;
  padding: 62px 66px 58px;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: -22%;
  z-index: 99999;
}
/* Fallback for browsers without backdrop-filter (older Firefox, some in-app browsers) */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .form-card { background: rgba(255, 255, 255, .93); }
}
.form-card h2 { font-size: clamp(1.6rem, 2.6vw, 2.35rem); text-align: center; margin-bottom: 10px; }
.form-card .sub { text-align: center; font-size: 17px; color: var(--body); margin-bottom: 52px; }

.fld { margin-bottom: 44px; }
.fld label { display: block; font-size: 14px; color: var(--olive); font-weight: 500; margin-bottom: 10px; }
.fld input, .fld select, .fld textarea {
  width: 100%; border: 0; border-bottom: 1px solid rgba(56, 70, 45, .28);
  background: transparent; padding: 0 0 12px; font-size: 15px;
  font-family: var(--ff-body); color: var(--ink); border-radius: 0;
  transition: border-color .25s ease;
}
.fld textarea { min-height: 78px; resize: vertical; }
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: 0; border-bottom-color: var(--green); }
.fld select { appearance: none; background-image: url("data:image/webp,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2358644C' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 2px center; }

.form-foot { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.form-foot .btn { flex-shrink: 0; }
.form-foot .note { font-size: 12.5px; color: var(--body); line-height: 1.55; flex: 1 1 260px; margin: 0; }
.form-status { font-size: 14px; font-weight: 500; margin: 20px 0 0; }
.form-status.ok { color: var(--green-dk); }
.form-status.err { color: #B3261E; }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  position: relative;
  overflow: hidden;
  /* padding-top: 280px; */
}
.faq__web { position: absolute; right: -50px; top: 60px; width: 260px; opacity: .28; pointer-events: none; }
.faq-list { max-width: 1120px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; padding: 32px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--ff-body); font-size: 18px; color: var(--olive); text-align: left;
}
.faq-q .chev {
  position: relative;
  width: 62px; height: 60px;
  border: 0; border-radius: 0;
  background: transparent;
  display: grid; place-items: center;
  color: var(--green); flex-shrink: 0;
}
/* Rounded asymmetric outline follows the supplied FAQ button reference. */
.faq-q .chev::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 62 60' preserveAspectRatio='none'%3E%3Cpath d='M9 1.5 L54 7.5 Q60.5 8.4 60.5 15 L60.5 45 Q60.5 51.6 54 52.5 L9 58.5 Q1.5 59.5 1.5 52 L1.5 8 Q1.5 .5 9 1.5 Z' fill='none' stroke='%2338462D' stroke-width='1' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}
.faq-q .chev svg { position: relative; width: 24px; height: 24px; transition: transform .35s ease; }
.faq-q:hover .chev { background: transparent; color: var(--green-dk); }
.faq-q[aria-expanded="true"] .chev { transform: none; }
.faq-q[aria-expanded="true"] .chev svg { transform: rotate(180deg); }
@media (prefers-reduced-motion: reduce) {
  .faq-q .chev svg { transition: none; }
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.faq-a p { padding: 0 90px 32px 0; font-size: 15px; margin: 0; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { padding: 60px 0 46px; background: var(--bg-dim); }

/* .footer-panel is a pure positioning shell: it takes its height from
   .footer-panel__inner (normal flow) while .footer-panel__shape — an SVG
   rounded rect, sized to the shell and nudged with a 1deg rotation — sits
   behind it as the actual visual card. Rotating only the shape (never the
   text) reproduces the tilted-card look from the PDF without rotating any
   copy. */
.footer-panel { position: relative; }

.footer-panel__shape {
  position: absolute;
  inset: -1.6% -0.9%;
  width: 101.8%;
  height: 103.2%;
  transform: rotate(1deg);
  transform-origin: center;
  filter: drop-shadow(0 18px 30px rgba(12, 28, 1, .16));
}
.footer-panel__shape rect {
  fill: var(--olive);
  stroke: none;
  rx: var(--r-lg);
  ry: var(--r-lg);
}

.footer-panel__inner {
  position: relative;
  z-index: 1;
  background: var(--olive) url("../img/footer-ants.svg") center center / cover no-repeat;
  border-radius: var(--r-lg);
  padding: 72px 70px 40px;
  color: rgba(250,255,227,.75);
}

.f-contact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  /* background: rgba(255, 255, 255, .045); */
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r-card);
  padding: 26px 32px;
  margin-bottom: 48px;
  box-shadow: 10px 10px 0 rgb(195 227 170 / 7%);
  grid-template-columns: 1fr 1.5fr 1fr 1fr;
}
.f-contact__item { display: flex; gap: 16px; align-items: center; }
.f-contact__ic { width: 52px; height: 52px; border-radius: 50%; background: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.f-contact__ic img { width: 24px; height: 24px; }
.f-contact__item h5 { color: var(--cream); font-size: 14px; margin-bottom: 3px; font-weight: 700; }
.f-contact__item p, .f-contact__item a {
    font-size: 14px;
    color: rgba(250, 255, 227, .72);
    margin: 0;
    line-height: 1.5;
}
.f-contact__item a:hover { color: var(--green); }

.f-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding: 0 0 6px; }
.f-cols h4 { color: var(--cream); font-size: 20px; margin-bottom: 22px; }
.f-cols ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.f-cols a { font-size: 14px; color: rgba(250,255,227,.72); }
.f-cols a:hover { color: var(--green); }

/* Copyright bar sits outside the dark card, back on the page's cream
   background — matching the PDF, where it is not nested inside the panel. */
.f-bottom { padding: 30px 4px 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.f-bottom p { font-size: 13.5px; margin: 0; color: var(--muted); }
.f-bottom a { color: var(--olive); font-weight: 500; }
.f-bottom a:hover { color: var(--green); }
.socials { display: flex; gap: 11px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; background: var(--green); display: grid; place-items: center; transition: transform .28s ease, background .28s ease; }
.socials a img { width: 19px; height: 19px; }
.socials a:hover { background: var(--green-dk); transform: translateY(-3px); }

/* ---------- Floating ---------- */
.floats { position: fixed; right: 20px; bottom: 20px; z-index: 1040; display: grid; gap: 11px; }
.floats a, .floats button { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; border: 0; color: #fff; box-shadow: 0 10px 26px rgba(12,28,1,.22); transition: transform .28s ease; }
.floats a:hover, .floats button:hover { transform: translateY(-3px); }
.f-wa { background: #25D366; }
.f-call { background: var(--green); }
.f-top { background: var(--olive); opacity: 0; visibility: hidden; }
.f-top.show { opacity: 1; visibility: visible; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s cubic-bezier(.4,0,.2,1), transform .75s cubic-bezier(.4,0,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.svc.featured {
    background: var(--sage);
}
.svc.featured h3{
    color:var(--olive); 
}
.svc.featured p{
    color:var(--olive); 
}

.svc-link:hover {    background: var(--olive) !important; }
.svc-link:hover h3{ color: #fff; }
.svc-link:hover p { color: #fff; }
.about-hero__media img {
    aspect-ratio: 460 / 480;
}
.faq__web {
    top: 0px;
    opacity: 1;
}
.stat {
    position: absolute;
    width: 44.4%;
    height: 25.2%;
    
}
.site-header {
    z-index: 999999;}
    .brand img {
    height: 45px;
    width: auto;
    display: block;
}
img.footer-insects {
    position: absolute;
    top: -92px;
    right: 210px;
    z-index: 2;
    width: 250px;
    height: auto;
    pointer-events: none;
}
.f-pad{padding-top: 200px;}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1399.98px) {
  :root { --sec: 92px; }
  .nav-pill { gap: 26px; padding: 16px 24px; }
  .nav-pill a { font-size: 15px; }
  .call-num { font-size: 18px; }
  .call-btn { width: 58px; height: 58px; }
  .core-row { gap: 36px; }
  .footer-panel { padding: 76px 44px 30px; }
}

@media (max-width: 1199.98px) {
  .nav-pill { display: none; }
  .burger { display: grid; }
  .hero__title .inline-cta { display: block; margin: 30px 0 0; }
  .svc h3 { font-size: 1.2rem; }
  .stat b, .stat-bar b { font-size: 1.9rem; }
  .stat { padding: 18px 20px; }
  .detail-hero__grid,
  .contact-page__grid { gap: 42px; }
  .contact-page__grid {
    grid-template-columns: minmax(260px, 390px) minmax(260px, 1fr) minmax(300px, 440px);
  }
  .contact-page__media img { min-height: 620px; }
}

@media (max-width: 991.98px) {

  :root { --sec: 74px; }
  .call-label, .call-num {
        display: none !important;
    }
  .hero { padding-top: 44px; }
  .hero__lede { margin-top: 34px; }
  .hero__decor { width: 400px; opacity: .35; }

  .services-page { padding-top: 64px; }
  .services-page__head { margin-bottom: 26px; }
  .service-line { grid-template-columns: minmax(140px, .8fr) minmax(240px, 1.2fr); gap: 24px 34px; padding: 36px 0; }
  .service-line__copy { grid-column: 2; }
  .services-page__decor { display: none; }
  .detail-hero,
  .contact-page { padding-top: 58px; }
  .about-hero { padding-top: 58px; }
  .detail-hero__decor,
  .about-hero__decor,
  .contact-page__decor { display: none; }
  .detail-hero__grid,
  .contact-page__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "content"
      "details"
      "form";
  }
  .about-hero__grid,
  .about-who {
    grid-template-columns: 1fr;
  }
  .about-principles,
  .about-promise {
    grid-template-columns: 1fr;
  }
  .about-promise__bug {
    display: none;
  }
  .promise-panel,
  .years-panel {
    clip-path: none;
  }
  .about-who__media img {
    aspect-ratio: 16 / 8;
  }
  .detail-hero__media,
  .about-hero__media,
  .contact-page__media { max-width: 620px; }
  .contact-page__media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 600 / 400;
  }
  .contact-page__content { padding-top: 0; }
  .detail-copy__grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-mini { grid-template-columns: 1fr; }
  .contact-mini__panel {
    clip-path: none !important;
    border-radius: 10px;
  }

  .core-row { grid-template-columns: 1fr 1fr; gap: 26px 34px; padding: 34px 0; }
  .core-row__head { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; }
  .core-row__ic { margin-bottom: 0; width: 48px; height: 48px; }

  .about__twig-1, .about__twig-2, .trust__decor, .faq__web { display: none; }
  .about__visual { margin-bottom: 40px; max-width: 520px; }
  .trust-visual { margin-top: 44px; }

  /* Narrow viewports crop the photo to its darkest area — thicken the glass so the
     heading and labels keep contrast. */
  .form-card { padding: 42px 30px 38px; background: rgba(255, 255, 255, .74); }
  .contact__inner { padding: 78px 0; }
  .fld { margin-bottom: 32px; }

  .f-contact, .f-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-panel__inner { padding: 56px 30px 26px; }
  .faq-a p { padding-right: 20px; }
}

@media (max-width: 767.98px) {
    .footer-insects{display:none;}
  :root { --sec: 58px; --r-card: 16px; --r-lg: 20px; }
  body { font-size: 14.5px; }

  .brand img { height: 42px; }
  .site-header { padding: 14px 0; }

  .hero__title { line-height: 1.1; }
  .hero__lede { font-size: 15px; }
  .hero-feat { padding: 18px 0; }
  .hero__media { margin-top: 38px; }
  .play-btn { width: 62px; height: 62px; }

  .core-row { grid-template-columns: 1fr; gap: 20px; }
  .core-row__head { display: block; }
  .core-row__ic { margin-bottom: 16px; }

  .service-line { grid-template-columns: 1fr; gap: 18px; padding: 32px 0; }
  .service-line__copy { grid-column: auto; }
  .service-line__title { display: flex; align-items: center; gap: 16px; }
  .service-line__title img { width: 40px; height: 40px; margin-bottom: 0; }
  .service-line__title h2 br { display: none; }
  .detail-hero__copy h1,
  .contact-page__content h1 { line-height: 1.08; }
  .why-panel li,
  .check-list li { font-size: 14px; }
  .contact-page { padding-bottom: 70px; }
  .contact-page__form { margin-top: 40px; }
  .contact-mini__panel { grid-template-columns: 1fr; }
  .contact-page__form .fld input,
  .contact-page__form .fld select,
  .contact-page__form .fld textarea { min-height: 52px; }
  .map-panel img { aspect-ratio: 16 / 8.5; }

  .stat--exp, .stat--loc {
    position: static; width: auto; height: auto;
    margin-top: 14px; align-items: flex-start; text-align: left; padding: 20px 24px;
  }
  .principle-card { min-height: 0; padding: 34px 24px 30px; }
  .promise-panel { padding: 34px 28px; }
  .about-page .svc-link:nth-child(4n+1) .svc,
  .about-page .svc-link:nth-child(4n) .svc,
  .about-page .col-6:nth-child(4n+1) .svc,
  .about-page .col-6:nth-child(4n) .svc {
    transform: none;
  }
  .trust-visual { display: grid; }
  .stat-bar { flex-direction: column; align-items: flex-start; gap: 10px; padding: 20px 24px; }

  .cta { padding: 56px 22px 62px; }
  .quote-mark { font-size: 5.5rem; }
  .testi-nav { margin-top: 34px; }

  .btn { padding: 17px 30px; font-size: 14px; }
  .faq-q { font-size: 16px; padding: 22px 0; gap: 14px; }
  .faq-q .chev { width: 44px; height: 44px; }

  .f-contact, .f-cols { grid-template-columns: 1fr; gap: 24px; }
  .f-contact { padding: 22px 22px; margin-bottom: 34px; }
  .f-bottom { justify-content: center; text-align: center; }
  .footer-panel__inner { padding: 40px 22px 22px; }
  .footer-panel__shape { inset: -2.2% -1.4%; width: 102.8%; height: 104.4%; }
}

@media (max-width: 575.98px) {
  .container { padding-inline: 18px; }
  .form-card { padding: 32px 20px 30px; }
  .floats a, .floats button { width: 46px; height: 46px; }
}

.footer-services{text-align: center;}
.footer-services-last{text-align: right}
section#services {
  background: #FAFFE3;
}
.svc {
  background: #EDF0DE;
  border-radius: var(--r-card);
  padding: 46px 26px 40px;
  height: 100%;
  text-align: center;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1), background .3s ease, box-shadow .3s ease;
}



:root {
  --olive: #35462d;
  --service-bg: #edf0de;
  --service-icon-bg: #2daa00;
  --service-text: #35422f;
  --r-card: 22px;
}

/* Hide reusable SVG definitions */
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* Makes every Bootstrap column/card equal height */
.services-grid > [class*="col-"] {
  display: flex;
}

.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 300px;
  height: 100%;
  padding: 46px 26px 40px;

  color: var(--service-text);
  text-align: center;
  text-decoration: none;

  background: var(--service-bg);
  border-radius: var(--r-card);
  overflow: hidden;

  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.svc__ic {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;

  background: var(--service-icon-bg);
  border-radius: 5px;
}

.svc__ic img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.svc h3 {
  margin: 0 0 14px;
  color: inherit;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 700;
  line-height: 1.08;
}

.svc p {
  max-width: 250px;
  margin: 0;
  color: inherit;
  font-size: 13px;
  line-height: 1.6;
}

/* SVG shapes */
.svc--top-left {
  clip-path: url("#shape-top-left");
}

.svc--top-right {
  clip-path: url("#shape-top-right");
}

.svc--bottom-left {
  clip-path: url("#shape-bottom-left");
}

.svc--bottom-right {
  clip-path: url("#shape-bottom-right");
}

/* Default selected card, matching reference */
.svc--active {
  color: #fff;
  background-color: var(--olive);
}

/* Hover */
.svc-link:hover,
.svc-link:focus-visible {
  color: #fff;
  background-color: var(--olive);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(56, 70, 45, 0.18);
}

.svc-link:focus-visible {
  outline: 3px solid rgba(45, 170, 0, 0.4);
  outline-offset: 4px;
}

/* Mobile */
@media (max-width: 991.98px) {
  .footer-panel {
    padding: 0px;
}
.footer-panel__shape {
  inset: -2.2% -1.4%;
  width: 102.8%;
  height: 104.4%;
  display: none;
}
.footer-services{text-align: left;}
.footer-services-last{text-align: left;}
  .svc {
    min-height: 270px;
    padding: 38px 18px 32px;
  }

  /*
   * On tablet there are two cards per row, so removing desktop-only
   * outer shapes keeps the grid visually balanced.
   */
  .svc--top-left,
  .svc--top-right,
  .svc--bottom-left,
  .svc--bottom-right {
    clip-path: none;
    border-radius: var(--r-card);
  }
}

@media (max-width: 575.98px) {
  .f-pad {
    padding-top: 80px;
}
  .services-grid {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
  }

  .svc {
    min-height: 245px;
    padding: 28px 12px 24px;
  }

  .svc__ic {
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
  }

  .svc__ic img {
    width: 19px;
    height: 19px;
  }

  .svc h3 {
    font-size: 17px;
  }

  .svc p {
    font-size: 11px;
    line-height: 1.5;
  }
}



#services .btn-olive {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 345px;
  min-height: 66px;
  padding: 15px 45px;

  background-color: var(--olive);
  color: var(--cream);

  border: 0;
  border-radius: 0;
  text-decoration: none;

  font-size: 16px;
  font-weight: 700;
  line-height: 1;

  -webkit-clip-path: url("#button-olive-shape");
  clip-path: url("#button-olive-shape");

  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    filter 0.3s ease;
}
/* =========================================================
   Enhanced gallery
   ========================================================= */
.gallery-intro { max-width: 660px; margin: 14px auto 0; }
.home-gallery .gallery-open { display:block; width:100%; padding:0; border:0; background:none; cursor:pointer; }
.home-gallery .gal img { aspect-ratio:1/1; width:100%; height:auto; object-fit:cover; transition:transform .35s ease; }
.home-gallery .gallery-open:hover img { transform:scale(1.025); }
.gallery-more { margin-top:34px; }
.gallery-hero { padding:90px 0 70px; background:var(--bg-light); }
.gallery-hero h1 { font-size:clamp(2.5rem,6vw,5rem); margin:12px 0 16px; }
.gallery-hero p { max-width:620px; margin:0 auto; }
.gallery-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:20px; }
.gallery-card { position:relative; display:block; width:100%; padding:0; border:0; background:var(--sage); border-radius:var(--r-card); overflow:hidden; cursor:pointer; aspect-ratio:1/1; box-shadow:0 10px 28px rgba(56,70,45,.08); }
.gallery-card img,.gallery-card video { width:100%; height:100%; object-fit:cover; display:block; transition:transform .4s ease; }
.gallery-card:hover img,.gallery-card:hover video { transform:scale(1.045); }
.gallery-card__overlay { position:absolute; inset:0; display:flex; align-items:flex-end; justify-content:center; padding:20px; background:linear-gradient(to top,rgba(35,49,30,.62),transparent 50%); opacity:0; transition:opacity .3s ease; }
.gallery-card:hover .gallery-card__overlay { opacity:1; }
.gallery-card__overlay span { color:#fff; font-weight:600; }
.gallery-play { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:62px; height:62px; border-radius:50%; display:grid; place-items:center; padding-left:4px; background:rgba(255,255,255,.9); color:var(--olive); font-size:22px; box-shadow:0 10px 25px rgba(0,0,0,.18); }
.gallery-lightbox { position:fixed; inset:0; z-index:1000000; display:none; align-items:center; justify-content:center; background:rgba(12,18,10,.92); padding:70px 90px; }
.gallery-lightbox.is-open { display:flex; }
.gallery-lightbox__stage { width:min(900px,82vw); height:min(78vh,850px); display:flex; align-items:center; justify-content:center; }
.gallery-lightbox__stage img,.gallery-lightbox__stage video { max-width:100%; max-height:100%; width:auto; height:auto; border-radius:16px; box-shadow:0 24px 70px rgba(0,0,0,.45); }
.gallery-lightbox__stage video { width:min(900px,82vw); }
.gallery-lightbox__close,.gallery-lightbox__nav { position:absolute; border:0; color:#fff; background:rgba(255,255,255,.1); backdrop-filter:blur(8px); cursor:pointer; display:grid; place-items:center; }
.gallery-lightbox__close { top:22px; right:24px; width:48px; height:48px; border-radius:50%; font-size:34px; line-height:1; }
.gallery-lightbox__nav { top:50%; transform:translateY(-50%); width:52px; height:64px; border-radius:14px; font-size:28px; }
.gallery-lightbox__prev { left:24px; }.gallery-lightbox__next { right:24px; }
.gallery-lightbox__count { position:absolute; bottom:22px; left:50%; transform:translateX(-50%); color:#fff; font-size:14px; letter-spacing:.04em; }
body.gallery-lock { overflow:hidden; }
@media (max-width:991.98px){ .gallery-grid{grid-template-columns:repeat(3,1fr)} .gallery-lightbox{padding:70px 68px;} }
@media (max-width:767.98px){ .gallery-grid{grid-template-columns:repeat(2,1fr);gap:14px} .gallery-hero{padding:64px 0 48px} .gallery-lightbox{padding:70px 18px 64px} .gallery-lightbox__stage{width:100%;height:70vh} .gallery-lightbox__nav{width:44px;height:54px} .gallery-lightbox__prev{left:10px}.gallery-lightbox__next{right:10px} }
@media (max-width:420px){ .gallery-grid{grid-template-columns:1fr 1fr;gap:10px} }


/* === Location service pages === */
.area-hero .detail-hero__copy .eyebrow{display:inline-block;margin-bottom:12px}.area-hero__media{position:relative}.area-hero__media:after{content:"";position:absolute;inset:18px -18px -18px 18px;border:1px solid rgba(123,133,65,.28);border-radius:28px;z-index:-1}.area-trust{margin-top:24px}.area-hero__actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:20px}.btn-outline-olive{background:transparent;color:#6f793b;border:1px solid #7b8541}.btn-outline-olive:hover{background:#7b8541;color:#fff}.area-intro__head{max-width:800px;margin:0 auto 38px;text-align:center}.area-intro__head p{max-width:700px;margin:14px auto 0}.area-offer-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.area-offer-card{position:relative;overflow:hidden;background:#fff;border:1px solid rgba(83,89,42,.12);border-radius:24px;padding:30px;box-shadow:0 16px 42px rgba(44,48,22,.08);min-height:250px}.area-offer-card:before{content:"";position:absolute;width:120px;height:120px;border-radius:50%;background:rgba(123,133,65,.09);right:-35px;top:-40px}.area-offer-card__num{display:inline-flex;width:44px;height:44px;align-items:center;justify-content:center;border-radius:50%;background:#eef0df;color:#687136;font-weight:700;margin-bottom:22px}.area-offer-card h3{font-size:24px;margin-bottom:12px}.area-offer-card p{margin:0}.services-strip .services-head{align-items:flex-end}.services-strip .svc{height:100%;background:#fff}.area-svc__more{display:inline-block;margin-top:14px;font-weight:700;color:#6f793b}.area-faq{position:relative;padding-top: 0px;}.area-faq .faq-list{max-width:980px;margin:0 auto}@media(max-width:991px){.area-offer-grid{grid-template-columns:1fr}.area-offer-card{min-height:auto}.services-strip .services-head{align-items:flex-start;gap:18px}.area-hero__media:after{display:none}}@media(max-width:575px){.area-hero__actions .btn{width:100%;text-align:center}.area-offer-card{padding:24px}}

/* Home's canonical Services section is shared across all matching pages. */
#services .btn-olive { max-width: 100%; }

/* Accessible icon selector; native select remains available without JavaScript. */
.service-picker { position: relative; width: 100%; }
.fld .service-picker__native {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0;
}
.service-picker__trigger {
  display: flex; align-items: center; gap: 10px; width: 100%; min-height: 50px;
  padding: 10px 36px 10px 14px; border: 1px solid rgba(56,70,45,.25);
  border-radius: 8px; background: #fff; color: var(--body); font: inherit;
  text-align: left; cursor: pointer; position: relative;
}
.service-picker__trigger::after { content: ''; position: absolute; right: 15px; width: 8px; height: 8px; border-right: 2px solid; border-bottom: 2px solid; transform: rotate(45deg); top: 18px; }
.service-picker__trigger:focus-visible { outline: 3px solid var(--olive); outline-offset: 2px; }
.service-picker__trigger[aria-invalid="true"] { border-color: #b42318; }
.service-picker__trigger:disabled { opacity: .6; cursor: not-allowed; }
.service-picker__list { position: absolute; top: calc(100% + 5px); left: 0; right: 0; z-index: 100; max-height: min(300px, 45vh); overflow-y: auto; overscroll-behavior: contain; background: #fff; border: 1px solid var(--olive); border-radius: 8px; padding: 5px; box-shadow: 0 8px 24px rgba(0,0,0,.16); }
.service-picker__list[hidden] { display: none; }
.service-picker__option { display: flex; align-items: center; gap: 10px; min-height: 44px; padding: 8px; border-radius: 4px; cursor: pointer; color: var(--body); }
.service-picker__option:hover, .service-picker__option.is-active { background: var(--sage); outline: 1px solid var(--olive); }
.service-picker__option[aria-selected="true"] { font-weight: 700; }
.service-picker img { width: 28px; height: 28px; flex-shrink: 0; object-fit: contain; }
.service-picker__trigger { background: transparent; border: 0; border-bottom: 1px solid rgba(56,70,45,.28); border-radius: 0; padding-left: 0; color: var(--ink); font-size: 15px; }
.contact-page__form .service-picker__trigger { background: rgba(228,232,211,.72); border-radius: 8px; min-height: 58px; padding-left: 18px; }
.contact-page__form .fld .service-picker__native { width: 1px; height: 1px; min-height: 0; padding: 0; border: 0; }
.service-picker__error { display: block; margin-top: 6px; color: #b42318; font-size: 13px; }
.service-picker__error[hidden] { display: none; }
/* Preserve the service-list artwork in both navigation menus. */
.mega-service img, .m-service img { filter: none; }

/* Service selector reference: transparent underline and open chevron. */
.fld:has(> .service-picker) > label { margin-bottom: 0; }
.fld .service-picker__trigger {
  height: 38px; min-height: 38px; padding: 0 34px 8px 0;
  background: transparent; border: 0;
  border-bottom: 1px solid rgba(56,70,45,.32); border-radius: 0;
  color: var(--olive); font-family: var(--ff-body); font-size: 16px;
}
.fld .service-picker__trigger::after {
  width: 12px; height: 12px; right: 6px; top: 8px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.fld .service-picker__trigger[aria-expanded="true"]::after { top: 14px; transform: rotate(225deg); }
.fld .service-picker__trigger[aria-invalid="true"] { border-bottom-color: #b42318; }
/* The real label remains accessible; its text is shown inside the trigger. */
.fld:has(> .service-picker) > label {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}
