:root {
  --color-forest: #153c2e;
  --color-leaf: #718c45;
  --color-sage: #c8d5b8;
  --color-moss: #dce3ce;
  --color-sand: #ded4c1;
  --color-cream: #f2efe5;
  --color-ink: #183127;
  --color-accent: #b96843;
  --plan-line: rgba(21, 60, 46, 0.3);
  --type-hero: clamp(4.5rem, 7.2vw, 8.5rem);
  --type-section: clamp(3.25rem, 5.4vw, 6.15rem);
  --type-section-compact: clamp(2.9rem, 4.6vw, 4.9rem);
  --type-card: clamp(1.7rem, 2.2vw, 2.5rem);
  --ease-ui: cubic-bezier(.2, .8, .2, 1);
  --ease-media: cubic-bezier(.2, .7, .2, 1);
}

body { background: var(--color-cream); }

.button,
.wp-element-button {
  border-radius: 10px;
  transform: none;
  transition: background 180ms var(--ease-ui), border-color 180ms var(--ease-ui), color 180ms var(--ease-ui);
}

.button > span:last-child { transition: transform 180ms var(--ease-ui); }
.button:focus-visible > span:last-child { transform: translate(2px, -2px); }

.button--accent {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #fff;
}

.text-link--accent { color: #da7952; }

@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .wp-element-button:hover { border-radius: 10px; transform: none; }
  .button:hover > span:last-child { transform: translate(2px, -2px); }
  .button--accent:hover { border-color: #9f5132; background: #9f5132; color: #fff; }
}

@media (hover: none), (pointer: coarse) {
  .button:active,
  .wp-element-button:active { border-color: var(--color-leaf); background: var(--color-leaf); }
  .button:active > span:last-child { transform: translate(2px, -2px); }
  .button--light:active { border-color: var(--color-moss); background: var(--color-moss); color: var(--color-forest); }
  .button--accent:active { border-color: #9f5132; background: #9f5132; color: #fff; }
}

/* Floating editorial header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  padding: clamp(14px, 2vw, 28px) var(--page-gutter) 0;
  border: 0;
  background: transparent;
  color: var(--color-forest);
  pointer-events: none;
  backdrop-filter: none;
}

body.admin-bar .site-header { top: 32px; }

.site-header__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4.8rem);
  align-items: center;
  width: min(100%, 1510px);
  max-width: 1510px;
  height: 86px;
  padding: .45rem .8rem .45rem 1.35rem;
  margin-inline: auto;
  border: 1px solid rgba(21,60,46,.1);
  border-radius: 20px;
  background: #faf7ee;
  box-shadow: 0 18px 52px rgba(8,29,21,.18);
  pointer-events: auto;
}

.site-header .site-brand { display: inline-flex; align-items: center; justify-content: center; width: 68px; min-width: 68px; height: 100%; text-decoration: none; }
.site-header .site-brand img { width: 68px; height: 68px; object-fit: contain; filter: none !important; }
.site-navigation { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: clamp(1rem, 2vw, 2.2rem); align-items: center; min-width: 0; height: 100%; }
.site-navigation > ul { position: absolute; top: 0; left: 50%; display: flex; align-self: stretch; justify-self: center; gap: clamp(1.15rem, 2.1vw, 2.45rem); height: 100%; padding: 0; margin: 0; list-style: none; transform: translateX(-50%); }
.site-navigation > ul > li { display: flex; align-items: center; height: 100%; }
.site-navigation a { position: relative; font-size: 0.7rem; letter-spacing: 0.08em; line-height: 1.2; text-decoration: none; }
.site-navigation > ul > li > a { display: inline-flex; align-items: center; justify-content: center; height: 100%; font-size: .86rem; font-weight: 650; letter-spacing: -.01em; text-transform: none; }
.site-navigation > ul > li > a::after {
  position: absolute;
  top: calc(50% + .72rem);
  right: 0;
  bottom: auto;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 300ms cubic-bezier(.22,.75,.2,1);
  content: "";
}
.site-navigation > ul > li > a:hover::after,
.site-navigation > ul > li > a:focus-visible::after,
.site-navigation > ul > li > a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left center; }
.site-navigation__services { position: relative; gap: .18rem; }
.site-navigation__services-toggle { display: grid; width: 24px; height: 36px; padding: 0; border: 0; place-items: center; background: transparent; color: var(--color-forest); cursor: pointer; }
.site-navigation__services-toggle i { display: block; width: 7px; height: 7px; margin-top: -4px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); transition: transform 220ms var(--ease-ui); }
.site-navigation__services-toggle:focus-visible { border-radius: 7px; outline: 2px solid var(--color-accent); outline-offset: 1px; }
.site-navigation__services:hover .site-navigation__services-toggle i,
.site-navigation__services.is-open .site-navigation__services-toggle i { margin-top: 4px; transform: rotate(225deg); }
.site-navigation__services-menu {
  position: absolute;
  z-index: 6;
  top: calc(100% - 8px);
  left: calc(50% - 14px);
  width: min(660px, calc(100vw - (var(--page-gutter) * 2)));
  padding: 0;
  border: 0;
  visibility: hidden;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transform: translate(-160px, .65rem);
  transition: opacity 180ms var(--ease-ui), transform 220ms var(--ease-ui), visibility 180ms;
}
.site-navigation__services-menu::before { position: absolute; right: 0; bottom: 100%; left: 0; height: 14px; content: ""; }
.site-navigation__services:hover .site-navigation__services-menu,
.site-navigation__services.is-open .site-navigation__services-menu { visibility: visible; opacity: 1; pointer-events: auto; transform: translate(-160px, 0); }
.site-navigation__services-menu-grid { display: grid; grid-template-columns: 320px minmax(0, 1fr); gap: 0; align-items: stretch; filter: drop-shadow(0 18px 18px rgba(8,29,21,.16)); }
.site-navigation__services-categories { min-width: 0; padding: .85rem .65rem; border: 1px solid rgba(21,60,46,.12); border-radius: 16px; background: #faf7ee; transition: border-radius 170ms var(--ease-ui); }
.site-navigation__services.has-active-panel .site-navigation__services-categories { border-right: 0; border-radius: 16px 0 0 16px; }
.site-navigation__services-categories > ul { display: grid; gap: .12rem; padding: 0; margin: 0; list-style: none; }
.site-navigation__services-category { height: auto; border: 0; }
.site-navigation__services-category-link { display: flex !important; align-items: center; justify-content: space-between; gap: .75rem; min-height: 42px !important; padding: .55rem .7rem !important; border-radius: 9px; color: var(--color-forest); font-size: .8rem !important; font-weight: 650; letter-spacing: -.015em; line-height: 1.25 !important; white-space: nowrap; transition: background 180ms var(--ease-ui), color 180ms var(--ease-ui); }
.site-navigation__services-category-link span:last-child { flex: 0 0 auto; color: var(--color-accent); font-size: .95rem; opacity: .65; transition: transform 180ms var(--ease-ui), opacity 180ms var(--ease-ui); }
.site-navigation__services-category:hover .site-navigation__services-category-link,
.site-navigation__services-category:focus-within .site-navigation__services-category-link,
.site-navigation__services-category.is-active .site-navigation__services-category-link { background: rgba(185,104,67,.1); color: var(--color-accent); }
.site-navigation__services-category:hover .site-navigation__services-category-link span:last-child,
.site-navigation__services-category:focus-within .site-navigation__services-category-link span:last-child,
.site-navigation__services-category.is-active .site-navigation__services-category-link span:last-child { opacity: 1; transform: translateX(3px); }
.site-navigation__services-panels { min-width: 0; padding: .85rem .65rem; margin-left: -1px; border: 1px solid rgba(21,60,46,.1); border-left: 0; border-radius: 0 16px 16px 0; visibility: hidden; background: #f3eee4; opacity: 0; pointer-events: none; transform: translateX(-8px); transition: opacity 160ms var(--ease-ui), transform 190ms var(--ease-ui), visibility 160ms; }
.site-navigation__services.has-active-panel .site-navigation__services-panels { visibility: visible; opacity: 1; pointer-events: auto; transform: translateX(0); }
.site-navigation__services-panel { display: none; min-width: 0; }
.site-navigation__services-panel.is-active { display: block; animation: servicesPanelIn 180ms var(--ease-ui) both; }
.site-navigation__services-panel > ul { display: grid; grid-template-columns: 1fr; gap: .12rem; padding: 0; margin: 0; list-style: none; }
.site-navigation__services-panel > ul li { min-width: 0; border: 0; }
.site-navigation__services-panel > ul a { display: flex; align-items: center; justify-content: space-between; gap: .6rem; min-height: 42px; padding: .55rem .7rem; border-radius: 9px; color: rgba(21,60,46,.82); font-size: .8rem; font-weight: 650; letter-spacing: -.015em; line-height: 1.25; text-decoration: none; transition: background 180ms var(--ease-ui), color 180ms var(--ease-ui); }
.site-navigation__services-panel > ul a span:first-child { min-width: 0; }
.site-navigation__services-panel > ul a span:last-child { flex: 0 0 auto; color: var(--color-accent); font-size: .85rem; opacity: .7; transition: transform 180ms var(--ease-ui), opacity 180ms var(--ease-ui); }
.site-navigation__services-panel > ul a:hover,
.site-navigation__services-panel > ul a:focus-visible { background: rgba(185,104,67,.1); color: var(--color-accent); }
.site-navigation__services-panel > ul a:hover span:last-child,
.site-navigation__services-panel > ul a:focus-visible span:last-child { opacity: 1; transform: translate(2px, -2px); }
@keyframes servicesPanelIn { from { opacity: 0; transform: translateX(5px); } to { opacity: 1; transform: translateX(0); } }
@keyframes mobileSubmenuIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
.site-navigation__actions { position: relative; z-index: 1; grid-column: 2; display: flex; align-items: center; align-self: stretch; justify-self: end; gap: 0.6rem; height: 100%; }
.site-navigation__call { display: inline-flex; align-items: center; justify-content: center; gap: 0.58rem; height: 54px; padding: 0 .7rem; font-size: .9rem !important; font-weight: 750; letter-spacing: -.01em !important; white-space: nowrap; }
.site-navigation__call svg { width: 21px; height: 21px; fill: currentColor; }
.site-navigation__cta { display: inline-flex; align-items: center; justify-content: center; gap: .8rem; height: 54px; min-height: 54px; padding: 0 1.45rem; border: 1px solid var(--color-accent); border-radius: 12px; background: var(--color-accent); color: #fff; font-size: .8rem !important; font-weight: 650; letter-spacing: .055em !important; line-height: 1; white-space: nowrap; transition: background 180ms var(--ease-ui), border-color 180ms var(--ease-ui); }
.site-navigation__cta > span:last-child { font-size: 1rem; transition: transform 180ms var(--ease-ui); }
.site-navigation__cta:focus-visible > span:last-child { transform: translate(2px, -2px); }

@media (hover: hover) and (pointer: fine) {
  .site-navigation__cta:hover { border-radius: 12px; border-color: #9f5132; background: #9f5132; }
  .site-navigation__cta:hover > span:last-child { transform: translate(2px, -2px); }
}
.mobile-menu { display: none; }
.mobile-conversion-bar { display: none; }
.nav-toggle { display: none; }

/* Shared interior banner */
.internal-page { background: #f8f4e9; }

.internal-hero {
  position: relative;
  padding: clamp(8.35rem, 9.2vw, 9.4rem) var(--page-gutter) clamp(2.75rem, 3.8vw, 3.75rem);
  overflow: hidden;
  background: #f8f4e9;
  color: var(--color-forest);
}

.internal-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(440px, 1.05fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
  width: min(100%, 1510px);
  min-height: clamp(240px, 19vw, 300px);
  margin-inline: auto;
}

.internal-hero__copy { max-width: 720px; }
.internal-hero__breadcrumbs { margin-bottom: clamp(1.2rem, 1.8vw, 1.75rem); }
.internal-hero__breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .65rem; align-items: center; padding: 0; margin: 0; list-style: none; }
.internal-hero__breadcrumbs li { display: inline-flex; align-items: center; gap: .65rem; font-size: clamp(.9rem, 1.2vw, 1.08rem); line-height: 1.4; }
.internal-hero__breadcrumbs li + li::before { color: rgba(21, 60, 46, .58); content: "/"; }
.internal-hero__breadcrumbs a { text-decoration: none; transition: color 180ms var(--ease-ui); }
.internal-hero__breadcrumbs a:hover,
.internal-hero__breadcrumbs a:focus-visible,
.internal-hero__breadcrumbs [aria-current="page"] { color: var(--color-accent); }
.internal-hero h1 { max-width: 790px; font-size: clamp(3.25rem, 4.4vw, 4.85rem); line-height: .94; }
.internal-hero__rule { display: block; width: clamp(74px, 6vw, 102px); height: 2px; margin: clamp(1.15rem, 1.7vw, 1.6rem) 0; background: var(--color-accent); }
.internal-hero__copy > p { max-width: 690px; margin: 0; color: rgba(21, 60, 46, .9); font-size: clamp(.95rem, 1.15vw, 1.08rem); line-height: 1.55; }

.internal-hero__media {
  align-self: center;
  height: clamp(230px, 18.5vw, 290px);
  margin: clamp(.75rem, 1.2vw, 1.15rem) 0 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--color-sage);
}

.internal-hero__media.reveal--hero { transition-delay: 260ms; }
.internal-hero__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ease-media); }
.internal-hero__media:hover img { transform: scale(1.018); }
.internal-hero--text-only .internal-hero__grid { grid-template-columns: minmax(0, 1fr); min-height: clamp(205px, 15vw, 245px); }
.internal-hero--text-only .internal-hero__copy { max-width: 900px; }
.internal-hero--text-only .internal-hero__copy > p { max-width: 760px; }

.internal-page__content:not(:empty) {
  width: min(calc(100% - (var(--page-gutter) * 2)), 960px);
  padding-block: clamp(5rem, 9vw, 8rem);
  margin-inline: auto;
}

.internal-page__content h2 { margin: 2.5rem 0 1rem; font-size: clamp(2rem, 4vw, 3.5rem); }
.internal-page__content p,
.internal-page__content li { line-height: 1.75; }

/* About page */
.about-page { background: #f8f4e9; }
.about-story { padding-block: clamp(4rem, 7vw, 6rem); background: #f8f4e9; }
.about-story__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(3rem, 6vw, 6rem); align-items: center; width: min(calc(100% - (var(--page-gutter) * 2)), 1510px); }
.about-story__copy { max-width: 660px; }
.about-story .eyebrow,
.about-pillars .eyebrow,
.about-care .eyebrow { color: var(--color-accent); }
.about-story h2 { max-width: 700px; font-size: clamp(2.3rem, 3vw, 3.45rem); line-height: 1.02; text-wrap: balance; }
.about-story__rule { display: block; width: clamp(72px, 6vw, 100px); height: 2px; margin: 1.7rem 0; background: var(--color-accent); }
.about-story__copy > p:not(.eyebrow) { max-width: 580px; color: rgba(24,49,39,.78); font-size: clamp(1rem, 1.2vw, 1.12rem); line-height: 1.72; }
.about-story__copy > p + p { margin-top: 1.15rem; }
.about-story__media { aspect-ratio: 1.1 / 1; margin: 0; overflow: hidden; border-radius: 24px; background: var(--color-sage); }
.about-story__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-media); }
.about-story__media:hover img { transform: scale(1.018); }
.about-pillars { padding-block: clamp(5rem, 8vw, 7.5rem); border-top: 1px solid rgba(21,60,46,.12); background: var(--color-sand); }
.about-pillars__heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(2.75rem, 5vw, 4.5rem); }
.about-pillars__heading h2 { max-width: 700px; font-size: clamp(2.8rem, 5vw, 5rem); line-height: .95; }
.about-pillars__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 1px solid rgba(21,60,46,.2); }
.about-pillar { min-height: 260px; padding: 1.35rem clamp(1.25rem, 2.3vw, 2.5rem) 0 0; border-right: 1px solid rgba(21,60,46,.2); }
.about-pillar + .about-pillar { padding-left: clamp(1.25rem, 2.3vw, 2.5rem); }
.about-pillar:last-child { border-right: 0; }
.about-pillar__number { display: block; margin-bottom: 2.8rem; color: var(--color-accent); font-size: .78rem; font-weight: 800; letter-spacing: .1em; }
.about-pillar h3 { max-width: 320px; font-size: clamp(1.55rem, 2.1vw, 2.15rem); line-height: 1.03; }
.about-pillar p { max-width: 320px; margin-top: 1rem; color: rgba(24,49,39,.75); font-size: .95rem; line-height: 1.65; }
.about-care { padding-block: clamp(5rem, 9vw, 8rem); background: var(--color-forest); color: #fff; }
.about-care__inner { display: grid; grid-template-columns: minmax(360px, .88fr) minmax(0, 1.12fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.about-care--simple .about-care__inner { display: block; max-width: 900px; }
.about-care--simple .about-care__copy { max-width: 720px; }
.about-care__media { aspect-ratio: 1.08 / 1; margin: 0; overflow: hidden; border-radius: 24px; background: var(--color-leaf); }
.about-care__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-media); }
.about-care__media:hover img { transform: scale(1.018); }
.about-care__copy { max-width: 650px; }
.about-care .eyebrow { color: var(--color-moss); }
.about-care h2 { max-width: 620px; font-size: clamp(2.8rem, 5.3vw, 5.5rem); line-height: .94; }
.about-care__copy > p:not(.eyebrow) { max-width: 570px; margin: 1.7rem 0 2.2rem; color: rgba(255,255,255,.76); font-size: clamp(1rem, 1.2vw, 1.12rem); line-height: 1.72; }
.about-care .button--light { border-color: #fff; background: #fff; color: var(--color-forest); }
.about-care .button--light:focus-visible { border-color: var(--color-moss); background: var(--color-moss); }

@media (hover: hover) and (pointer: fine) {
  .about-care .button--light:hover { border-color: var(--color-moss); background: var(--color-moss); }
}

/* Minimal legal documents */
.legal-page-header {
  padding: clamp(10rem, 15vw, 12.5rem) var(--page-gutter) clamp(3.25rem, 5.5vw, 5rem);
  background: #f8f4e9;
  color: var(--color-forest);
  text-align: center;
}

.legal-page-header__inner { width: min(100%, 940px); margin-inline: auto; }
.legal-page-header h1 {
  font-family: var(--sans);
  font-size: clamp(2.65rem, 5.2vw, 5.25rem);
  font-weight: 520;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.legal-page-header p {
  margin: clamp(1.1rem, 2vw, 1.5rem) 0 0;
  color: rgba(21, 60, 46, .68);
  font-size: clamp(.82rem, 1vw, .94rem);
  line-height: 1.5;
}

body.legal-document-page .internal-page__content {
  width: min(calc(100% - (var(--page-gutter) * 2)), 840px);
  padding-block: 0 clamp(5.5rem, 9vw, 8.5rem);
  color: rgba(23, 33, 28, .88);
  font-size: clamp(.98rem, 1.1vw, 1.08rem);
}

body.legal-document-page .internal-page__content .legal-draft-note,
body.legal-document-page .internal-page__content > p:last-child:has(em) { display: none; }

body.legal-document-page .internal-page__content h2 {
  padding-top: clamp(2.6rem, 5vw, 3.75rem);
  margin: 0 0 .9rem;
  border-top: 1px solid rgba(21, 60, 46, .14);
  font-family: var(--sans);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 650;
  letter-spacing: -.025em;
  line-height: 1.2;
}

body.legal-document-page .internal-page__content h2:first-of-type { padding-top: 0; border-top: 0; }

body.legal-document-page .internal-page__content p { margin-bottom: 1.1rem; }

body.legal-document-page .internal-page__content ul { padding-left: 1.25rem; margin: 1rem 0 1.4rem; }

body.legal-document-page .internal-page__content li + li { margin-top: .6rem; }

body.legal-document-page .internal-page__content a { color: var(--color-accent); }

body.legal-document-page .privacy-policy-lead {
  max-width: 760px;
  margin: 0 0 clamp(2.75rem, 5vw, 4rem);
  color: var(--color-forest);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  font-weight: 520;
  line-height: 1.65;
}

body.legal-document-page .privacy-controller {
  padding: 1.2rem 0 1.2rem 1.35rem;
  margin: 1.35rem 0 1.5rem;
  border-left: 3px solid var(--color-accent);
  color: var(--color-forest);
  font-style: normal;
  line-height: 1.8;
}

body.legal-document-page .privacy-controller strong {
  font-size: 1.08em;
  font-weight: 750;
}

/* Cookie policy inventory */
body.legal-document-page .cookie-policy-lead {
  max-width: 760px;
  margin: 0 0 clamp(2.75rem, 5vw, 4rem);
  color: var(--color-forest);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  font-weight: 520;
  line-height: 1.65;
}

body.legal-document-page .cookie-category-list {
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

body.legal-document-page .cookie-category-list li {
  padding: 1rem 0 1rem 1.35rem;
  margin: 0;
  border-bottom: 1px solid rgba(21, 60, 46, .12);
  position: relative;
}

body.legal-document-page .cookie-category-list li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  content: "";
  left: 0;
  position: absolute;
  top: 1.75rem;
}

body.legal-document-page .cookie-service {
  padding: 0;
  border-bottom: 1px solid rgba(21, 60, 46, .14);
  interpolate-size: allow-keywords;
}

body.legal-document-page .cookie-service:first-of-type {
  margin-top: 1.25rem;
  border-top: 1px solid rgba(21, 60, 46, .14);
}

body.legal-document-page .cookie-service::details-content {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 260ms var(--ease-ui), opacity 180ms var(--ease-ui), content-visibility 260ms allow-discrete;
}

body.legal-document-page .cookie-service[open]::details-content { height: auto; opacity: 1; }

body.legal-document-page .cookie-service__header {
  position: relative;
  display: block;
  min-height: 72px;
  padding: 1rem 3.25rem 1rem .75rem;
  margin: 0;
  color: var(--color-forest);
  cursor: pointer;
  list-style: none;
  transition: background-color 180ms var(--ease-ui), color 180ms var(--ease-ui);
}

body.legal-document-page .cookie-service__header::-webkit-details-marker { display: none; }
body.legal-document-page .cookie-service__header::marker { content: ""; }
body.legal-document-page .cookie-service__header:hover { background: rgba(21, 60, 46, .035); }
body.legal-document-page .cookie-service__header:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }
body.legal-document-page .cookie-service__header > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
}

body.legal-document-page .cookie-service__header::after {
  position: absolute;
  top: 50%;
  right: 1.05rem;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-70%) rotate(45deg);
  transition: transform 220ms var(--ease-ui);
}

body.legal-document-page .cookie-service[open] > .cookie-service__header::after { transform: translateY(-25%) rotate(225deg); }

body.legal-document-page .cookie-service__header h3 {
  margin: 0;
  color: inherit;
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -.02em;
}

body.legal-document-page .cookie-service__header p {
  margin: 0;
  color: rgba(21, 60, 46, .62);
  font-size: .76rem;
  line-height: 1.5;
  text-align: right;
}

body.legal-document-page .cookie-service__header p span {
  margin-right: .55rem;
  color: var(--color-accent);
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.legal-document-page .cookie-service__body {
  padding: .45rem .75rem clamp(2rem, 4vw, 2.75rem);
}

body.legal-document-page .cookie-service__body > p {
  max-width: 760px;
  margin-bottom: 1.3rem;
}

body.legal-document-page .cookie-table-wrap {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(21, 60, 46, .16);
}

body.legal-document-page .cookie-policy-table {
  width: 100%;
  border: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

body.legal-document-page .cookie-policy-table th,
body.legal-document-page .cookie-policy-table td {
  padding: .85rem .9rem;
  border: 0;
  border-bottom: 1px solid rgba(21, 60, 46, .1);
  text-align: left;
  vertical-align: top;
}

body.legal-document-page .cookie-policy-table th {
  background: rgba(21, 60, 46, .045);
  color: rgba(21, 60, 46, .7);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.legal-document-page .cookie-policy-table th:first-child,
body.legal-document-page .cookie-policy-table td:first-child { width: 31%; }
body.legal-document-page .cookie-policy-table th:last-child,
body.legal-document-page .cookie-policy-table td:last-child { width: 24%; }
body.legal-document-page .cookie-policy-table tbody tr:last-child td { border-bottom: 0; }

body.legal-document-page .cookie-policy-table code,
body.legal-document-page .internal-page__content > p code {
  color: var(--color-forest);
  font-size: .84em;
  overflow-wrap: anywhere;
}

body.legal-document-page .cookie-policy-status {
  padding: .35rem 0 .35rem 1.15rem;
  margin: 1.5rem 0 0;
  border-left: 2px solid var(--color-accent);
  color: rgba(21, 60, 46, .78);
}

/* Complianz: compact, calm and consistent with the Vrtland palette. */
.cmplz-cookiebanner {
  width: min(460px, calc(100vw - 32px)) !important;
  right: 16px !important;
  bottom: 16px !important;
  padding: 1.35rem !important;
  border: 1px solid rgba(21, 60, 46, .18) !important;
  border-radius: 18px !important;
  background: #faf7ee !important;
  box-shadow: 0 18px 52px rgba(13, 43, 33, .16) !important;
  color: var(--color-forest) !important;
  font-family: var(--sans) !important;
  animation-duration: 360ms !important;
  animation-timing-function: var(--ease-ui) !important;
}

/* Consent can still be changed from the Cookie Policy without a floating tab. */
#cmplz-manage-consent { display: none !important; }

.cmplz-cookiebanner .cmplz-header,
.cmplz-cookiebanner .cmplz-body,
.cmplz-cookiebanner .cmplz-buttons { font-family: inherit !important; }
.cmplz-cookiebanner .cmplz-title { color: var(--color-forest) !important; font-weight: 700 !important; }
.cmplz-cookiebanner .cmplz-message {
  color: rgba(23, 33, 28, .82) !important;
  font-size: .92rem !important;
  line-height: 1.55 !important;
}

.cmplz-cookiebanner .cmplz-close { color: var(--color-forest) !important; opacity: .7; }
.cmplz-cookiebanner .cmplz-close:hover,
.cmplz-cookiebanner .cmplz-close:focus-visible { opacity: 1; }
.cmplz-cookiebanner .cmplz-btn {
  min-height: 46px !important;
  border-radius: 10px !important;
  font-family: var(--sans) !important;
  font-size: .78rem !important;
  font-weight: 750 !important;
  letter-spacing: .02em !important;
  line-height: 1.2 !important;
  text-transform: none !important;
  box-shadow: none !important;
  transition: background-color 180ms var(--ease-ui), border-color 180ms var(--ease-ui), color 180ms var(--ease-ui), transform 180ms var(--ease-ui) !important;
}

.cmplz-cookiebanner .cmplz-accept {
  border-color: var(--color-accent) !important;
  background: var(--color-accent) !important;
  color: #fff !important;
}

.cmplz-cookiebanner .cmplz-accept:hover,
.cmplz-cookiebanner .cmplz-accept:focus-visible { border-color: #9f5132 !important; background: #9f5132 !important; }
.cmplz-cookiebanner .cmplz-deny,
.cmplz-cookiebanner .cmplz-view-preferences,
.cmplz-cookiebanner .cmplz-save-preferences {
  border-color: rgba(21, 60, 46, .48) !important;
  background: transparent !important;
  color: var(--color-forest) !important;
}

.cmplz-cookiebanner .cmplz-deny:hover,
.cmplz-cookiebanner .cmplz-view-preferences:hover,
.cmplz-cookiebanner .cmplz-save-preferences:hover,
.cmplz-cookiebanner .cmplz-deny:focus-visible,
.cmplz-cookiebanner .cmplz-view-preferences:focus-visible,
.cmplz-cookiebanner .cmplz-save-preferences:focus-visible { background: rgba(21, 60, 46, .07) !important; }
.cmplz-cookiebanner .cmplz-links a { color: rgba(21, 60, 46, .78) !important; font-size: .75rem !important; }

/* Services directory */
.services-intro,
.services-directory {
  position: relative;
  background: #fffdf7;
  color: var(--color-ink);
}
.services-intro .section-shell,
.services-directory .section-shell { width: min(calc(100% - (var(--page-gutter) * 2)), 1510px); }

.services-intro { padding-block: clamp(2.25rem, 3vw, 3.5rem) clamp(4rem, 5vw, 5.5rem); }

.services-intro__inner {
  display: grid;
  grid-template-columns: minmax(450px, .98fr) minmax(0, 1.02fr);
  gap: clamp(3rem, 5vw, 5.5rem);
  align-items: center;
}

.services-intro__copy { max-width: 620px; }
.services-intro .eyebrow,
.services-directory .eyebrow { color: var(--color-accent); }
.services-intro h2 { max-width: 590px; font-size: clamp(2.3rem, 3vw, 3.45rem); line-height: 1.02; text-wrap: balance; }
.services-intro__copy > p:not(.eyebrow) { max-width: 570px; margin: 2rem 0 0; color: rgba(24,49,39,.78); font-size: clamp(1rem, 1.2vw, 1.12rem); line-height: 1.75; }
.services-intro__points { display: grid; gap: .9rem; padding: 0; margin: 2.15rem 0 0; list-style: none; }
.services-intro__points li { position: relative; padding-left: 2.8rem; font-size: 1rem; line-height: 1.55; }
.services-intro__points li::before {
  position: absolute;
  top: .25rem;
  left: .4rem;
  width: 17px;
  height: 13px;
  border-radius: 100% 0 100% 0;
  background: var(--color-leaf);
  content: "";
  transform: rotate(-22deg);
}
.services-intro__media { aspect-ratio: 1.18 / 1; margin: 0; overflow: hidden; border-radius: 24px; background: var(--color-sage); }
.services-intro__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-media); }
.services-intro__media:hover img { transform: scale(1.018); }

.services-directory { padding-block: clamp(3.75rem, 5vw, 5rem) clamp(6rem, 8vw, 8rem); border-top: 1px solid rgba(21,60,46,.12); scroll-margin-top: 120px; }
.services-directory__heading { max-width: 850px; margin-bottom: clamp(2.75rem, 4vw, 4.25rem); }
.services-directory__heading h2 { font-size: clamp(1.9rem, 3.2vw, 3.2rem); line-height: 1; white-space: nowrap; }
.services-directory__heading > p:last-child { max-width: 720px; margin: 1.25rem 0 0; color: rgba(24,49,39,.74); font-size: clamp(1rem, 1.2vw, 1.12rem); line-height: 1.65; }
.services-directory__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.25rem, 2vw, 2rem); align-items: stretch; }

.service-category-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(92,103,73,.28);
  border-radius: 16px;
  background: rgba(255,253,247,.68);
  transition: border-color 220ms var(--ease-ui), transform 220ms var(--ease-ui);
  flex-direction: column;
}
.service-category-card.reveal { transition-delay: calc((var(--card-index, 0) % 3) * 75ms); }
.service-category-card:hover { border-color: rgba(63,112,77,.58); transform: translateY(-4px); }
.service-category-card__media { display: block; aspect-ratio: 1.64 / 1; margin: .85rem .85rem 0; overflow: hidden; border-radius: 12px; background: var(--color-sage); }
.service-category-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 650ms var(--ease-media); }
.service-category-card:hover .service-category-card__media img,
.service-category-card__media:focus-visible img { transform: scale(1.025); }
.service-category-card__body { display: flex; padding: 1.25rem 1.4rem 1.35rem; flex: 1; flex-direction: column; }
.service-category-card__title { display: grid; grid-template-columns: 68px minmax(0, 1fr); gap: 1rem; align-items: center; min-height: 86px; margin-bottom: 1rem; text-decoration: none; }
.service-category-card__icon { display: grid; width: 62px; height: 62px; place-items: center; border-radius: 50%; background: rgba(157,180,159,.56); color: var(--color-forest); transition: background 180ms var(--ease-ui), color 180ms var(--ease-ui); }
.service-category-card__icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.service-category-card__title strong { font-family: var(--display); font-size: clamp(1.45rem, 1.65vw, 1.85rem); font-weight: 500; letter-spacing: -.025em; line-height: 1.06; }
.service-category-card__title:hover .service-category-card__icon,
.service-category-card__title:focus-visible .service-category-card__icon { background: var(--color-forest); color: #fff; }
.service-category-card__links { padding: 0; margin: .35rem 0 0; list-style: none; }
.service-category-card__links li { border-top: 1px solid rgba(92,103,73,.2); }
.service-category-card__links a { display: grid; grid-template-columns: minmax(0, 1fr) 30px; gap: 1rem; align-items: center; min-height: 53px; padding: .78rem .15rem; font-size: .92rem; font-weight: 560; line-height: 1.35; text-decoration: none; transition: color 180ms var(--ease-ui), padding-left 180ms var(--ease-ui); }
.service-category-card__links svg { justify-self: end; width: 27px; height: 18px; fill: none; stroke: var(--color-accent); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: transform 180ms var(--ease-ui); }
.service-category-card__links a:hover,
.service-category-card__links a:focus-visible { padding-left: .45rem; color: var(--color-accent); }
.service-category-card__links a:hover svg,
.service-category-card__links a:focus-visible svg { transform: translateX(3px); }

/* Service category and detail pages */
.service-page {
  --service-surface: #fffdf7;
  position: relative;
  background: var(--service-surface);
  color: var(--color-ink);
}
.service-page .section-shell { width: min(calc(100% - (var(--page-gutter) * 2)), 1510px); }

.service-editorial-lead { position: relative; padding-block: clamp(2.25rem, 3.25vw, 3.75rem) clamp(5.25rem, 7vw, 7.75rem); overflow: hidden; background: var(--service-surface); }
.service-editorial-lead__inner { display: grid; grid-template-columns: minmax(390px, .8fr) minmax(0, 1.2fr); gap: clamp(3.5rem, 7vw, 7.5rem); align-items: center; }
.service-editorial-lead__copy { order: 1; max-width: 650px; }
.service-editorial-lead .eyebrow { color: var(--color-accent); }
.service-editorial-lead h2 { max-width: 660px; font-size: clamp(2.25rem, 2.8vw, 3.35rem); line-height: 1.02; text-wrap: balance; }
.service-editorial-lead__rule { display: block; width: 98px; height: 2px; margin: 2rem 0; background: var(--color-accent); }
.service-editorial-lead__text { display: grid; gap: 1.35rem; max-width: 590px; }
.service-editorial-lead__text p { margin: 0; color: rgba(24,49,39,.8); font-size: clamp(1rem, 1.25vw, 1.12rem); line-height: 1.72; }
.service-editorial-lead__points { display: grid; gap: .85rem; padding: 0; margin: 2rem 0 0; list-style: none; }
.service-editorial-lead__points li { position: relative; padding-left: 2.75rem; font-size: 1rem; line-height: 1.5; }
.service-editorial-lead__points li::before { position: absolute; top: .2rem; left: .35rem; width: 17px; height: 13px; border-radius: 100% 0 100% 0; background: var(--color-leaf); content: ""; transform: rotate(-22deg); }
.service-editorial-lead__media { position: relative; order: 2; aspect-ratio: 1.17 / 1; min-width: 0; margin: 0; overflow: hidden; border-radius: 24px; background: var(--color-sage); }
.service-editorial-lead__media--portrait { width: min(100%, 470px); justify-self: end; aspect-ratio: .82 / 1; }
.service-editorial-lead__image { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-media); }
.service-editorial-lead__media:hover .service-editorial-lead__image { transform: scale(1.018); }
.service-editorial-lead__caption { position: absolute; right: .8rem; bottom: .8rem; left: .8rem; padding: .65rem .8rem; border-radius: 8px; background: rgba(8,29,21,.78); color: #fff; font-size: .72rem; font-weight: 720; letter-spacing: .04em; line-height: 1.35; text-transform: uppercase; }
.service-editorial-lead--has-explainer { padding-bottom: 0; }

.service-explainer { padding-block: clamp(4rem, 5vw, 5.75rem); background: var(--service-surface); }
.service-explainer__inner { max-width: 900px; margin-inline: auto; text-align: center; }
.service-explainer__mark { display: grid; width: clamp(54px, 4.4vw, 64px); aspect-ratio: 1; margin: 0 auto 1rem; place-items: center; border: 1px solid rgba(185,104,67,.46); border-radius: 52% 48% 55% 45% / 48% 54% 46% 52%; background: rgba(185,104,67,.08); color: var(--color-accent); font-family: var(--body); font-size: clamp(1.35rem, 1.7vw, 1.6rem); font-weight: 800; line-height: 1; box-shadow: inset 0 0 0 7px rgba(185,104,67,.045); }
.service-explainer .eyebrow { margin-bottom: 1rem; color: var(--color-accent); }
.service-explainer h2 { max-width: 820px; margin-inline: auto; font-size: clamp(2.75rem, 4.2vw, 4.7rem); line-height: 1; }
.service-explainer__rule { display: block; width: 98px; height: 2px; margin: 1.75rem auto 1.25rem; background: var(--color-accent); }
.service-explainer__lead { max-width: 790px; margin: 0 auto; color: var(--color-forest); font-size: clamp(1.04rem, 1.35vw, 1.18rem); line-height: 1.7; }
.service-explainer__lead strong { font-weight: 650; }
.service-explainer__body { max-width: 790px; margin: 1rem auto 0; color: rgba(24,49,39,.74); font-size: 1rem; line-height: 1.75; }

.service-child-directory { padding-block: clamp(4.75rem, 7vw, 7.5rem) clamp(6.5rem, 9vw, 9rem); border-top: 1px solid rgba(21,60,46,.12); background: #fffdf7; }
.service-child-directory__heading { max-width: 850px; margin-bottom: clamp(2.75rem, 4.5vw, 4.5rem); }
.service-child-directory__heading .eyebrow { color: var(--color-accent); }
.service-child-directory__heading h2 { font-size: clamp(1.9rem, 3.2vw, 3.2rem); line-height: 1; white-space: nowrap; }
.service-child-directory__heading > p:last-child { max-width: 700px; margin: 1.25rem 0 0; color: rgba(24,49,39,.74); font-size: clamp(1rem, 1.2vw, 1.12rem); line-height: 1.65; }
.service-child-directory__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.25rem, 2vw, 2rem); align-items: stretch; }
.service-child-card { min-width: 0; overflow: hidden; border: 1px solid rgba(92,103,73,.28); border-radius: 16px; background: rgba(248,244,233,.55); transition: border-color 220ms var(--ease-ui), transform 220ms var(--ease-ui), box-shadow 220ms var(--ease-ui); }
.service-child-card.reveal { transition-delay: calc((var(--service-card-index, 0) % 3) * 70ms); }
.service-child-card:hover,
.service-child-card:focus-within { border-color: rgba(63,112,77,.58); box-shadow: 0 18px 42px rgba(8,29,21,.1); transform: translateY(-4px); }
.service-child-card__target { display: flex; height: 100%; color: inherit; text-decoration: none; flex-direction: column; }
.service-child-card__target:focus-visible { border-radius: inherit; outline: 3px solid rgba(185,104,67,.58); outline-offset: -4px; }
.service-child-card__media { display: block; aspect-ratio: 1.62 / 1; margin: .85rem .85rem 0; overflow: hidden; border-radius: 12px; background: var(--color-sage); }
.service-child-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform 650ms var(--ease-media); }
.service-child-card:hover .service-child-card__image,
.service-child-card:focus-within .service-child-card__image { transform: scale(1.025); }
.service-child-card__body { display: flex; padding: 1.25rem 1.4rem 1.45rem; flex: 1; flex-direction: column; }
.service-child-card__heading { display: grid; grid-template-columns: 62px minmax(0, 1fr); gap: 1rem; align-items: center; min-height: 76px; }
.service-child-card__icon { display: grid; width: 58px; height: 58px; overflow: hidden; place-items: center; border-radius: 50%; background: #c6d2c2; color: var(--color-forest); flex: 0 0 auto; }
.service-child-card__icon-image { display: block; width: 100%; height: 100%; border-radius: inherit; object-fit: cover; }
.service-child-card__icon svg,
.service-practical-note__icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.service-child-card__title { margin: 0; font-family: var(--body); font-size: clamp(1.15rem, 1.45vw, 1.42rem); font-weight: 720; letter-spacing: -.025em; line-height: 1.15; }
.service-child-card__copy { min-height: 3.2em; margin: 1rem 0 1.4rem; color: rgba(24,49,39,.72); font-size: .92rem; line-height: 1.58; }
.service-child-card__action { display: inline-flex; gap: .75rem; align-items: center; min-height: 48px; margin-top: auto; color: var(--color-accent); font-size: .88rem; font-weight: 760; }
.service-child-card__action span { font-size: 1.35rem; line-height: 1; transition: transform 180ms var(--ease-ui); }
.service-child-card:hover .service-child-card__action span,
.service-child-card:focus-within .service-child-card__action span { transform: translateX(5px); }

.service-scope { padding-block: clamp(5.25rem, 7vw, 7.5rem); border-top: 1px solid rgba(21,60,46,.1); background: #fffdf7; }
.service-scope__inner { display: grid; grid-template-columns: minmax(300px, .62fr) minmax(0, 1.38fr); gap: clamp(3.5rem, 7vw, 8rem); align-items: start; }
.service-scope__heading { position: sticky; top: 136px; max-width: 520px; }
.service-scope__heading .eyebrow { color: var(--color-accent); }
.service-scope__heading h2 { max-width: 510px; font-size: clamp(3rem, 4.4vw, 5rem); line-height: .98; }
.service-scope__content { min-width: 0; }
.service-scope__list { padding: 0; margin: 0; list-style: none; }
.service-scope__list li { position: relative; display: flex; align-items: center; min-height: 82px; padding: 1.2rem 1rem 1.2rem 3rem; border-bottom: 1px solid rgba(21,60,46,.22); color: rgba(24,49,39,.88); font-size: clamp(.96rem, 1.05vw, 1.08rem); line-height: 1.5; }
.service-scope__list li:last-child { border-bottom: 0; }
.service-scope__list li > span { position: absolute; top: 50%; left: .55rem; width: 15px; height: 11px; border-radius: 100% 0 100% 0; background: var(--color-leaf); transform: translateY(-50%) rotate(-22deg); }
.service-practical-note { display: grid; grid-template-columns: 82px minmax(0, 1fr); gap: 1.6rem; margin-top: 2.5rem; padding: clamp(1.75rem, 2.5vw, 2.4rem); border: 1px solid rgba(21,60,46,.2); border-top: 3px solid var(--color-forest); border-radius: 0 0 18px 18px; background: rgba(248,244,233,.68); }
.service-practical-note__icon { display: grid; width: 72px; height: 72px; place-items: center; border-radius: 50%; background: rgba(157,180,159,.48); color: var(--color-forest); }
.service-practical-note__icon svg { width: 34px; height: 34px; }
.service-practical-note h3 { font-family: var(--body); font-size: clamp(1.25rem, 1.8vw, 1.65rem); font-weight: 740; line-height: 1.25; }
.service-practical-note div > p:last-child { max-width: 780px; margin: .85rem 0 0; color: rgba(24,49,39,.75); font-size: .94rem; line-height: 1.65; }

.service-fit { padding-block: clamp(5.25rem, 7vw, 7.5rem); overflow: hidden; border-top: 1px solid rgba(255,255,255,.14); background: var(--color-forest); color: #fffdf7; }
.service-fit__inner { display: block; }
.service-fit__heading { max-width: 820px; margin: 0 auto clamp(2.75rem, 4.5vw, 4.5rem); text-align: center; }
.service-fit__heading .eyebrow { margin-bottom: .85rem; color: #f0a47d; }
.service-fit__heading h2 { max-width: 820px; margin-inline: auto; color: #fffdf7; font-size: clamp(2.8rem, 4.2vw, 4.6rem); line-height: .98; text-wrap: balance; }
.service-fit__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 1.8vw, 1.75rem); }
.service-situation { display: flex; min-width: 0; min-height: 260px; padding: clamp(1.65rem, 2.4vw, 2.3rem); border: 1px solid rgba(255,255,255,.22); border-radius: 22px; background: #fffdf7; flex-direction: column; transition: border-color 220ms var(--ease-ui), transform 220ms var(--ease-ui); }
.service-situation.reveal { transition-delay: calc(var(--fit-index, 0) * 80ms); }
.service-situation:hover { border-color: rgba(63,112,77,.5); transform: translateY(-4px); }
.service-situation::before { display: block; width: 42px; height: 2px; margin-bottom: 1.45rem; background: var(--color-accent); content: ""; }
.service-situation h3 { margin: 0; color: var(--color-forest); font-family: var(--sans); font-size: clamp(1.3rem, 1.55vw, 1.65rem); font-weight: 680; letter-spacing: -.03em; line-height: 1.18; }
.service-situation p { max-width: 520px; margin: .85rem 0 0; color: rgba(24,49,39,.72); font-size: .94rem; line-height: 1.65; }

.service-process { min-height: 0; }
.service-process.route-section { background: #fffdf7; }
.service-process .route-section__heading .eyebrow { color: var(--color-accent); }
.service-process .process-route__marker { border-color: #fffdf7; background: color-mix(in srgb, currentColor 18%, #fffdf7); }
.service-process .process-route { max-width: 1510px; min-height: 430px; }
.service-process .process-route ol { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-process .process-route li > p { max-width: 340px; margin: .9rem auto 0; color: rgba(24,49,39,.72); font-size: .9rem; line-height: 1.58; }
.service-process .process-route.has-entry-animation li > p { opacity: 0; transform: translateY(9px); transition: opacity 360ms var(--ease-ui) var(--route-reveal-delay), transform 420ms var(--ease-ui) var(--route-reveal-delay); }
.service-process .process-route.has-entry-animation li.is-reached > p { opacity: 1; transform: translateY(0); }
.service-process .process-route__icon { display: grid; width: 100%; height: 100%; place-items: center; color: var(--color-forest); }
.service-process .process-route__icon svg { width: 43%; height: 43%; fill: none; stroke: currentColor; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.service-process .process-route__image { background: #f7f1e5; }

.faq-section.service-faq { border-top: 1px solid rgba(21,60,46,.1); background: #fffdf7; }
.service-faq .faq-section__header { grid-template-columns: minmax(0, 1fr); }
.service-faq .faq-section__header .eyebrow { color: var(--color-accent); }
.service-page--child + .site-footer { margin-top: 0; }
.internal-page .blog-query { width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-wide)); padding-block: clamp(5rem, 9vw, 8rem); margin-inline: auto; }

/* Shared placeholder for rebuilt interior pages */
.page-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: clamp(12rem, 24vh, 15rem) var(--page-gutter) clamp(6rem, 12vh, 9rem);
  overflow: hidden;
  background: #f8f4e9;
  color: var(--color-forest);
  text-align: center;
}

.page-placeholder::before {
  position: absolute;
  top: 20%;
  left: 50%;
  width: min(70vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(21,60,46,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(21,60,46,.025), 0 0 0 14vw rgba(21,60,46,.015);
  content: "";
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.page-placeholder__inner { position: relative; z-index: 1; width: min(100%, 760px); }
.page-placeholder .eyebrow { color: var(--color-accent); }
.page-placeholder h1 { max-width: 720px; margin-inline: auto; font-size: clamp(3.5rem, 7vw, 7rem); }
.page-placeholder__inner > p:not(.eyebrow) { max-width: 540px; margin: 1.75rem auto 2.25rem; font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.65; }
.page-placeholder .button { min-height: 56px; }

/* 404 */
body.error404 { background: #f8f4e9; }
.error-page {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-content: center;
  justify-items: center;
  padding: clamp(11rem, 18vh, 14rem) var(--page-gutter) clamp(6.5rem, 12vh, 9rem);
  background: #f8f4e9;
  color: var(--color-forest);
  text-align: center;
}
.error-page > * { width: min(100%, 980px); margin-inline: auto !important; }
.error-page .error-page__code {
  margin: 0 auto clamp(1.65rem, 2.5vw, 2.5rem) !important;
  color: #c7d2b5;
  font-family: var(--display);
  font-size: clamp(9rem, 18vw, 18rem);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .7;
}
.error-page h1 {
  max-width: 980px;
  margin: 0 auto !important;
  color: var(--color-forest);
  font-size: clamp(3.25rem, 5.8vw, 6rem);
  letter-spacing: -.045em;
  line-height: .92;
  text-align: center;
  text-wrap: balance;
}
.error-page h1::before {
  display: block;
  width: 78px;
  height: 2px;
  margin: 0 auto clamp(1.35rem, 2vw, 1.9rem);
  background: var(--color-accent);
  content: "";
}
.error-page .error-page__message {
  max-width: 560px;
  margin: clamp(1.6rem, 2.5vw, 2.25rem) auto 0 !important;
  color: rgba(21,60,46,.78);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.65;
  text-align: center;
}
.error-page .error-page__actions { display: flex; justify-content: center; margin: clamp(2rem, 3vw, 2.6rem) auto 0 !important; }
.error-page .wp-element-button { display: inline-flex; min-height: 58px; align-items: center; justify-content: center; gap: .75rem; padding-inline: 1.6rem; }
.error-page .wp-element-button::after { content: "→"; font-size: 1.15em; transition: transform 180ms var(--ease-ui); }
.error-page .wp-element-button:focus-visible::after { transform: translateX(4px); }

@media (hover: hover) and (pointer: fine) {
  .error-page .wp-element-button:hover::after { transform: translateX(4px); }
}

@media (hover: none), (pointer: coarse) {
  .error-page .wp-element-button:active::after { transform: translateX(4px); }
}
body.error404 .site-footer__wave { background: #f8f4e9; }

/* Hero */
.living-hero {
  position: relative;
  display: block;
  min-height: 720px;
  height: clamp(720px, 62.5vw, 900px);
  isolation: isolate;
  overflow: hidden;
  background: #f8f4e9;
  color: var(--color-forest);
}

.living-hero__media { position: absolute; z-index: 0; inset: 0 0 0 32%; display: block; overflow: hidden; background: var(--color-forest); }
.living-hero__media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }

.living-hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,29,21,.08), transparent 36%), linear-gradient(0deg, rgba(8,29,21,.16), transparent 38%);
  content: "";
  pointer-events: none;
}

.living-hero__paper {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(64vw, 1080px);
  height: 100%;
  overflow: hidden;
  filter: drop-shadow(24px 0 38px rgba(8,29,21,.08));
  pointer-events: none;
}
.living-hero__paper-base { fill: #f8f4e9; }
.living-hero__paper-soil { fill: var(--color-forest); }
.living-hero__paper-mobile { display: none; }
.living-hero__content { position: relative; z-index: 5; width: min(calc(100% - (var(--page-gutter) * 2)), 1440px); padding-left: 1.4rem; margin: 0 auto clamp(15rem, 36vh, 20.25rem); text-align: left; pointer-events: none; }
.living-hero__content > * { pointer-events: auto; }
.living-hero h1 { max-width: min(44vw, 640px); font-size: clamp(3.25rem, 4.65vw, 5.1rem); line-height: .96; text-align: left; }
.living-hero__title-line { display: block; }
.living-hero .eyebrow { color: var(--color-accent); }
.living-hero__lead { max-width: 430px; margin: 1.65rem 0 2.2rem; font-size: clamp(1.05rem, 1.35vw, 1.22rem); line-height: 1.55; }
.living-hero .button-row { justify-content: flex-start; }
.living-hero .button { min-height: 58px; padding-inline: 1.35rem; font-size: .78rem; }
.living-hero .button svg { width: 20px; height: 20px; fill: currentColor; }
.button--forest { border-color: var(--color-forest); background: var(--color-forest); color: #fff; }
.button--outline { border-color: rgba(21,60,46,.62); background: #f8f4e9; color: var(--color-forest); }

@media (hover: hover) and (pointer: fine) {
  .button--forest:hover { border-color: var(--color-leaf); background: var(--color-leaf); }
  .button--outline:hover { border-color: var(--color-forest); background: var(--color-forest); color: #fff; }
}

@media (hover: none), (pointer: coarse) {
  .button--forest:active { border-color: var(--color-leaf); background: var(--color-leaf); color: #fff; }
  .button--outline:active { border-color: var(--color-forest); background: var(--color-forest); color: #fff; }
  .site-navigation__cta:active,
  .mobile-menu__cta:active { border-color: #9f5132; background: #9f5132; color: #fff; }
}

.hero-botanicals { position: absolute; z-index: 4; inset: 0 auto 0 0; width: min(43vw, 720px); overflow: visible; color: var(--color-forest); pointer-events: none; transform: translate3d(var(--botanical-x, 0), var(--botanical-y, 0), 0); transition: transform 700ms var(--ease-media); }
.hero-botanical {
  --grow-delay: 0ms;
  --grow-duration: 2.2s;
  --grow-tilt: -1deg;
  position: absolute;
  display: block;
  transform-origin: 50% 100%;
  will-change: clip-path, transform, opacity;
}
.hero-botanical img { display: block; width: 100%; height: 100%; object-fit: contain; transform-origin: 50% 100%; }
.hero-botanical--left {
  --left-plant-width: clamp(260px, 20vw, 310px);
  --grow-duration: 2.4s;
  top: -4%;
  bottom: -2%;
  left: calc(var(--left-plant-width) * -.45);
  width: var(--left-plant-width);
}
.hero-botanical--left img { object-position: center bottom; animation: botanicalSway 7.2s 2.6s ease-in-out infinite alternate; }
.hero-botanical--lower {
  --grow-delay: 180ms;
  --grow-duration: 1.9s;
  --grow-tilt: .7deg;
  bottom: -1%;
  left: 2%;
  width: 54%;
  height: 29%;
}
.hero-botanical--lower img { object-position: center bottom; animation: botanicalSway 7.6s 2.35s ease-in-out infinite alternate-reverse; }
.hero-botanical--flower {
  --grow-delay: 390ms;
  --grow-duration: 2.3s;
  --grow-tilt: 1.2deg;
  bottom: -6%;
  left: 91%;
  width: 61%;
  height: 66%;
}
.hero-botanical--flower img { object-position: center bottom; animation: botanicalSway 8.2s 3s ease-in-out infinite alternate-reverse; }
.hero-botanicals.is-growing .hero-botanical { animation: botanicalGrow var(--grow-duration) cubic-bezier(.16,.74,.18,1) var(--grow-delay) both; }
.hero-botanicals__trigger { position: absolute; z-index: 3; inset: 0 auto 0 0; width: clamp(120px, 12vw, 180px); padding: 0; border: 0; background: transparent; color: var(--color-forest); cursor: pointer; pointer-events: auto; }
.hero-botanicals__trigger:focus-visible { outline: 2px solid var(--color-accent); outline-offset: -8px; }
.hero-botanicals__hint { position: absolute; bottom: 2rem; left: 1.25rem; padding: .45rem .65rem; border-radius: 999px; background: rgba(248,244,233,.9); box-shadow: 0 8px 24px rgba(8,29,21,.12); font-size: .6rem; font-weight: 800; letter-spacing: .1em; opacity: 0; text-transform: uppercase; transform: translateY(5px); transition: opacity 180ms ease, transform 180ms ease; }
.hero-botanicals__trigger:hover .hero-botanicals__hint,
.hero-botanicals__trigger:focus-visible .hero-botanicals__hint { opacity: 1; transform: translateY(0); }

@keyframes botanicalGrow {
  0% { clip-path: inset(100% 0 0); opacity: 0; transform: translate3d(0, 18px, 0) scaleY(.94) rotate(var(--grow-tilt)); }
  14% { opacity: 1; }
  82% { clip-path: inset(0); opacity: 1; transform: translate3d(0, 0, 0) scaleY(1.008) rotate(0); }
  100% { clip-path: inset(0); opacity: 1; transform: translate3d(0, 0, 0) scaleY(1) rotate(0); }
}
@keyframes botanicalSway { from { transform: rotate(-.55deg) translate3d(-1px, 0, 0); } to { transform: rotate(.65deg) translate3d(2px, -2px, 0); } }

/* Need selector */
.needs-section { position: relative; padding: clamp(6.5rem, 9vw, 9rem) 0 clamp(7rem, 10vw, 10rem); background: #f8f4e9; color: var(--color-ink); isolation: isolate; }
.needs-section__wave { position: absolute; z-index: 2; top: -96px; left: 0; width: 100%; height: 98px; pointer-events: none; }
.needs-section__wave-back { fill: #c8d5b8; }
.needs-section__wave-front { fill: #f8f4e9; }
.needs-selector { position: relative; }
.needs-selector__heading { position: relative; max-width: 1050px; margin: 0 auto; text-align: center; }
.needs-selector__heading h2 { font-size: clamp(3.25rem, 5vw, 5.6rem); line-height: .96; }
.needs-selector__tabs { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); width: calc(100% - clamp(5rem, 9vw, 9rem)); max-width: 1240px; margin: clamp(2.6rem, 5vw, 4.5rem) auto -3px; }
.needs-tab { position: relative; min-height: 58px; padding: .65rem .6rem; border: 1px solid rgba(21,60,46,.2); border-bottom: 0; border-radius: 14px 14px 0 0; background: rgba(248,244,233,.7); color: var(--color-ink); cursor: pointer; font-family: var(--display); font-size: clamp(.95rem, 1.32vw, 1.24rem); font-weight: 500; line-height: 1.05; transition: background 180ms var(--ease-ui), border-color 180ms var(--ease-ui); }
.needs-tab + .needs-tab { margin-left: -1px; }
.needs-tab:hover,
.needs-tab:focus-visible { background: rgba(200,213,184,.36); }
.needs-tab:focus-visible { z-index: 2; outline: 2px solid var(--color-accent); outline-offset: -3px; }
.needs-tab:not(.is-active)::after { position: absolute; right: -1px; bottom: 0; left: -1px; height: 3px; background: #5b7456; content: ""; }
.needs-tab.is-active { z-index: 4; border: 3px solid #5b7456; border-bottom-color: #f8f4e9; background: rgba(200,213,184,.64); color: var(--color-forest); }
.needs-selector__mobile-choice { display: none; }
.needs-selector__custom-choice { display: none; }
.needs-selector__mobile-choice.is-enhanced .needs-selector__native-choice { display: none; }
.needs-selector__mobile-choice.is-enhanced .needs-selector__custom-choice { display: block; }
.needs-showcase { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr); gap: clamp(2rem, 4vw, 4.5rem); max-width: 1370px; min-height: clamp(500px, 37vw, 610px); padding: clamp(1rem, 1.7vw, 1.55rem); margin: 0 auto; overflow: hidden; border: 3px solid #5b7456; border-radius: 22px; background: #f8f4e9; box-shadow: none; }
.needs-showcase__media { position: relative; min-width: 0; min-height: 100%; margin: 0; overflow: hidden; border-radius: 16px; background: var(--color-forest); }
.needs-showcase__image { position: absolute; z-index: 0; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.012); transition: opacity 280ms var(--ease-ui), transform 420ms var(--ease-media); will-change: opacity, transform; }
.needs-showcase__image[hidden] { display: none; }
.needs-showcase__image.is-active { z-index: 2; opacity: 1; transform: scale(1); }
.needs-showcase__image.is-entering { z-index: 3; }
.needs-showcase__image.is-leaving { z-index: 1; opacity: 1; transform: scale(1); }
.needs-showcase__content { position: relative; display: grid; grid-template-rows: minmax(0, 1fr) auto; min-width: 0; min-height: 0; align-items: start; padding: clamp(2rem, 3.5vw, 3.5rem) clamp(2.5rem, 4vw, 4.5rem) clamp(1.35rem, 2vw, 2rem) 0; }
.needs-detail { display: none; min-width: 0; min-height: 0; align-self: center; padding-right: clamp(2.5rem, 4vw, 4rem); }
.needs-detail h3 { min-height: 1.88em; font-family: var(--display); font-size: clamp(2.9rem, 4.2vw, 4.75rem); font-weight: 500; line-height: .94; letter-spacing: -.04em; }
.needs-detail > p { min-height: 4.86em; max-width: 34rem; margin: 1.35rem 0 0; color: rgba(24,49,39,.82); font-size: clamp(.98rem, 1.16vw, 1.08rem); line-height: 1.62; }
.needs-detail__note { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 1.15rem; min-height: 112px; align-items: center; max-width: 34rem; margin-top: clamp(1.5rem, 2.5vw, 2.25rem); }
.needs-detail__botanical { display: block; width: 68px; height: 94px; object-fit: contain; }
.needs-detail__note strong { display: inline-block; padding-bottom: .3rem; border-bottom: 1px solid rgba(53,83,58,.58); color: var(--color-forest); font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.needs-detail__note p { max-width: 31rem; margin: .55rem 0 0; color: rgba(24,49,39,.78); font-size: .86rem; line-height: 1.5; }
.needs-detail.is-active { display: block; animation: needCopyIn 280ms var(--ease-ui) both; }
.needs-showcase__actions { display: flex; align-self: end; justify-content: flex-end; }
.needs-showcase__arrow { position: absolute; top: 44%; display: grid; width: 42px; height: 64px; place-items: center; padding: 0; border: 0; background: transparent; color: var(--color-forest); cursor: pointer; transform: translateY(-50%); transition: color 180ms var(--ease-ui), transform 180ms var(--ease-ui), opacity 180ms var(--ease-ui); }
.needs-showcase__arrow--prev { left: -3rem; }
.needs-showcase__arrow--next { right: -.25rem; }
.needs-showcase__arrow svg { width: 20px; height: 40px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.2; }
.needs-showcase__arrow:focus-visible:not(:disabled) { color: var(--color-leaf); }
.needs-showcase__arrow--prev:focus-visible:not(:disabled) { transform: translate(-3px, -50%); }
.needs-showcase__arrow--next:focus-visible:not(:disabled) { transform: translate(3px, -50%); }
.needs-showcase__arrow:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 0; }

@media (hover: hover) and (pointer: fine) {
  .needs-showcase__arrow:hover:not(:disabled) { color: var(--color-leaf); }
  .needs-showcase__arrow--prev:hover:not(:disabled) { transform: translate(-3px, -50%); }
  .needs-showcase__arrow--next:hover:not(:disabled) { transform: translate(3px, -50%); }
}

@media (hover: none), (pointer: coarse) {
  .needs-showcase__arrow:active:not(:disabled) { color: var(--color-leaf); }
  .needs-showcase__arrow--prev:active:not(:disabled) { transform: translate(-3px, -50%); }
  .needs-showcase__arrow--next:active:not(:disabled) { transform: translate(3px, -50%); }
}
.needs-showcase__cta { min-width: 220px; margin: 1.5rem 0 0 auto; }
.needs-showcase__cta > span:last-child { margin-left: .8rem; }

@keyframes needCopyIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

/* Photo estimate */
.photo-estimate {
  position: relative;
  padding-block: clamp(4.75rem, 6.5vw, 6.75rem) clamp(6rem, 8vw, 8rem);
  overflow: hidden;
  background: var(--color-forest);
  color: #f8f4e9;
  isolation: isolate;
}
.photo-estimate__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, .65fr);
  gap: clamp(3.5rem, 7vw, 7rem);
  align-items: end;
}
.photo-estimate .eyebrow { color: var(--color-sage); }
.photo-estimate h2 {
  max-width: 900px;
  color: #fffdf6;
  font-size: clamp(3.25rem, 5vw, 5.7rem);
  line-height: .96;
}
.photo-estimate__copy > p:last-child {
  max-width: 700px;
  margin: 1.75rem 0 0;
  color: rgba(255,253,246,.78);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.72;
}
.photo-estimate__action {
  display: grid;
  gap: 1rem;
  justify-items: start;
  padding: .35rem 0 .35rem clamp(2rem, 4vw, 4rem);
  border-left: 1px solid rgba(200,213,184,.3);
}
.photo-estimate__button { min-width: 250px; }
.photo-estimate__button > span:last-child { font-size: 1.15rem; transition: transform 180ms var(--ease-ui); }
.photo-estimate__button:focus-visible > span:last-child { transform: translateX(4px); }

@media (hover: hover) and (pointer: fine) {
  .photo-estimate__button:hover > span:last-child { transform: translateX(4px); }
}

@media (hover: none), (pointer: coarse) {
  .photo-estimate__button:active > span:last-child { transform: translateX(4px); }
}
.photo-estimate__action > p {
  max-width: 310px;
  margin: 0;
  color: rgba(255,253,246,.62);
  font-size: .73rem;
  line-height: 1.55;
}

/* Service editorial */
.service-system { position: relative; min-height: 920px; padding: clamp(6rem, 9vw, 8rem) 0 5rem; overflow: hidden; background: var(--color-forest); color: #fff; isolation: isolate; }
.service-system__plan { position: absolute; z-index: -1; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.service-system__plan path { fill: none; stroke: rgba(177,187,101,.55); stroke-width: 1; stroke-dasharray: 7 5; vector-effect: non-scaling-stroke; }
.service-system__heading { position: relative; z-index: 3; margin-bottom: 0; pointer-events: none; }
.service-system__heading .eyebrow { color: var(--color-sage); }
.service-system__heading h2 { max-width: 720px; font-size: var(--type-section); line-height: .93; }
.service-slices { position: relative; z-index: 1; display: flex; width: 88%; min-height: 590px; margin-top: -9rem; margin-left: 12%; border-block: 1px solid rgba(255,255,255,.32); }
.service-slice { position: relative; display: flex; flex: 1 1 0; flex-direction: column; justify-content: flex-end; min-width: 0; padding: 2rem; isolation: isolate; overflow: hidden; border-right: 1px solid rgba(255,255,255,.3); color: #fff; text-decoration: none; transition: flex 650ms cubic-bezier(.2,.7,.2,1); }
.service-slice::before { position: absolute; z-index: -2; inset: 0; background: var(--slice-image) center/cover no-repeat; content: ""; transition: transform 700ms cubic-bezier(.2,.7,.2,1); }
.service-slice::after { position: absolute; z-index: -1; inset: 0; background: linear-gradient(0deg, rgba(7,27,19,.88), rgba(7,27,19,.08) 70%); content: ""; }
.service-slice.is-featured { flex: 2.2 1 0; }
.service-slices:hover .service-slice { flex: .8 1 0; }
.service-slices .service-slice:hover, .service-slice:focus-visible { flex: 2.4 1 0; }
.service-slice:hover::before, .service-slice:focus-visible::before { transform: scale(1.035); }
.service-slice > span { margin-bottom: .65rem; font-size: .72rem; font-weight: 800; letter-spacing: .14em; }
.service-slice strong { font-family: var(--display); font-size: clamp(2rem, 4vw, 4.2rem); font-weight: 500; line-height: 1; }
.service-slice small { max-width: 36rem; max-height: 0; margin-top: 0; overflow: hidden; font-size: .9rem; line-height: 1.55; opacity: 0; transition: max-height 300ms ease, margin 300ms ease, opacity 300ms ease; }
.service-slice:hover small, .service-slice:focus-visible small, .service-slice.is-featured small { max-height: 90px; margin-top: 1rem; opacity: .86; }
.service-system__more { margin: 2.5rem 0 0 var(--page-gutter); }
.service-system__more span { margin-left: 1rem; font-size: 1.25rem; transition: transform 180ms var(--ease-ui); }
.service-system__more:hover span { transform: translateX(4px); }

/* Work feature */
.work-feature { display: grid; grid-template-columns: minmax(0, 2.75fr) minmax(340px, 1fr); min-height: 850px; overflow: hidden; background: var(--color-cream); }
.work-feature__canvas { position: relative; min-height: 820px; overflow: visible; background: var(--color-forest); }
.work-feature__main { width: 100%; height: 100%; object-fit: cover; transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04); }
.work-feature__detail { position: absolute; z-index: 4; width: min(28%, 360px); border: 2px solid var(--color-cream); box-shadow: 0 16px 40px rgba(8,29,21,.16); object-fit: cover; transform: translate3d(0, var(--parallax-y, 0), 0); }
.work-feature__detail--one { top: 15%; right: -1%; aspect-ratio: 4/5; }
.work-feature__detail--two { right: 5%; bottom: 10%; width: min(31%, 390px); aspect-ratio: 4/3; }
.work-feature__line { position: absolute; z-index: 3; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.work-feature__line path { fill: none; stroke: rgba(242,239,229,.65); stroke-width: 1; vector-effect: non-scaling-stroke; }
.work-feature__aside { position: relative; z-index: 3; display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 4vw, 5rem); background: var(--color-cream); }
.work-feature__aside h2 { font-size: var(--type-section-compact); }
.work-feature__aside ul { padding: 1.5rem 0; margin: 2.2rem 0; border-block: 1px solid rgba(21,60,46,.22); list-style: none; }
.work-feature__aside li { padding: .85rem 0; border-bottom: 1px solid rgba(21,60,46,.13); font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.work-feature__aside li:last-child { border-bottom: 0; }
.work-feature__aside .button { align-self: flex-start; }

/* Process route */
.route-section { position: relative; min-height: 790px; padding-block: clamp(6.5rem, 9vw, 9rem) clamp(5rem, 7vw, 7rem); overflow: hidden; background: #f9f4e9; isolation: isolate; }
.route-section__heading { position: relative; z-index: 2; text-align: center; }
.route-section__heading .eyebrow { margin-bottom: 1.2rem; color: var(--color-forest); }
.route-section__heading h2 { max-width: 920px; margin-inline: auto; font-size: clamp(4rem, 6.5vw, 7rem); line-height: .9; }
.process-route { --route-progress: 1; position: relative; max-width: 1380px; min-height: 390px; margin: clamp(2.5rem, 4vw, 4rem) auto 0; }
.process-route__line { position: absolute; z-index: 1; top: 0; left: 0; width: 100%; height: 160px; overflow: visible; pointer-events: none; }
.process-route__base,
.process-route__progress { fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.4; }
.process-route__base { stroke: rgba(185,104,67,.2); }
.process-route__progress { stroke: var(--color-accent); stroke-dasharray: 1; stroke-dashoffset: calc(1 - var(--route-progress)); transition: stroke-dashoffset 780ms cubic-bezier(.22,1,.36,1); }
.process-route ol { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding: 3.95rem 0 0; margin: 0; list-style: none; }
.process-route li { --route-reveal-delay: 80ms; position: relative; color: var(--color-accent); text-align: center; }
.process-route li:nth-child(2) { --route-reveal-delay: 200ms; }
.process-route li:nth-child(3) { --route-reveal-delay: 320ms; }
.process-route li:nth-child(4) { --route-reveal-delay: 440ms; }
.process-route__marker { position: relative; display: block; width: 21px; height: 21px; margin: 0 auto 3.1rem; border: 4px solid #f9f4e9; border-radius: 50%; background: color-mix(in srgb, currentColor 18%, #f9f4e9); box-shadow: 0 0 0 2px currentColor; }
.process-route__marker::before { position: absolute; inset: 3px; border-radius: inherit; background: currentColor; content: ""; transform: scale(0); transition: transform 320ms var(--ease-ui); }
.process-route__marker::after { position: absolute; top: 17px; left: 50%; width: 1px; height: 35px; background: currentColor; content: ""; opacity: .24; transform: translateX(-50%); transition: opacity 320ms var(--ease-ui); }
.process-route li.is-reached .process-route__marker::before { transform: scale(1); }
.process-route li.is-reached .process-route__marker::after { opacity: .62; }
.process-route__image { width: min(100%, 205px); aspect-ratio: 1; margin: 0 auto 1.35rem; overflow: hidden; border: 1px solid rgba(21,60,46,.16); border-radius: 50%; background: var(--color-moss); box-shadow: 0 12px 30px rgba(8,29,21,.1); transform-origin: 50% 35%; }
.process-route.has-entry-animation { --route-progress: 0; }
.process-route.has-entry-animation.is-active { --route-progress: 1; }
.process-route.has-entry-animation .process-route__marker::before,
.process-route.has-entry-animation .process-route__marker::after { transition-delay: var(--route-reveal-delay); }
.process-route.has-entry-animation .process-route__image,
.process-route.has-entry-animation h3 { opacity: 0; transform: translateY(9px) scale(.985); transition: opacity 360ms var(--ease-ui) var(--route-reveal-delay), transform 420ms var(--ease-ui) var(--route-reveal-delay); }
.process-route.has-entry-animation li.is-reached .process-route__image,
.process-route.has-entry-animation li.is-reached h3 { opacity: 1; transform: translateY(0) scale(1); }
.process-route__image img { display: block; width: 100%; height: 100%; box-sizing: border-box; object-fit: contain; transition: transform 700ms var(--ease-media); }
#proces .process-route__image { display: grid; place-items: center; background: #fdf5ea; }
#proces .process-route__image img { width: 82%; height: 82%; object-position: center; }
#proces .process-route li:nth-child(3) .process-route__image img { position: relative; left: 4%; }
.process-route li:hover .process-route__image img { transform: scale(1.045); }
.process-route h3 { margin: 0; color: currentColor; font-family: var(--sans); font-size: clamp(.72rem, 1vw, .9rem); font-weight: 650; letter-spacing: .1em; line-height: 1.4; text-transform: uppercase; }
.process-route h3 span { font-weight: 800; }
.route-section__cta { display: flex; width: fit-content; margin: 2.1rem auto 0; }
.route-section__cta svg { width: 20px; height: 20px; fill: currentColor; }

/* Client reviews */
.reviews-section {
  position: relative;
  padding-block: clamp(3.5rem, 4vw, 4.5rem);
  overflow: hidden;
  background: var(--color-forest);
  color: #f8f4e9;
  isolation: isolate;
}
.reviews-section::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(115deg, rgba(7,30,21,.12), rgba(7,30,21,.52) 80%);
  content: "";
  pointer-events: none;
}
.reviews-section__heading { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; align-items: start; }
.reviews-section__heading .eyebrow { color: var(--color-sage); }
.reviews-section__heading h2 { max-width: 760px; color: #fffdf6; font-size: clamp(2.9rem, 3.8vw, 4.5rem); line-height: .92; }
.reviews-section__icon { width: clamp(58px, 5.5vw, 82px); height: auto; margin-top: .25rem; fill: var(--color-sage); opacity: .82; }
.reviews-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 1fr; gap: clamp(.8rem, 1.3vw, 1.25rem); align-items: stretch; margin-top: clamp(2rem, 2.5vw, 2.75rem); }
.review-entry { position: relative; display: flex; min-width: 0; min-height: 270px; flex-direction: column; padding: clamp(1.4rem, 1.8vw, 1.75rem); border: 1px solid rgba(200,213,184,.28); border-radius: 18px; background: rgba(248,244,233,.055); transition: border-color 220ms var(--ease-ui), background 220ms var(--ease-ui), transform 260ms var(--ease-ui); transition-delay: calc(var(--review-order) * 90ms); }
.review-entry:hover { border-color: rgba(200,213,184,.52); background: rgba(248,244,233,.085); transform: translateY(-4px); }
.review-entry__quote { height: .66em; color: var(--color-accent); font-family: var(--display); font-size: clamp(3.4rem, 3.8vw, 4.4rem); line-height: .78; transition: color 260ms var(--ease-ui), transform 420ms var(--ease-ui); }
.review-entry:hover .review-entry__quote { color: #da7952; transform: translateY(-5px) rotate(-4deg); }
.review-entry blockquote { margin: 1rem 0 1.75rem; }
.review-entry blockquote p { margin: 0; color: #fffdf6; font-size: clamp(.98rem, 1.1vw, 1.08rem); line-height: 1.58; }
.review-entry__author { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: .8rem; align-items: center; margin-top: auto; }
.review-entry__initials { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(200,213,184,.5); border-radius: 50%; background: rgba(200,213,184,.08); color: var(--color-sage); font-size: .61rem; font-weight: 800; letter-spacing: .08em; }
.review-entry__author cite { color: #fff; font-size: .78rem; font-style: normal; font-weight: 800; letter-spacing: .035em; }

/* Lawn + irrigation */
.lawn-section { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(430px, .95fr); min-height: 800px; }
.lawn-section__media { position: relative; min-height: 680px; overflow: hidden; }
.lawn-section__media img { width: 100%; height: 100%; object-fit: cover; transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04); }
.irrigation-arc { position: absolute; border: 1px dashed rgba(242,239,229,.8); border-right-color: transparent; border-bottom-color: transparent; border-radius: 50%; transform: rotate(28deg); animation: irrigationReveal 1.2s ease both paused; }
.lawn-section__media:hover .irrigation-arc { animation-play-state: running; }
.irrigation-arc--one { right: 18%; bottom: 18%; width: 32%; aspect-ratio: 1; }
.irrigation-arc--two { top: 18%; left: 21%; width: 28%; aspect-ratio: 1; animation-delay: 120ms; }
@keyframes irrigationReveal { from { clip-path: inset(0 100% 0 0); opacity: 0; } to { clip-path: inset(0); opacity: 1; } }
.lawn-section__content { position: relative; display: flex; flex-direction: column; justify-content: flex-start; padding: clamp(2.75rem, 4vw, 4.5rem); overflow: hidden; background: linear-gradient(to bottom, var(--color-accent) 0 48%, var(--color-forest) 48% 100%); color: #fff; }
.lawn-section__content::after { position: absolute; top: 45%; left: -18%; width: 138%; height: 72px; border-top: 1px solid rgba(200,213,184,.75); border-radius: 50%; content: ""; transform: rotate(2deg); }
.lawn-section__content h2 { position: relative; z-index: 1; font-size: clamp(3rem, 4.3vw, 4.6rem); }
.lawn-section__content ul { position: relative; z-index: 1; padding: 1.2rem 0; margin: clamp(6rem, 8vw, 8rem) 0 2rem; border-block: 1px solid rgba(255,255,255,.3); list-style: none; }
.lawn-section__content li { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.2); font-family: var(--display); font-size: clamp(1.25rem, 1.6vw, 1.65rem); }
.lawn-section__content li:last-child { border-bottom: 0; }
.lawn-section__content .button { position: relative; z-index: 1; align-self: flex-start; }

/* FAQ */
.faq-section {
  position: relative;
  overflow: hidden;
  background: #f9f4e9;
  color: var(--color-forest);
}
.faq-section__inner { position: relative; z-index: 1; padding-block: clamp(4rem, 4vw, 4.25rem) clamp(7.5rem, 7.5vw, 7.75rem); }
.faq-section__header { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .45fr); gap: clamp(3rem, 6vw, 6rem); align-items: end; margin-bottom: clamp(2.75rem, 3.25vw, 3.5rem); }
.faq-section__header .eyebrow { margin-bottom: 1.1rem; color: #7b7c59; }
.faq-section__header h2 { font-family: var(--sans); font-size: clamp(3.1rem, 3.8vw, 4rem); font-weight: 500; letter-spacing: -.045em; line-height: 1; }
.faq-section__header > p { max-width: 385px; margin: 0 0 .15rem; color: rgba(24,49,39,.88); font-size: clamp(1rem, 1.22vw, 1.18rem); line-height: 1.65; }
.faq-item { border-bottom: 1px solid rgba(21,60,46,.72); transition: margin 360ms var(--ease-ui), background 360ms var(--ease-ui), border-color 360ms var(--ease-ui), border-radius 360ms var(--ease-ui); }
.faq-item.is-open { margin-bottom: .2rem; border-color: transparent; border-radius: 18px; background: rgba(255,253,248,.88); }
.faq-item.is-open:not(:first-child) { margin-top: .2rem; }
.faq-item__heading { margin: 0; font: inherit; }
.faq-item__trigger { position: relative; display: block; width: 100%; padding: clamp(1.1rem, 1.25vw, 1.35rem) clamp(3.8rem, 5vw, 5.25rem) clamp(1.1rem, 1.25vw, 1.35rem) clamp(1.25rem, 2.8vw, 2.8rem); border: 0; background: transparent; color: inherit; cursor: pointer; font-family: var(--sans); font-size: clamp(1.45rem, 2.05vw, 2.15rem); font-weight: 600; letter-spacing: -.035em; line-height: 1.2; text-align: left; transition: padding 460ms cubic-bezier(.22,1,.36,1), color 180ms var(--ease-ui); appearance: none; }
.faq-item.is-open .faq-item__trigger { padding-top: 1.75rem; padding-bottom: 1rem; }
.faq-item__trigger::before,
.faq-item__trigger::after { position: absolute; top: 50%; right: clamp(1.35rem, 3.25vw, 3.3rem); width: 30px; height: 1.5px; border-radius: 999px; background: currentColor; content: ""; transform: translateY(-50%); transition: transform 420ms cubic-bezier(.22,1,.36,1); }
.faq-item__trigger::after { transform: translateY(-50%) rotate(90deg); }
.faq-item.is-open .faq-item__trigger::after { transform: translateY(-50%) rotate(0); }
.faq-item__trigger:hover { color: var(--color-leaf); }
.faq-item__trigger:focus-visible { z-index: 1; border-radius: 12px; outline: 3px solid rgba(185,104,67,.58); outline-offset: -5px; }
.faq-list__answer { display: grid; grid-template-rows: 0fr; overflow: hidden; opacity: 0; transform: translateY(-.4rem); transition: grid-template-rows 480ms cubic-bezier(.22,1,.36,1), opacity 260ms var(--ease-ui), transform 420ms cubic-bezier(.22,1,.36,1); }
.faq-item.is-open .faq-list__answer { grid-template-rows: 1fr; opacity: 1; transform: translateY(0); }
.faq-list__answer-inner { min-height: 0; overflow: hidden; }
.faq-list__answer p { max-width: 760px; padding: 0 clamp(3.8rem, 5vw, 5.25rem) clamp(1.7rem, 2.4vw, 2.35rem) clamp(1.25rem, 2.8vw, 2.8rem); margin: 0; color: rgba(24,49,39,.86); font-size: clamp(.98rem, 1.18vw, 1.12rem); line-height: 1.65; }
.faq-section__contact { display: inline-flex; gap: .65rem; align-items: center; margin-top: 1.35rem; color: #d1643e; font-size: clamp(.9rem, 1.15vw, 1.05rem); text-decoration: none; }
.faq-section__contact span { font-size: 1.35em; line-height: 1; transition: transform 180ms var(--ease-ui); }
.faq-section__contact:hover span,
.faq-section__contact:focus-visible span { transform: translateX(4px); }
.faq-section__wave { position: absolute; z-index: 0; bottom: -1px; left: 0; width: 100%; height: clamp(72px, 7.8vw, 112px); pointer-events: none; }
.faq-section__wave path { fill: #0d2b21; }

/* Final conversion */
.contact-conversion { position: relative; display: grid; grid-template-columns: 1fr minmax(520px, .95fr); align-items: end; min-height: 860px; isolation: isolate; overflow: hidden; background: var(--color-forest) var(--contact-image) center/cover no-repeat; color: #fff; }
.contact-conversion::before { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(7,27,19,.78), rgba(7,27,19,.12) 60%), linear-gradient(0deg, rgba(7,27,19,.4), transparent 55%); content: ""; }
.contact-conversion__copy { align-self: end; max-width: 820px; padding: clamp(3rem, 6vw, 6rem) var(--page-gutter); }
.contact-conversion__copy h2 { font-size: var(--type-section); }
.contact-conversion__copy > p:last-child { max-width: 600px; margin-top: 1.5rem; font-size: 1.05rem; line-height: 1.7; }
.contact-conversion__brief { position: relative; align-self: end; min-height: 680px; padding: clamp(8rem, 11vw, 11rem) clamp(3rem, 5vw, 5rem) 4rem; border-radius: 58% 0 0 0 / 24% 0 0 0; background: var(--color-cream); color: var(--color-ink); }
.contact-conversion__brief::before { position: absolute; inset: 0; border-radius: inherit; background: url("../images/needs/selector-plan.webp") 12% center/cover no-repeat; content: ""; opacity: .12; pointer-events: none; }
.contact-conversion__label { position: relative; margin-bottom: 1.4rem; font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.brief-row { position: relative; display: grid; grid-template-columns: 42px 1fr; gap: .35rem 1rem; padding: 1.15rem .7rem; border-bottom: 1px solid rgba(21,60,46,.2); color: inherit; text-decoration: none; transition: background 180ms var(--ease-ui); }
.brief-row:first-of-type { border-top: 1px solid rgba(21,60,46,.2); }
.brief-row span { color: var(--color-accent); font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.brief-row small { grid-column: 2; color: rgba(24,49,39,.68); font-size: .76rem; line-height: 1.45; }
.brief-row:hover,
.brief-row:focus-visible { background: rgba(113,140,69,.08); }
.contact-conversion__brief .button { position: relative; margin-top: 2rem; }
.contact-conversion__brief .text-link { position: relative; margin-left: 1.2rem; }

/* Before / after proof */
.project-proof {
  position: relative;
  padding-block: clamp(7rem, 10vw, 10rem);
  overflow: hidden;
  background: #f8f4e9;
  isolation: isolate;
}
.project-proof__layout { display: grid; grid-template-columns: minmax(360px, .82fr) minmax(0, 1.35fr); gap: clamp(4rem, 7vw, 6.5rem); align-items: center; }
.project-proof__copy h2 { max-width: 520px; font-size: clamp(2.75rem, 3.65vw, 4.15rem); line-height: .98; }
.project-proof__copy > p:not(.eyebrow) { max-width: 470px; margin: 2rem 0 2.6rem; color: rgba(24,49,39,.78); font-size: 1rem; line-height: 1.75; }
.project-proof__copy .text-link { display: inline-flex; gap: .75rem; align-items: center; color: var(--color-accent); }
.project-proof__figure { justify-self: end; width: min(100%, 800px); min-width: 0; margin: 0; }
.project-proof__figure figcaption { margin-top: .85rem; color: rgba(24,49,39,.68); font-size: .72rem; line-height: 1.5; text-align: center; }
.comparison { position: relative; aspect-ratio: 1672 / 941; overflow: hidden; border-radius: 24px; background: var(--color-forest); box-shadow: 0 22px 58px rgba(8,29,21,.18); isolation: isolate; touch-action: pan-y; }
.comparison__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; user-select: none; }
.comparison__before { position: absolute; z-index: 2; inset: 0; overflow: hidden; clip-path: inset(0 calc(100% - var(--position)) 0 0); will-change: clip-path; }
.comparison__label { position: absolute; z-index: 4; top: 1.25rem; padding: .65rem 1rem; border-radius: 10px; background: rgba(21,60,46,.9); color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(7px); }
.comparison__label--before { left: 1.25rem; }
.comparison__label--after { right: 1.25rem; }
.comparison__divider { position: absolute; z-index: 5; top: 0; bottom: 0; left: var(--position); width: 2px; background: rgba(255,255,255,.96); box-shadow: 0 0 0 1px rgba(21,60,46,.1); transform: translateX(-50%); pointer-events: none; }
.comparison__handle { position: absolute; top: 50%; left: 50%; display: grid; width: 54px; height: 54px; place-items: center; border: 2px solid #fff; border-radius: 50%; background: #edf1e8; color: var(--color-forest); box-shadow: 0 8px 24px rgba(8,29,21,.22); transform: translate(-50%, -50%); transition: transform 180ms var(--ease-ui), box-shadow 180ms var(--ease-ui); }
.comparison__handle svg { width: 34px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.comparison__range { position: absolute; z-index: 6; inset: 0; width: 100%; height: 100%; margin: 0; cursor: ew-resize; opacity: 0; }
.comparison:hover .comparison__handle,
.comparison:focus-within .comparison__handle { box-shadow: 0 10px 28px rgba(8,29,21,.3), 0 0 0 5px rgba(242,239,229,.35); transform: translate(-50%, -50%) scale(1.06); }

/* Structured footer and persistent WhatsApp contact */
.site-footer { position: relative; }
.site-footer--waved { margin-top: clamp(72px, 7.8vw, 112px); }
.site-footer__wave {
  position: absolute;
  bottom: 100%;
  left: 0;
  display: block;
  width: 100%;
  height: clamp(72px, 7.8vw, 112px);
  background: #f8f4e9;
  pointer-events: none;
}
.site-footer__wave path { fill: #0d2b21; }
.vrtland-services-page .site-footer__wave { background: #fffdf7; }
.site-footer__grid {
  grid-template-columns: minmax(220px, 1.15fr) repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  padding-block: clamp(3rem, 6vw, 5rem);
}
.site-footer--without-cta { padding-top: clamp(2.75rem, 4vw, 4.5rem); }
.site-footer--without-cta .site-footer__grid { padding-top: 0; }
.site-footer__brand { display: flex; align-items: flex-start; flex-direction: column; min-width: 0; padding-right: clamp(2rem, 4vw, 4.5rem); }
.site-footer__brand img { width: 118px; height: 100px; object-fit: contain; object-position: left center; }
.site-footer__brand p { max-width: 300px; margin: 1.2rem 0 0; color: rgba(255,255,255,.7); font-size: .92rem; line-height: 1.65; }
.site-footer__grid > .site-footer__column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: .9rem;
  min-width: 0;
  padding-inline: clamp(1.5rem, 3vw, 3.5rem);
}
.site-footer__grid > .site-footer__column:last-child { padding-right: 0; }
.site-footer__grid > .site-footer__column + .site-footer__column { border-left: 1px solid rgba(255,255,255,.18); }
.site-footer__grid a { position: relative; color: rgba(255,255,255,.82); line-height: 1.45; transition: color 180ms var(--ease-ui), transform 180ms var(--ease-ui); }
.site-footer__grid a:hover,
.site-footer__grid a:focus-visible { color: #fff; transform: translateX(3px); }
.site-footer__contact-link { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: .75rem; align-items: center; min-height: 38px; margin: 0; color: rgba(255,255,255,.82); font-size: .92rem; line-height: 1.45; }
.site-footer__icon { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(200,213,184,.28); border-radius: 50%; background: rgba(200,213,184,.08); color: var(--color-moss); }
.site-footer__icon svg { width: 18px; height: 18px; fill: currentColor; }
.site-footer__bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem 2rem; align-items: center; font-size: .8rem; }
.site-footer__bottom p { margin: 0; }
.site-footer__legal { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.5rem; }
.site-footer__legal a,
.site-footer__credit a { color: inherit; text-decoration: none; transition: color 180ms var(--ease-ui); }
.site-footer__legal a:hover,
.site-footer__legal a:focus-visible,
.site-footer__credit a:hover,
.site-footer__credit a:focus-visible { color: #fff; }
.site-footer__credit { justify-self: end; text-align: right; }
.site-footer__credit a { color: var(--color-moss); font-weight: 800; letter-spacing: .03em; }
.whatsapp-float {
  position: fixed;
  right: max(1.35rem, env(safe-area-inset-right));
  bottom: max(1.35rem, env(safe-area-inset-bottom));
  z-index: 40;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 32px rgba(8,29,21,.28), 0 0 0 0 rgba(37,211,102,.3);
  text-decoration: none;
  animation: whatsappPulse 3.4s ease-out 1.2s infinite;
  transition: background 180ms var(--ease-ui), box-shadow 180ms var(--ease-ui), transform 180ms var(--ease-ui);
}
.whatsapp-float svg { width: 34px; height: 34px; fill: currentColor; }
.whatsapp-float:focus-visible { background: #1ebe5d; box-shadow: 0 16px 38px rgba(8,29,21,.34); color: #fff; transform: translateY(-4px) scale(1.04); }
.whatsapp-float:focus-visible { outline: 3px solid var(--color-moss); outline-offset: 4px; }

@media (hover: hover) and (pointer: fine) {
  .whatsapp-float:hover { background: #1ebe5d; box-shadow: 0 16px 38px rgba(8,29,21,.34); color: #fff; transform: translateY(-4px) scale(1.04); }
}

@media (hover: none), (pointer: coarse) {
  .whatsapp-float:active { background: #1ebe5d; color: #fff; transform: scale(.96); }
}

@keyframes whatsappPulse {
  0%, 72%, 100% { box-shadow: 0 12px 32px rgba(8,29,21,.28), 0 0 0 0 rgba(37,211,102,.3); }
  84% { box-shadow: 0 12px 32px rgba(8,29,21,.28), 0 0 0 13px rgba(37,211,102,0); }
}

[data-parallax] { will-change: transform; }

@media (min-width: 981px) {
  .living-hero__content { position: absolute; top: clamp(10.5rem, 18vh, 12rem); right: max(var(--page-gutter), calc((100% - 1510px) / 2)); left: max(var(--page-gutter), calc((100% - 1510px) / 2)); width: auto; padding-left: 1.35rem; margin: 0; }
  .hero-botanicals__trigger { width: 4.5rem; }
}

@media (min-width: 2042px) {
  .living-hero__paper { width: calc(70vw - 348.7px); }
  .hero-botanical--lower { left: calc(2% + ((100vw - 2041px) / 2)); }
  .hero-botanical--flower { left: calc(91% + ((100vw - 2041px) / 2)); }
}

@media (max-width: 1120px) {
  .site-navigation__call { display: none; }
  .site-navigation > ul { gap: 1.2rem; }
  .services-intro__inner { gap: 3rem; }
  .services-directory__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-category-card.reveal { transition-delay: calc((var(--card-index, 0) % 2) * 75ms); }
  .service-editorial-lead__inner { gap: 3.5rem; }
  .service-child-directory__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-child-card.reveal { transition-delay: calc((var(--service-card-index, 0) % 2) * 70ms); }
  .service-scope__inner { gap: 4rem; }
  .work-feature { grid-template-columns: 1.5fr .7fr; }
  .project-proof__layout { grid-template-columns: minmax(330px, .76fr) minmax(0, 1.24fr); gap: 3rem; }
  .process-route__image { max-width: 180px; }
}

@media (max-width: 980px) {
  body.admin-bar .site-header { top: 46px; }
  .site-header { padding: .75rem var(--page-gutter) 0; }
  .site-header.is-pull-following { position: absolute; }
  .site-header__inner { grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; width: 100%; height: 66px; padding: .25rem .65rem .25rem .8rem; border-radius: 16px; }
  .site-header .site-brand { width: 54px; min-width: 54px; height: 100%; }
  .site-header .site-brand img { width: 54px; height: 54px; }
  .site-navigation--desktop { display: none; }
  .nav-toggle { position: absolute; top: 50%; right: .65rem; z-index: 4; display: grid; place-items: center; width: 48px; height: 48px; padding: 0; border: 0; border-radius: 12px; background: transparent; color: var(--color-forest); transform: translateY(-50%); transition: background 180ms var(--ease-ui); }
  .nav-toggle:hover,
  .nav-toggle:focus-visible { background: rgba(21,60,46,.08); }
  .nav-toggle:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
  .nav-toggle__icon { position: relative; display: block; width: 25px; height: 18px; }
  .nav-toggle__icon i { position: absolute; left: 0; display: block; width: 25px; height: 1.5px; border-radius: 99px; background: currentColor; transform-origin: center; transition: top 220ms var(--ease-ui), transform 220ms var(--ease-ui); }
  .nav-toggle__icon i:first-child { top: 5px; }
  .nav-toggle__icon i:last-child { top: 13px; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__icon i:first-child { top: 9px; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__icon i:last-child { top: 9px; transform: rotate(-45deg); }
  .mobile-menu { position: fixed; z-index: 2; inset: 0; display: block; visibility: hidden; overflow: hidden; background: var(--color-forest); color: #fff; opacity: 0; pointer-events: none; transition: opacity 240ms var(--ease-ui), visibility 240ms; }
  .mobile-menu.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
  .mobile-menu__surface { position: relative; z-index: 1; display: grid; align-content: start; min-height: 100%; max-height: 100dvh; padding: clamp(6.5rem, 13.5vh, 7.4rem) var(--page-gutter) max(2rem, env(safe-area-inset-bottom)); overflow-y: auto; overscroll-behavior: contain; transform: translateY(-10px); transition: transform 280ms var(--ease-ui); }
  .mobile-menu.is-open .mobile-menu__surface { transform: translateY(0); }
  .mobile-menu__nav ul { display: grid; padding: 0; margin: 0; list-style: none; }
  .mobile-menu__nav > ul > li { border-bottom: 1px solid rgba(200,213,184,.22); }
  .mobile-menu__nav > ul > li > a,
  .mobile-menu__services-link { display: flex; align-items: center; min-height: 60px; padding: .45rem 0; color: #fff; font-family: var(--display); font-size: clamp(1.85rem, 8vw, 3rem); font-weight: 500; letter-spacing: -.03em; line-height: 1; text-decoration: none; }
  .mobile-menu__services-row { display: grid; grid-template-columns: minmax(0, 1fr) 48px; align-items: center; min-height: 60px; }
  .mobile-menu__services-link[aria-current="page"],
  .mobile-menu__services.is-open .mobile-menu__services-link { color: var(--color-sage); }
  .mobile-menu__services-toggle { display: grid; place-items: center; width: 44px; height: 44px; padding: 0; border: 0; border-radius: 12px; background: transparent; color: var(--color-sage); cursor: pointer; transition: background 180ms var(--ease-ui), color 180ms var(--ease-ui); }
  .mobile-menu__services-toggle:hover,
  .mobile-menu__services-toggle:focus-visible { background: rgba(200,213,184,.1); color: #fff; }
  .mobile-menu__services-toggle i { position: relative; display: block; width: 22px; height: 22px; }
  .mobile-menu__services-toggle i::before,
  .mobile-menu__services-toggle i::after { position: absolute; top: 10px; left: 3px; width: 16px; height: 1.5px; border-radius: 99px; background: currentColor; content: ""; transition: transform 220ms var(--ease-ui); }
  .mobile-menu__services-toggle i::after { transform: rotate(90deg); }
  .mobile-menu__services-toggle.is-open i::after { transform: rotate(0); }
  .mobile-menu__submenu,
  .mobile-menu__service-children { display: grid; grid-template-rows: 0fr; overflow: hidden; opacity: 0; transform: translateY(-.4rem); visibility: hidden; transition: grid-template-rows 480ms cubic-bezier(.22,1,.36,1), opacity 260ms var(--ease-ui), transform 420ms cubic-bezier(.22,1,.36,1), visibility 0s linear 480ms; }
  .mobile-menu__services.is-open > .mobile-menu__submenu,
  .mobile-menu__service-category.is-open > .mobile-menu__service-children { grid-template-rows: 1fr; opacity: 1; transform: translateY(0); visibility: visible; transition-delay: 0s; }
  .mobile-menu__submenu-inner,
  .mobile-menu__service-children-inner { min-height: 0; overflow: hidden; }
  .mobile-menu__submenu-inner > ul { padding: 0 0 .55rem !important; }
  .mobile-menu__submenu-inner > ul > .mobile-menu__service-category { border-top: 1px solid rgba(200,213,184,.1); }
  .mobile-menu__service-category-row { display: grid; grid-template-columns: minmax(0, 1fr) 44px; gap: .35rem; align-items: center; }
  .mobile-menu__service-category-link { display: flex; align-items: center; min-height: 48px; padding: .65rem .15rem; color: rgba(255,255,255,.82); font-size: .9rem; font-weight: 650; letter-spacing: .005em; line-height: 1.35; text-decoration: none; transition: color 180ms var(--ease-ui); }
  .mobile-menu__service-category-link:hover,
  .mobile-menu__service-category-link:focus-visible,
  .mobile-menu__service-category-link[aria-current="page"],
  .mobile-menu__service-category.is-open .mobile-menu__service-category-link { color: #fff; }
  .mobile-menu__service-category-toggle { display: grid; place-items: center; width: 44px; height: 44px; padding: 0; border: 0; border-radius: 10px; background: transparent; color: rgba(200,213,184,.85); cursor: pointer; transition: background 180ms var(--ease-ui), color 180ms var(--ease-ui); }
  .mobile-menu__service-category-toggle:hover,
  .mobile-menu__service-category-toggle:focus-visible { background: rgba(200,213,184,.1); color: #fff; }
  .mobile-menu__service-category-toggle i { display: block; width: 9px; height: 9px; margin-top: -4px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); transition: margin 200ms var(--ease-ui), transform 200ms var(--ease-ui); }
  .mobile-menu__service-category-toggle.is-open i { margin-top: 4px; transform: rotate(225deg); }
  .mobile-menu__service-children-inner > ul { padding: .1rem 0 .5rem .85rem !important; margin: 0 0 .15rem .15rem !important; border-left: 1px solid rgba(200,213,184,.2); }
  .mobile-menu__service-children li { border: 0; }
  .mobile-menu__service-children a { display: flex; align-items: center; min-height: 42px; padding: .48rem .55rem; color: rgba(255,255,255,.68); font-size: .82rem; font-weight: 600; letter-spacing: 0; line-height: 1.35; text-decoration: none; transition: color 180ms var(--ease-ui), transform 180ms var(--ease-ui); }
  .mobile-menu__service-children a:hover,
  .mobile-menu__service-children a:focus-visible,
  .mobile-menu__service-children a[aria-current="page"] { color: #fff; transform: translateX(3px); }
  .mobile-menu__footer { display: grid; grid-template-columns: 1fr auto; gap: .8rem 1rem; align-items: center; padding-top: clamp(1.75rem, 5vh, 3rem); margin-top: auto; }
  .mobile-menu__footer p { grid-column: 1 / -1; max-width: 260px; margin: 0 0 .2rem; color: var(--color-sage); font-size: .7rem; font-weight: 750; letter-spacing: .1em; line-height: 1.45; text-transform: uppercase; }
  .mobile-menu__call { display: inline-flex; align-items: center; gap: .65rem; min-height: 52px; color: #fff; font-size: .92rem; font-weight: 750; letter-spacing: .01em; text-decoration: none; }
  .mobile-menu__call svg { width: 21px; height: 21px; fill: currentColor; }
  .mobile-menu__cta { display: inline-flex; align-items: center; justify-content: center; gap: .7rem; min-height: 52px; padding: 0 1rem; border-radius: 12px; background: var(--color-accent); color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; }
  html.has-open-menu,
  html.has-open-menu body { overflow: hidden; }
  .internal-hero { padding-top: clamp(7.25rem, 12vw, 8rem); }
  .internal-hero__grid { grid-template-columns: minmax(0, 1fr); gap: 2rem; min-height: 0; }
  .internal-hero__copy { max-width: 760px; }
  .internal-hero__breadcrumbs { margin-bottom: 1.5rem; }
  .internal-hero__media { width: 100%; max-width: 900px; height: clamp(230px, 31vw, 280px); margin: 0; }
  .internal-hero--text-only .internal-hero__grid { min-height: 205px; }
	.vrtland-services-page .internal-hero { padding-bottom: 1.75rem; }
	.vrtland-services-page .service-editorial-lead { padding-top: 1.75rem; }
	.vrtland-services-page .service-editorial-lead__inner { gap: 1.75rem; }
	.vrtland-services-page .service-editorial-lead__media { order: 1; }
	.vrtland-services-page .service-editorial-lead__media--portrait { justify-self: start; }
	.vrtland-services-page .service-editorial-lead__copy { order: 2; }
	.about-page > .about-story { margin-top: 0; padding-block: 1rem 5rem; }
	.about-story__inner,
	.about-care__inner { grid-template-columns: minmax(0, 1fr); gap: 2.75rem; }
	.about-story__copy,
	.about-care__copy { max-width: 760px; }
	.about-story__media { order: -1; }
	.about-story__media,
	.about-care__media { width: 100%; max-width: 900px; aspect-ratio: 16 / 10; border-radius: 18px; }
	.about-pillars { padding-block: 4.5rem 5rem; }
	.about-pillars__heading { display: block; margin-bottom: 2.75rem; }
	.about-pillars__heading h2 { max-width: 720px; }
	.about-pillars__grid { grid-template-columns: minmax(0, 1fr); }
	.about-pillar,
	.about-pillar + .about-pillar { min-height: 0; padding: 1.35rem 0 1.8rem; border-right: 0; border-bottom: 1px solid rgba(21,60,46,.2); }
	.about-pillar:last-child { border-bottom: 0; }
	.about-pillar__number { margin-bottom: 1.35rem; }
  .photo-estimate__inner { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; align-items: start; }
	.photo-estimate__action { padding: 2rem 0 0; border-top: 1px solid rgba(200,213,184,.3); border-left: 0; }
  .services-intro { padding-block: 4rem 4.5rem; }
  .services-intro__inner { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; }
  .services-intro__copy { max-width: 720px; }
  .services-intro__media { width: 100%; max-width: 900px; aspect-ratio: 16 / 10; }
  .services-directory { padding-block: 4rem 7rem; }
	.service-editorial-lead { padding-block: 4.5rem 5.5rem; }
	.service-editorial-lead__inner { grid-template-columns: minmax(0, 1fr); gap: 3rem; }
	.service-editorial-lead__copy { max-width: 760px; }
  .service-editorial-lead__media { width: 100%; aspect-ratio: 16 / 10; }
  .service-child-directory { padding-block: 4.75rem 7rem; }
  .service-scope { padding-block: 5.5rem; }
  .service-scope__inner { grid-template-columns: minmax(0, 1fr); gap: 3.5rem; }
	.service-scope__heading { position: static; }
	.service-fit__inner { grid-template-columns: minmax(0, 1fr); gap: 3.5rem; }
	.service-process .process-route { min-height: 650px; }
	.service-process .process-route ol { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .living-hero { --stacked-photo-height: clamp(400px, 56vw, 520px); min-height: 0; height: auto; background: #f8f4e9; }
  .living-hero__media { inset: 0 0 auto; width: 100%; height: var(--stacked-photo-height); }
  .living-hero__media img { object-position: 52% center; }
  .living-hero::before { top: 0; bottom: auto; height: var(--stacked-photo-height); background: linear-gradient(0deg, rgba(8,29,21,.12), transparent 52%); }
  .living-hero__paper { display: none; }
  .living-hero__paper-mobile { position: absolute; z-index: 2; top: calc(var(--stacked-photo-height) - 72px); left: 0; display: block; width: 100%; height: 120px; filter: none; pointer-events: none; }
  .living-hero__paper-mobile path { fill: #f8f4e9; }
  .living-hero__content { position: relative; width: 100%; padding: calc(var(--stacked-photo-height) + 1rem) clamp(2rem, 8vw, 5rem) 5rem; margin: 0; text-align: center; }
  .living-hero h1 { max-width: 680px; margin-inline: auto; font-size: clamp(3.2rem, 7vw, 4.8rem); text-align: center; }
  .living-hero .eyebrow { margin-inline: auto; text-align: center; }
  .living-hero__lead { margin-inline: auto; text-align: center; }
  .living-hero .button-row { justify-content: center; }
  .hero-botanicals { top: 0; bottom: 0; width: 100%; height: 100%; pointer-events: none; }
  .hero-botanical--left { top: calc(var(--stacked-photo-height) - 5.5rem); bottom: auto; left: clamp(-2.5rem, -4vw, -1.75rem); width: clamp(190px, 23vw, 230px); height: clamp(540px, 68vw, 640px); }
  .hero-botanical--lower { display: none; }
  .hero-botanical--flower { bottom: -7%; left: auto; right: -70px; width: clamp(190px, 24vw, 230px); height: clamp(360px, 44vw, 430px); }
  .hero-botanicals__trigger { display: none; }
  .service-slices { min-height: 560px; }
  .work-feature { grid-template-columns: 1fr; }
  .work-feature__canvas { min-height: 680px; }
  .work-feature__aside { min-height: 560px; }
  .route-section { min-height: 0; }
  .route-section__heading h2 { font-size: clamp(3.6rem, 9vw, 5.4rem); }
  .process-route { min-height: 650px; }
  .process-route__line { display: none; }
  .process-route ol { grid-template-columns: repeat(2, 1fr); gap: 3.5rem 2rem; padding-top: 1rem; }
  .process-route__marker { margin-bottom: 2.35rem; }
  .lawn-section { grid-template-columns: 1fr; }
  .lawn-section__media { min-height: 600px; }
  .lawn-section__content { min-height: 620px; }
  .faq-section__header { grid-template-columns: 1fr; gap: 1.75rem; }
  .faq-section__header > p { max-width: 560px; }
  .contact-conversion { grid-template-columns: 1fr; padding-top: 10rem; }
  .contact-conversion__brief { margin-left: var(--page-gutter); border-radius: 32% 0 0 0 / 12% 0 0 0; }
  .project-proof__layout { grid-template-columns: 1fr; }
  .project-proof__copy { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2.5rem; align-items: end; }
  .project-proof__copy .eyebrow,
  .project-proof__copy h2 { grid-column: 1 / -1; }
  .project-proof__copy > p:not(.eyebrow) { margin-bottom: 0; }
  .project-proof__copy .text-link { align-self: center; justify-self: start; }
}

@media (max-width: 860px) {
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
	.site-footer__brand { padding: 0 clamp(2rem, 6vw, 4rem) 2.75rem 0; }
	.site-footer__grid > .site-footer__column { padding: 0 0 2.75rem clamp(2rem, 6vw, 4rem); }
	.site-footer__grid > .site-footer__column + .site-footer__column { padding-top: 2.75rem; border-top: 1px solid rgba(255,255,255,.18); border-left: 0; }
	.site-footer__grid > .site-footer__column:nth-child(3) { padding-left: 0; }
	.site-footer__grid > .site-footer__contact { border-left: 1px solid rgba(255,255,255,.18); }
	.site-footer__bottom { grid-template-columns: 1fr auto; }
	.site-footer__legal { grid-column: 1 / -1; grid-row: 1; justify-content: flex-start; }
	.site-footer__credit { justify-self: end; }
	.needs-section { padding-block: 5.5rem 6rem; }
	.needs-section__wave { top: -72px; height: 74px; }
	.needs-selector__tabs { display: none; }
	.needs-selector__mobile-choice { position: relative; z-index: 7; display: block; margin: 2.5rem 0 1.25rem; padding-top: .4rem; }
	.needs-selector__native-choice { display: block; }
	.needs-selector__mobile-label { position: absolute; z-index: 3; top: 0; left: 1rem; padding: 0 .45rem; background: #f8f4e9; color: rgba(24,49,39,.72); font-size: .58rem; font-weight: 800; letter-spacing: .12em; line-height: 1; text-transform: uppercase; }
	.needs-selector__mobile-field { position: relative; display: block; overflow: hidden; border: 2px solid #5b7456; border-radius: 15px; background: rgba(255,253,247,.9); }
	.needs-selector__mobile-field select { position: relative; z-index: 1; width: 100%; min-height: 64px; padding: .85rem 4.25rem .7rem 1.25rem; border: 0; outline: 0; background: transparent; color: var(--color-forest); cursor: pointer; font-family: var(--display); font-size: 1.32rem; font-weight: 500; appearance: none; }
	.needs-selector__mobile-field > svg { position: absolute; z-index: 0; top: 50%; right: .75rem; width: 38px; height: 38px; padding: 8px; border-radius: 50%; background: #5b7456; fill: none; stroke: #f8f4e9; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; pointer-events: none; transform: translateY(-50%); }
	.needs-selector__mobile-field:focus-within { outline: 3px solid rgba(191,99,48,.35); outline-offset: 3px; }
	.needs-selector__custom-choice { position: relative; }
	.needs-selector__menu-trigger { display: flex; width: 100%; min-height: 64px; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem .75rem .7rem 1.25rem; border: 2px solid #5b7456; border-radius: 15px; background: rgba(255,253,247,.92); color: var(--color-forest); cursor: pointer; font-family: var(--display); font-size: 1.32rem; font-weight: 500; line-height: 1.1; text-align: left; transition: border-color 180ms var(--ease-ui), background 180ms var(--ease-ui), box-shadow 180ms var(--ease-ui); }
	.needs-selector__menu-trigger > svg { width: 38px; height: 38px; flex: 0 0 38px; padding: 8px; border-radius: 50%; background: #5b7456; fill: none; stroke: #f8f4e9; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; transition: background 180ms var(--ease-ui), transform 220ms var(--ease-ui); }
	.needs-selector__menu-trigger:hover { background: #fffdf7; }
	.needs-selector__menu-trigger:focus-visible { outline: 3px solid rgba(191,99,48,.35); outline-offset: 3px; }
	.needs-selector__menu-trigger[aria-expanded="true"] { border-color: var(--color-forest); box-shadow: 0 12px 30px rgba(8,29,21,.1); }
	.needs-selector__menu-trigger[aria-expanded="true"] > svg { background: var(--color-forest); transform: rotate(180deg); }
	.needs-selector__menu-panel { position: absolute; z-index: 20; top: calc(100% + .6rem); right: 0; left: 0; max-height: min(360px, calc(100vh - 170px)); padding: .45rem; overflow-y: auto; overscroll-behavior: contain; border: 2px solid #5b7456; border-radius: 17px; background: #fffdf7; box-shadow: 0 20px 48px rgba(8,29,21,.18); animation: needsMenuIn 180ms var(--ease-ui) both; }
	.needs-selector__menu-panel[hidden] { display: none; }
	.needs-selector__menu-option { display: flex; width: 100%; min-height: 54px; align-items: center; justify-content: space-between; gap: 1rem; padding: .75rem .8rem .7rem 1rem; border: 0; border-bottom: 1px solid rgba(53,83,58,.15); border-radius: 0; background: transparent; color: var(--color-forest); cursor: pointer; font-family: var(--display); font-size: 1.08rem; font-weight: 500; line-height: 1.2; text-align: left; transition: background 160ms var(--ease-ui), color 160ms var(--ease-ui); }
	.needs-selector__menu-option:last-child { border-bottom-color: transparent; }
	.needs-selector__menu-option:hover,
	.needs-selector__menu-option:focus-visible { border-radius: 10px; outline: 0; background: rgba(200,213,184,.38); }
	.needs-selector__menu-option > svg { width: 25px; height: 25px; flex: 0 0 25px; padding: 4px; border-radius: 50%; background: transparent; fill: none; stroke: transparent; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; transition: background 160ms var(--ease-ui), stroke 160ms var(--ease-ui); }
	.needs-selector__menu-option.is-selected { border-radius: 10px; background: rgba(200,213,184,.58); }
	.needs-selector__menu-option.is-selected > svg { background: var(--color-forest); stroke: #fffdf7; }
	.needs-showcase { grid-template-columns: 1fr; gap: 0; min-height: 0; padding: .8rem; }
	.needs-showcase__media { min-height: 0; aspect-ratio: 4 / 3; border-radius: 12px; }
	.needs-showcase__content { min-height: 490px; padding: clamp(2.25rem, 8vw, 4rem) clamp(2rem, 7vw, 3rem) 1.5rem; }
	.needs-detail { padding-right: 3rem; }
}

@media (max-width: 680px) {
  body { padding-bottom: 0; }
  .legal-page-header { padding-top: 8.5rem; padding-bottom: 2.65rem; }
  .legal-page-header h1 { font-size: clamp(2.45rem, 12vw, 3.6rem); }
  body.legal-document-page .internal-page__content { padding-bottom: 5rem; }
  body.legal-document-page .cookie-policy-lead { margin-bottom: 2.75rem; }
  body.legal-document-page .cookie-service__header { min-height: 74px; padding: .9rem 2.85rem .9rem .35rem; }
  body.legal-document-page .cookie-service__header > div { grid-template-columns: minmax(0, 1fr); gap: .18rem; }
  body.legal-document-page .cookie-service__header p { text-align: left; }
  body.legal-document-page .cookie-service__body { padding-inline: .35rem; }
  body.legal-document-page .cookie-table-wrap { overflow: visible; }
  body.legal-document-page .cookie-policy-table,
  body.legal-document-page .cookie-policy-table tbody,
  body.legal-document-page .cookie-policy-table tr,
  body.legal-document-page .cookie-policy-table td { display: block; width: 100% !important; }
  body.legal-document-page .cookie-policy-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
  body.legal-document-page .cookie-policy-table tr { padding: .8rem 0; border-bottom: 1px solid rgba(21, 60, 46, .12); }
  body.legal-document-page .cookie-policy-table tbody tr:last-child { border-bottom: 0; }
  body.legal-document-page .cookie-policy-table td {
    display: grid;
    grid-template-columns: 5.25rem minmax(0, 1fr);
    gap: .8rem;
    padding: .28rem 0;
    border: 0;
  }
  body.legal-document-page .cookie-policy-table td::before {
    color: rgba(21, 60, 46, .62);
    content: attr(data-label);
    font-size: .65rem;
    font-weight: 750;
    letter-spacing: .07em;
    text-transform: uppercase;
  }
  .cmplz-cookiebanner { width: calc(100vw - 24px) !important; right: 12px !important; bottom: 12px !important; padding: 1.15rem !important; }
  body.admin-bar .site-header { top: 46px; }
  .mobile-conversion-bar { display: none !important; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer--waved { margin-top: 62px; }
  .site-footer__wave { height: 62px; }
  .site-footer__brand { padding: 0 0 2.5rem; }
  .site-footer__grid > .site-footer__column,
  .site-footer__grid > .site-footer__column + .site-footer__column { grid-column: auto; padding: 0 0 2.5rem; border-top: 0; border-left: 0; }
  .site-footer__grid > .site-footer__column:first-of-type { padding-top: 0; }
  .site-footer__grid > .site-footer__column + .site-footer__column { padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.18); }
  .site-footer__grid > .site-footer__column:last-child { padding-bottom: 0; }
  .site-footer__bottom { display: flex; align-items: flex-start; flex-direction: column; gap: 1rem; }
  .site-footer__legal { justify-content: flex-start; order: -1; }
  .site-footer__credit { align-self: flex-start; text-align: left; }
  .whatsapp-float { right: max(1rem, env(safe-area-inset-right)); bottom: max(1rem, env(safe-area-inset-bottom)); width: 56px; height: 56px; }
  .whatsapp-float svg { width: 31px; height: 31px; }
  .internal-hero { padding: 7rem 1.25rem 2.75rem; }
	.vrtland-services-page .internal-hero { padding-bottom: 1.5rem; }
  .internal-hero__grid { gap: 1.6rem; }
  .internal-hero__breadcrumbs { margin-bottom: 1.15rem; }
  .internal-hero__breadcrumbs li { font-size: .82rem; }
  .internal-hero h1 { font-size: clamp(2.75rem, 13vw, 3.65rem); line-height: .92; }
  .internal-hero__rule { width: 72px; margin: 1.1rem 0; }
  .internal-hero__copy > p { font-size: .98rem; line-height: 1.58; }
  .internal-hero__media { height: 210px; border-radius: 16px; }
  .internal-hero--text-only .internal-hero__grid { min-height: 190px; }
	.error-page { min-height: 100svh; padding: 8.5rem 1.25rem 5rem; }
	.error-page .error-page__code { margin-bottom: 1.55rem !important; font-size: clamp(8rem, 39vw, 10.5rem); }
	.error-page h1 { max-width: 350px; font-size: clamp(2.65rem, 12.8vw, 3.35rem); line-height: .94; }
	.error-page h1::before { width: 64px; margin-bottom: 1.15rem; }
	.error-page .error-page__message { max-width: 320px; margin-top: 1.4rem !important; font-size: .95rem; line-height: 1.6; }
	.error-page .error-page__actions { width: min(100%, 300px); margin-top: 1.8rem !important; }
	.error-page .wp-block-button { width: 100%; }
	.error-page .wp-element-button { width: 100%; min-height: 56px; padding-inline: 1rem; }
	.about-page > .about-story { margin-top: 0; padding-block: .75rem 4.25rem; }
	.about-story h2,
	.about-pillars__heading h2,
	.about-care h2 { font-size: clamp(2rem, 8vw, 2.35rem); line-height: 1.02; }
	.about-story__rule { margin: 1.25rem 0; }
	.about-story__copy > p:not(.eyebrow),
	.about-care__copy > p:not(.eyebrow) { font-size: .96rem; line-height: 1.65; }
	.about-story__media,
	.about-care__media { aspect-ratio: 4 / 3; border-radius: 16px; }
	.about-pillars { padding-block: 3.75rem 4.5rem; }
	.about-pillar h3 { font-size: 1.55rem; }
	.about-pillar p { font-size: .92rem; }
	.about-care { padding-block: 4.25rem 5rem; }
	.about-care__copy > p:not(.eyebrow) { margin: 1.35rem 0 1.8rem; }
	.about-care .button { width: 100%; min-height: 56px; padding-inline: 1rem; }
	.photo-estimate { padding-block: 4rem 5.75rem; }
	.photo-estimate__inner { gap: 2.1rem; }
	.photo-estimate h2 { max-width: 340px; font-size: clamp(2.65rem, 12vw, 3.25rem); line-height: .96; }
	.photo-estimate__copy > p:last-child { margin-top: 1.35rem; font-size: .94rem; line-height: 1.65; }
	.photo-estimate__action { gap: .9rem; padding-top: 1.75rem; }
	.photo-estimate__button { width: 100%; min-width: 0; min-height: 56px; padding-inline: 1rem; font-size: .68rem; }
	.photo-estimate__action > p { max-width: 290px; font-size: .7rem; }
  .services-intro { padding-block: 3.5rem 4rem; }
  .services-intro h2 { font-size: clamp(1.9rem, 8vw, 2.2rem); }
  .services-intro__copy > p:not(.eyebrow) { margin-top: 1.45rem; font-size: .96rem; line-height: 1.65; }
  .services-intro__points { gap: .7rem; margin-top: 1.75rem; }
  .services-intro__points li { padding-left: 2.35rem; font-size: .94rem; }
  .services-intro__media { aspect-ratio: 4 / 3; border-radius: 16px; }
  .services-directory { padding-block: 3.75rem 5.5rem; scroll-margin-top: 86px; }
  .services-directory__heading { margin-bottom: 2.35rem; }
  .services-directory__heading h2 { font-size: clamp(1.85rem, 8vw, 2.1rem); }
  .services-directory__heading > p:last-child { font-size: .95rem; }
  .services-directory__grid { grid-template-columns: minmax(0, 1fr); gap: 1.15rem; }
  .service-category-card.reveal { transition-delay: 0ms; }
  .service-category-card { border-radius: 14px; }
  .service-category-card:hover { transform: none; }
  .service-category-card__media { aspect-ratio: 16 / 10; margin: .65rem .65rem 0; border-radius: 10px; }
  .service-category-card__body { padding: 1rem 1.1rem 1.15rem; }
  .service-category-card__title { grid-template-columns: 58px minmax(0, 1fr); gap: .85rem; min-height: 74px; margin-bottom: .7rem; }
  .service-category-card__icon { width: 54px; height: 54px; }
  .service-category-card__icon svg { width: 28px; height: 28px; }
  .service-category-card__title strong { font-size: clamp(1.35rem, 6.4vw, 1.6rem); line-height: 1.08; }
  .service-category-card__links a { min-height: 51px; padding-block: .72rem; font-size: .9rem; }
  .service-editorial-lead { padding-block: 3.75rem 4.5rem; }
	.vrtland-services-page .service-editorial-lead { padding-top: 1.5rem; }
	.vrtland-services-page .service-editorial-lead__inner { gap: 1.5rem; }
	.vrtland-services-page .service-editorial-lead__media { order: 1; }
	.vrtland-services-page .service-editorial-lead__copy { order: 2; }
  .service-editorial-lead--has-explainer { padding-bottom: 0; }
  .service-editorial-lead__inner { gap: 2.5rem; }
  .service-editorial-lead h2 { font-size: clamp(1.9rem, 8vw, 2.2rem); line-height: 1.04; }
  .service-editorial-lead__rule { width: 72px; margin: 1.45rem 0; }
  .service-editorial-lead__text { gap: 1.05rem; }
  .service-editorial-lead__text p { font-size: .95rem; line-height: 1.65; }
  .service-editorial-lead__points { gap: .7rem; margin-top: 1.65rem; }
  .service-editorial-lead__points li { padding-left: 2.35rem; font-size: .92rem; }
  .service-editorial-lead__media { aspect-ratio: 4 / 3; border-radius: 16px; }
  .service-explainer { padding-block: 3.75rem; }
  .service-explainer__mark { width: 52px; margin-bottom: 1.1rem; font-size: 1.3rem; }
  .service-explainer .eyebrow { margin-bottom: .8rem; }
  .service-explainer h2 { font-size: clamp(2.35rem, 10vw, 3rem); }
  .service-explainer__rule { width: 72px; margin: 1.45rem auto 1.2rem; }
  .service-explainer__lead { margin-top: 0; font-size: .98rem; line-height: 1.65; }
  .service-explainer__body { margin-top: .85rem; font-size: .92rem; line-height: 1.7; }
  .service-child-directory { padding-block: 3.75rem 5.5rem; }
  .service-child-directory__heading { margin-bottom: 2.35rem; }
  .service-child-directory__heading h2 { font-size: clamp(1.85rem, 8vw, 2.1rem); }
  .service-child-directory__heading > p:last-child { font-size: .95rem; }
  .service-child-directory__grid { grid-template-columns: minmax(0, 1fr); gap: 1.1rem; }
  .service-child-card { border-radius: 14px; }
  .service-child-card:hover { transform: none; }
  .service-child-card.reveal { transition-delay: 0ms; }
  .service-child-card__media { aspect-ratio: 16 / 10; margin: .65rem .65rem 0; border-radius: 10px; }
  .service-child-card__body { padding: 1rem 1.1rem 1.2rem; }
  .service-child-card__heading { grid-template-columns: 56px minmax(0, 1fr); gap: .8rem; min-height: 68px; }
  .service-child-card__icon { width: 52px; height: 52px; }
	.service-child-card__title { font-size: 1.18rem; }
	.service-child-card__copy { min-height: 0; margin: .75rem 0 1rem; font-size: .88rem; }
  .service-scope { padding-block: 4.5rem; }
	.service-scope__inner { gap: 2.5rem; }
	.service-scope__heading h2 { font-size: clamp(2.55rem, 11.5vw, 3.3rem); }
	.service-scope__list li { min-height: 0; padding: 1.1rem .25rem 1.1rem 2.25rem; font-size: .92rem; }
	.service-scope__list li > span { left: .25rem; }
	.service-practical-note { grid-template-columns: 56px minmax(0, 1fr); gap: 1rem; margin-top: 2rem; padding: 1.35rem; border-radius: 0 0 14px 14px; }
  .service-practical-note__icon { width: 52px; height: 52px; }
	.service-practical-note__icon svg { width: 26px; height: 26px; }
  .service-practical-note h3 { font-size: 1.22rem; }
  .service-practical-note div > p:last-child { font-size: .88rem; }
  .service-fit { padding-block: 4.5rem; }
  .service-fit__heading { margin-bottom: 2.5rem; }
  .service-fit__heading .eyebrow { margin-bottom: .7rem; }
  .service-fit__heading h2 { font-size: clamp(2.45rem, 10.8vw, 3.15rem); }
  .service-fit__list { grid-template-columns: minmax(0, 1fr); gap: 1rem; }
	.service-situation { min-height: 0; padding: 1.5rem; border-radius: 16px; }
  .service-situation.reveal { transition-delay: 0ms; }
  .service-situation:hover { transform: none; }
	.service-situation::before { margin-bottom: 1.15rem; }
	.service-situation h3 { font-size: 1.28rem; }
  .service-situation p { margin-top: .65rem; font-size: .9rem; }
	.service-process .process-route { min-height: 0; }
	.service-process .process-route ol { grid-template-columns: minmax(0, 1fr); }
	.service-process .process-route li > p { grid-column: 3; max-width: none; margin: .45rem 0 0; font-size: .86rem; }
  .living-hero { --stacked-photo-height: clamp(320px, 88vw, 390px); }
  .living-hero__media img { object-position: 52% center; }
  .living-hero h1 { max-width: 100%; margin-inline: auto; font-size: clamp(1.9rem, 8.2vw, 2.15rem); line-height: .98; text-align: center; }
  .living-hero__title-line--second { white-space: nowrap; }
  .living-hero__content { width: 100%; padding: calc(var(--stacked-photo-height) - .35rem) 1.25rem 4.5rem; margin: 0; text-align: center; }
  .living-hero .eyebrow { max-width: 100%; margin: 0 auto .85rem; text-align: center; font-size: .72rem; line-height: 1.35; }
  .living-hero__lead { max-width: 88%; margin: 1rem auto 1.4rem; text-align: center; font-size: .93rem; }
  .living-hero .button-row { display: grid; justify-content: stretch; gap: .75rem; width: min(calc(100% - 1rem), 296px); margin-inline: auto; }
  .living-hero .button { width: 100%; min-height: 56px; padding-inline: 1rem; font-size: .68rem; }
  .hero-botanical--left { top: calc(var(--stacked-photo-height) - 5.2rem); left: -68px; width: clamp(180px, 30vw, 205px); height: clamp(520px, 82vw, 590px); }
  .hero-botanical--flower { bottom: -7%; left: auto; right: -84px; width: clamp(176px, 40vw, 220px); height: clamp(290px, 62vw, 360px); max-height: none; }
	.needs-section { padding-block: 3rem 4rem; }
	.needs-selector__heading h2 { font-size: clamp(2.7rem, 12vw, 3.8rem); }
	.needs-selector__mobile-choice { margin: 2.1rem 0 1rem; }
	.needs-showcase { padding: .55rem; border-width: 2px; border-radius: 16px; }
	.needs-showcase__media { aspect-ratio: 4 / 3; border-radius: 11px; }
	.needs-showcase__content { display: grid; grid-template-rows: minmax(0, 1fr) auto; align-items: start; min-height: 490px; padding: 1.65rem 1rem 1rem; }
	.needs-detail { width: 100%; padding-right: 0; }
	.needs-detail h3 { font-size: clamp(2.3rem, 11vw, 3.15rem); }
	.needs-detail > p { min-height: 6.2em; margin-top: 1rem; font-size: .95rem; line-height: 1.55; }
	.needs-detail__note { grid-template-columns: 60px minmax(0, 1fr); gap: .85rem; min-height: 112px; margin-top: 1.25rem; padding: .85rem 0; border-top: 1px solid rgba(53,83,58,.2); border-bottom: 1px solid rgba(53,83,58,.2); }
	.needs-detail__botanical { width: 58px; height: 80px; }
	.needs-detail__note strong { font-size: .58rem; }
	.needs-detail__note p { font-size: .78rem; line-height: 1.4; }
	.needs-showcase__actions { display: grid; grid-template-columns: 48px minmax(0, 1fr) 48px; gap: .5rem; align-items: center; width: 100%; margin-top: 1.25rem; }
	.needs-showcase__arrow { position: static; width: 48px; height: 56px; border: 1px solid rgba(53,83,58,.5); border-radius: 999px; background: rgba(200,213,184,.2); transform: none; }
	.needs-showcase__arrow:hover:not(:disabled),
	.needs-showcase__arrow:focus-visible:not(:disabled) { transform: none; }
	.needs-showcase__arrow svg { width: 14px; height: 28px; }
	.needs-showcase__cta { width: 100%; min-width: 0; height: 56px; padding-inline: .7rem; margin: 0; gap: .75rem; font-size: .68rem; }
	.needs-showcase__cta [data-needs-cta-label] { flex-shrink: 0; white-space: nowrap; }
  .project-proof { padding-block: 5.5rem; }
  .project-proof__copy { display: block; }
  .project-proof__copy h2 { font-size: clamp(2.45rem, 10.8vw, 3.3rem); }
  .project-proof__copy > p:not(.eyebrow) { margin: 1.5rem 0 2rem; }
  .comparison { aspect-ratio: 4 / 3; border-radius: 16px; }
  .comparison__image { object-position: center; }
  .comparison__label { top: .75rem; padding: .5rem .7rem; font-size: .6rem; }
  .comparison__label--before { left: .75rem; }
  .comparison__label--after { right: .75rem; }
  .comparison__handle { width: 46px; height: 46px; }
  .service-system { min-height: 0; padding-block: 5.5rem; }
  .service-system__heading { align-items: flex-start; flex-direction: column; }
  .service-system__heading h2 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .service-slices { display: grid; width: 100%; min-height: 0; margin: 2.5rem 0 0; }
  .service-slice, .service-slice.is-featured, .service-slices:hover .service-slice, .service-slices .service-slice:hover { min-height: 420px; flex: none; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.28); }
  .service-slice small { max-height: 90px; margin-top: 1rem; opacity: .86; }
  .service-system__more { margin: 2rem 1.25rem 0; }
  .work-feature__canvas { min-height: 610px; }
  .work-feature__detail { border-width: 5px; }
  .work-feature__detail--one { top: 12%; right: 5%; width: 48%; }
  .work-feature__detail--two { right: 9%; bottom: 7%; width: 40%; }
  .work-feature__aside { min-height: 520px; padding: 4rem 1.25rem; }
  .route-section { min-height: 0; padding-block: 5rem; }
  .route-section__heading { text-align: center; }
  .route-section__heading h2 { max-width: 360px; font-size: clamp(3rem, 14vw, 4.2rem); }
  .process-route { min-height: 0; margin-top: 3rem; }
  .process-route ol { grid-template-columns: 1fr; gap: 0; padding: 0; }
  .process-route li { display: grid; grid-template-columns: 28px 92px minmax(0, 1fr); gap: 1rem; align-items: center; min-height: 132px; padding: 1rem 0; border-bottom: 1px solid rgba(21,60,46,.14); text-align: left; }
  .process-route__marker { grid-column: 1; width: 16px; height: 16px; margin: 0 auto; border-width: 3px; }
  .process-route__marker::after { top: 14px; height: 118px; }
  .process-route li:last-child .process-route__marker::after { display: none; }
  .process-route__image { grid-column: 2; width: 92px; margin: 0; }
  .process-route h3 { grid-column: 3; font-size: .72rem; }
  .route-section__cta { margin-top: 2rem; }
  .reviews-section { padding-block: 3.5rem; }
  .reviews-section__heading { gap: 1rem; }
  .reviews-section__heading h2 { font-size: clamp(2.8rem, 12vw, 3.65rem); }
  .reviews-section__icon { width: 52px; }
  .reviews-list { grid-template-columns: 1fr; grid-auto-rows: 1fr; margin-top: 2.5rem; }
  .review-entry { min-height: 260px; padding: 1.35rem; }
  .review-entry__quote { font-size: 4rem; }
  .review-entry blockquote { margin: .8rem 0 1.5rem; }
  .review-entry blockquote p { font-size: 1rem; line-height: 1.55; }
  .lawn-section__media { min-height: 480px; }
  .lawn-section__content { min-height: 590px; padding: 4rem 1.25rem; }
  .faq-section__inner { padding-block: 4.75rem 8.5rem; }
  .faq-section__header { margin-bottom: 2.7rem; }
  .faq-section__header h2 { font-size: clamp(2.65rem, 12vw, 3.35rem); }
  .faq-item.is-open { border-radius: 14px; }
  .faq-item__trigger { min-height: 76px; padding: 1.25rem 3.35rem 1.25rem 1.1rem; font-size: clamp(1.22rem, 6.2vw, 1.55rem); line-height: 1.22; }
  .faq-item.is-open .faq-item__trigger { padding-top: 1.35rem; padding-bottom: .85rem; }
  .faq-item__trigger::before,
  .faq-item__trigger::after { right: 1.1rem; width: 23px; }
  .faq-list__answer p { padding: 0 1.1rem 1.5rem; font-size: .95rem; }
  .faq-section__contact { margin-top: 1.2rem; line-height: 1.45; }
  .faq-section__wave { height: 62px; }
  .contact-conversion { min-height: 920px; padding-top: 15rem; background-position: 58% center; }
  .contact-conversion__copy { padding: 3rem 1.25rem; }
  .contact-conversion__copy h2 { font-size: clamp(3.4rem, 16vw, 5.2rem); }
  .contact-conversion__brief { margin-left: 1.25rem; padding: 4rem 1.25rem; border-radius: 30% 0 0 0 / 9% 0 0 0; }
  .contact-conversion__brief .button { width: 100%; }
  .contact-conversion__brief .text-link { margin: 1rem 0 0; }
}

/*
 * The flower asset is intentionally airy and its visible pixels do not fill its
 * box. These narrow steps were tuned against the rendered alpha bounds so the
 * flower remains clearly visible without drifting into the hero copy.
 */
@media (min-width: 901px) and (max-width: 980px) {
  .hero-botanical--flower { right: -70px; }
}

@media (min-width: 831px) and (max-width: 900px) {
  .hero-botanical--flower { right: -64px; }
}

@media (min-width: 769px) and (max-width: 830px) {
  .hero-botanical--flower { right: -60px; }
}

@media (min-width: 721px) and (max-width: 768px) {
  .hero-botanical--flower { right: -58px; }
}

@media (min-width: 681px) and (max-width: 720px) {
  .hero-botanical--flower { right: -55px; }
}

@media (min-width: 621px) and (max-width: 680px) {
  .hero-botanical--flower { right: -84px; bottom: -9%; }
}

@media (min-width: 581px) and (max-width: 620px) {
  .hero-botanical--flower { right: -80px; bottom: -8%; }
}

@media (min-width: 541px) and (max-width: 580px) {
  .hero-botanical--flower { right: -82px; }
}

@media (min-width: 501px) and (max-width: 540px) {
  .hero-botanical--flower { right: -86px; }
}

@media (min-width: 461px) and (max-width: 500px) {
  .hero-botanical--flower { right: -82px; }
}

@media (min-width: 421px) and (max-width: 460px) {
  .hero-botanical--flower { right: -80px; }
}

@media (min-width: 381px) and (max-width: 420px) {
  .hero-botanical--flower { right: -82px; }
}

@media (min-width: 361px) and (max-width: 380px) {
  .hero-botanical--flower { right: -78px; }
}

@media (max-width: 360px) {
  .hero-botanical--flower { right: -76px; }
}

@keyframes needsMenuIn {
	from { opacity: 0; transform: translateY(-6px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 360px) {
  .living-hero h1 { font-size: clamp(1.82rem, 9.5vw, 2rem); }
}

@media (max-width: 350px) {
  .mobile-menu__footer { grid-template-columns: 1fr; }
  .mobile-menu__footer p { grid-column: 1; }
  .mobile-menu__cta { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  .site-navigation__services-menu,
  .site-navigation__services-toggle i,
  .site-navigation__services-categories,
  .site-navigation__services-category-link,
  .site-navigation__services-category-link span:last-child,
  .site-navigation__services-panels,
  .site-navigation__services-panel,
  .site-navigation__services-panel > ul a,
  .site-navigation__services-panel > ul a span:last-child,
  .nav-toggle__icon i,
  .mobile-menu,
  .mobile-menu__surface,
  .mobile-menu__nav a::after,
  .mobile-menu__services-toggle,
  .mobile-menu__services-toggle i::before,
  .mobile-menu__services-toggle i::after,
  .mobile-menu__service-category-toggle,
  .mobile-menu__service-category-toggle i,
  .mobile-menu__submenu,
  .mobile-menu__service-children,
  .mobile-menu__service-children a { transition: none; }
  .process-route.has-entry-animation { --route-progress: 1 !important; }
  .process-route__progress { stroke-dashoffset: 0; transition: none; }
  .hero-botanicals { transform: none; transition: none; }
  .hero-botanicals.is-growing .hero-botanical,
  .hero-botanical img { animation: none; clip-path: none; opacity: 1; }
  [data-parallax] { transform: none !important; }
  .irrigation-arc { animation: none; opacity: 1; }
	.needs-showcase__image { transition: none; }
	.needs-detail.is-active { animation: none; }
	.needs-selector__menu-panel { animation: none; }
  .process-route.has-entry-animation .process-route__image,
	.process-route.has-entry-animation h3,
	.service-process .process-route.has-entry-animation li > p { opacity: 1; transform: none; transition: none; }
  .process-route li,
  .process-route__marker::before,
  .process-route__marker::after { transition: none; }
  .review-entry { transition-delay: 0ms; }
  .review-entry__quote { transition: none; }
  .faq-item,
  .faq-item__trigger,
  .faq-item__trigger::before,
  .faq-item__trigger::after,
  .faq-list__answer { transition: none; }
  body.legal-document-page .cookie-service::details-content,
  body.legal-document-page .cookie-service__header,
  body.legal-document-page .cookie-service__header::after { transition: none; }
  .cmplz-cookiebanner { animation: none !important; transition: none !important; }
  .whatsapp-float { animation: none; }
}

/* Homepage labels use the shared eyebrow treatment with the homepage accent. */
.home-page .eyebrow {
  color: var(--color-accent);
}

/* Services use one calm surface transition and one consistent heading system. */
body.vrtland-services-page {
  --service-intro-surface: #f8f4e9;
  --service-intro-title-size: clamp(2.55rem, 3.35vw, 3.9rem);
  --service-section-title-size: clamp(2.85rem, 4.2vw, 4.35rem);
}

body.vrtland-services-page .services-intro,
body.vrtland-services-page .service-editorial-lead {
  background: var(--service-intro-surface);
}

body.vrtland-services-page :is(.services-intro, .service-editorial-lead, .service-explainer) h2 {
  font-size: var(--service-intro-title-size);
  line-height: 1.02;
  text-wrap: balance;
}

body.vrtland-services-page :is(
  .services-directory__heading,
  .service-child-directory__heading,
  .service-scope__heading,
  .service-fit__heading,
  .service-process .route-section__heading,
  .service-faq .faq-section__header
) h2 {
  font-family: var(--display);
  font-size: var(--service-section-title-size);
  font-weight: 500;
  letter-spacing: -.032em;
  line-height: .98;
  text-wrap: balance;
  white-space: normal;
}

@media (max-width: 680px) {
  body.vrtland-services-page {
    --service-intro-title-size: clamp(2.08rem, 8.6vw, 2.4rem);
    --service-section-title-size: clamp(2.35rem, 10vw, 3rem);
  }
}
