/* Clone overrides — fixes for JS-applied behaviors that differ on clone */

/* === Static hero (RevSlider replaced at extraction time) === */
#foran-hero { position:relative; width:100%; height:525px; overflow:hidden; background:#1a1a1a; }
.fh-slide { position:absolute; inset:0; opacity:0; transition:opacity 1s ease; }
.fh-slide.fh-active { opacity:1; }
.fh-slide img { width:100%; height:100%; object-fit:cover; object-position:center top; display:block; }
.fh-gradient { position:absolute; left:0; top:0; width:786px; height:100%; background:linear-gradient(90deg,rgba(10,10,10,.8) 0%,rgba(12,12,12,.8) 1%,rgba(215,215,215,0) 100%); }
.fh-overlay { position:absolute; left:315px; top:89px; width:434px; }
.fh-overlay h1 { font-size:38px !important; line-height:43px !important; font-weight:700 !important; color:#fff !important; margin:0 0 12px !important; }
.fh-line { width:450px; height:4px; background:#fff; margin:0 0 14px; }
.fh-overlay p { font-family:Roboto,sans-serif; font-size:15px; line-height:22px; color:#fff; margin:0; width:409px; }
/* NALP badge — static overlay, bottom-right, all slides */
.fh-nalp { position:absolute; right:16px; bottom:16px; z-index:30; width:300px; }
.fh-nalp img { width:100%; height:auto; display:block; }
@media(max-width:778px) {
  #foran-hero {
    height:auto;
    min-height:500px;
    display:flex;
    flex-direction:column;
  }
  .fh-gradient { width:100%; }
  .fh-overlay {
    position:relative;
    left:auto;
    top:auto;
    width:auto;
    margin:60px 20px 0;
  }
  .fh-line { width:100%; }
  .fh-overlay p {
    width:100%;
    margin:0 !important;
  }
  .fh-nalp {
    position:relative;
    right:auto;
    bottom:auto;
    width:min(300px, calc(100% - 40px));
    margin:30px 16px 16px auto;
  }
}

/* BeTheme/WordPress animation fallback.
   The live site reveals some headings/images with BeTheme scroll animation JS. In this static
   staging clone those source theme scripts are intentionally stripped, so animation-gated
   content must render in its final visible state instead of staying opacity:0/hidden. */
.animate[data-anim-type],
[data-anim-type],
[data-anim],
.mfn-animate,
.mfn-invisible,
.mcb-section [style*="opacity: 0"],
.mcb-section [style*="opacity:0"] {
  opacity: 1 !important;
  visibility: visible !important;
}

.animate[data-anim-type],
[data-anim-type],
[data-anim],
.mfn-animate,
.mfn-invisible {
  transform: none !important;
  animation: none !important;
}

/* Keep intentionally hidden non-content/plugin metadata hidden. */
.otto-nlp-module,
#wpadminbar {
  display: none !important;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.screen-reader-text:focus {
  position: fixed !important;
  z-index: 100000 !important;
  top: 12px !important;
  left: 12px !important;
  width: auto !important;
  height: auto !important;
  padding: 12px 16px !important;
  margin: 0 !important;
  clip: auto !important;
  overflow: visible !important;
  background: #ffffff !important;
  color: #21170f !important;
}

/* Restore BeTheme gallery rounding on the About-page image grid. The live site clips
   these through the `.image_frame`; preview lost that page-local radius rule. */
.mcb-section .mcb-wrap .mcb-item-uqjcqet .gallery .image_frame,
.mcb-section .mcb-wrap .mcb-item-uqjcqet .gallery .image_wrapper,
.mcb-section .mcb-wrap .mcb-item-uqjcqet .gallery .gallery-item-wrapper,
.mcb-section .mcb-wrap .mcb-item-uqjcqet .gallery img {
  border-radius: 10px !important;
  overflow: hidden !important;
}

/* Static fallback for BeTheme dropdown menus. Source JS/theme CSS normally manages
   submenu visibility; the static preview keeps the nested markup but can leave it inert. */
#Top_bar .menu > li,
#menu .menu > li,
.menu_wrapper .menu > li,
.menu_wrapper .menu li.menu-item-has-children {
  position: relative !important;
}

#Top_bar .menu li ul.sub-menu,
#menu .menu li ul.sub-menu,
.menu_wrapper .menu li ul.sub-menu {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  z-index: 9999 !important;
  min-width: 240px !important;
  margin: 0 !important;
  padding: 8px 0 !important;
  list-style: none !important;
  background: #ffffff !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.14) !important;
}

#Top_bar .menu li:hover > ul.sub-menu,
#Top_bar .menu li:focus-within > ul.sub-menu,
#Top_bar .menu li.clone-submenu-open > ul.sub-menu,
#menu .menu li:hover > ul.sub-menu,
#menu .menu li:focus-within > ul.sub-menu,
#menu .menu li.clone-submenu-open > ul.sub-menu,
.menu_wrapper .menu li:hover > ul.sub-menu,
.menu_wrapper .menu li:focus-within > ul.sub-menu,
.menu_wrapper .menu li.clone-submenu-open > ul.sub-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#Top_bar .menu > li > ul.sub-menu,
#menu .menu > li > ul.sub-menu,
.menu_wrapper .menu > li > ul.sub-menu {
  top: 100% !important;
  left: 0 !important;
}

#Top_bar .menu ul.sub-menu ul.sub-menu,
#menu .menu ul.sub-menu ul.sub-menu,
.menu_wrapper .menu ul.sub-menu ul.sub-menu {
  top: -8px !important;
  left: 100% !important;
}

#Top_bar .menu ul.sub-menu li,
#menu .menu ul.sub-menu li,
.menu_wrapper .menu ul.sub-menu li {
  display: block !important;
  float: none !important;
  width: 100% !important;
  white-space: nowrap !important;
}

#Top_bar .menu ul.sub-menu li a,
#menu .menu ul.sub-menu li a,
.menu_wrapper .menu ul.sub-menu li a {
  display: block !important;
  padding: 10px 18px !important;
  line-height: 1.3 !important;
  color: #5b4a2f !important;
  background: transparent !important;
}

#Top_bar .menu ul.sub-menu li a:hover,
#menu .menu ul.sub-menu li a:hover,
.menu_wrapper .menu ul.sub-menu li a:hover {
  background: #fffef0 !important;
  color: #ac6f1b !important;
}

/* WordPress theme normally constrains contact-page images on mobile; keep clone from widening viewport. */
@media (max-width: 640px) {
  img.scale-with-grid,
  .image_frame img.scale-with-grid {
    max-width: 100% !important;
    height: auto !important;
  }

  #Top_bar .menu li ul.sub-menu,
  #menu .menu li ul.sub-menu,
  .menu_wrapper .menu li ul.sub-menu {
    position: static !important;
    min-width: 0 !important;
    box-shadow: none !important;
  }
}


/* Default testimonial treatment for non-service pages. */
.mcb-section-tekton-testimonials-heading,
.mcb-section-tekton-trustindex-reviews {
  background: #ffffff !important;
}

.mcb-section-tekton-testimonials-heading {
  padding-top: 46px !important;
  padding-bottom: 8px !important;
}

.mcb-section-tekton-testimonials-heading h3,
.mcb-section-tekton-testimonials-heading .title {
  color: #532f17 !important;
}

.mcb-section-tekton-trustindex-reviews {
  padding-bottom: 58px !important;
}

.tekton-trustindex-frame {
  background: #ffffff;
}

/* Service pages use Foran's dark brown band with a white testimonial title.
   The embedded Trustindex cards remain white for readability. */
body.tekton-service-page .mcb-section-tekton-testimonials-heading,
body.tekton-service-page .mcb-section-tekton-trustindex-reviews,
body.tekton-service-page .tekton-contextual-links {
  background: #21170f !important;
}

/* Match the homepage contextual-links band to the cloned footer surface exactly. */
body.tekton-homepage .tekton-contextual-links {
  background: #241b15 !important;
}

body.tekton-service-page .tekton-trustindex-frame {
  background: #21170f;
}

/* Preserve cloned typography when semantic heading levels are normalized. */
.tekton-preserve-h2 {
  color: #532f17;
  font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 34px;
  line-height: 44px;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 15px;
}

.tekton-preserve-h3 {
  color: #532f17;
  font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 15px;
}

.tekton-preserve-h4 {
  color: #532f17;
  font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 22px;
  line-height: 29px;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 15px;
}

.tekton-preserve-h5 {
  color: #532f17;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  letter-spacing: 3px;
  margin-top: 0;
  margin-bottom: 15px;
}

.mfn-footer .tekton-preserve-h2,
.mfn-footer .tekton-preserve-h3,
.mfn-footer .tekton-preserve-h4,
.mfn-footer .tekton-preserve-h5 {
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
  .tekton-preserve-h2 { font-size: 29px; line-height: 37px; }
  .tekton-preserve-h3 { font-size: 24px; line-height: 29px; }
  .tekton-preserve-h4 { font-size: 19px; line-height: 25px; }
  .tekton-preserve-h5 { font-size: 14px; line-height: 19px; letter-spacing: 3px; }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .tekton-preserve-h2 { font-size: 26px; line-height: 33px; }
  .tekton-preserve-h3 { font-size: 21px; line-height: 26px; }
  .tekton-preserve-h4 { font-size: 17px; line-height: 22px; }
  .tekton-preserve-h5 { font-size: 13px; line-height: 19px; letter-spacing: 2px; }
}

@media only screen and (max-width: 479px) {
  .tekton-preserve-h2 { font-size: 20px; line-height: 26px; }
  .tekton-preserve-h3 { font-size: 17px; line-height: 20px; }
  .tekton-preserve-h4 { font-size: 13px; line-height: 19px; }
  .tekton-preserve-h5 { font-size: 13px; line-height: 19px; letter-spacing: 2px; }
}

/* Service-area page consistency. Heading tags control typography here, regardless of
   legacy preserve classes or inline BeTheme sizes carried over from WordPress. */
body.tekton-service-area-page .tekton-seo-page h1 {
  font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 42px !important;
  line-height: 52px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

body.tekton-service-area-page .tekton-seo-page h2 {
  font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 28px !important;
  line-height: 34px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

body.tekton-service-area-page .tekton-seo-page h3 {
  font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 22px !important;
  line-height: 29px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

body.tekton-service-area-page .tekton-seo-page h4 {
  font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 18px !important;
  line-height: 25px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

body.tekton-service-area-page .tekton-seo-page h5 {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 16px !important;
  line-height: 22px !important;
  font-weight: 500 !important;
}

@media only screen and (max-width: 767px) {
  body.tekton-service-area-page .tekton-seo-page h1 {
    font-size: 30px !important;
    line-height: 38px !important;
  }

  body.tekton-service-area-page .tekton-seo-page h2 {
    font-size: 22px !important;
    line-height: 29px !important;
  }

  body.tekton-service-area-page .tekton-seo-page h3 {
    font-size: 18px !important;
    line-height: 25px !important;
  }

  body.tekton-service-area-page .tekton-seo-page h4 {
    font-size: 17px !important;
    line-height: 24px !important;
  }

  body.tekton-service-area-page .tekton-seo-page .tekton-service-area-intro > .section_wrapper {
    display: flex !important;
    flex-direction: column !important;
  }

  body.tekton-service-area-page .tekton-seo-page .tekton-service-area-intro > .section_wrapper > .mcb-wrap:nth-child(1) {
    order: 2;
  }

  body.tekton-service-area-page .tekton-seo-page .tekton-service-area-intro > .section_wrapper > .mcb-wrap:nth-child(2) {
    order: 1;
  }

  body.tekton-service-area-page .tekton-seo-page .gallery.gallery-columns-5 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  body.tekton-service-area-page .tekton-seo-page .gallery.gallery-columns-5 .gallery-item {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
  }

  body.tekton-service-area-page .tekton-seo-page .gallery.gallery-columns-5 .gallery-item:last-of-type:nth-child(odd) {
    grid-column: 1 / -1;
  }

  body.tekton-service-area-page .tekton-seo-page .gallery.gallery-columns-5 > br {
    display: none !important;
  }
}

body.tekton-service-page .mcb-section-tekton-testimonials-heading h3,
body.tekton-service-page .mcb-section-tekton-testimonials-heading .tekton-preserve-h3,
body.tekton-service-page .mcb-section-tekton-testimonials-heading .title,
body.tekton-service-page .tekton-contextual-links h2,
body.tekton-service-page .tekton-contextual-links p,
body.tekton-service-page .tekton-contextual-links a,
body.tekton-service-page .tekton-contextual-links a:visited,
body.tekton-service-page .tekton-contextual-links a:hover,
body.tekton-service-page .tekton-contextual-links a:focus,
body.tekton-homepage .tekton-contextual-links h2,
body.tekton-homepage .tekton-contextual-links p,
body.tekton-homepage .tekton-contextual-links a,
body.tekton-homepage .tekton-contextual-links a:visited,
body.tekton-homepage .tekton-contextual-links a:hover,
body.tekton-homepage .tekton-contextual-links a:focus {
  color: #ffffff !important;
}

html:has(body.tekton-widget-embed),
body.tekton-widget-embed,
body.tekton-widget-embed #Wrapper,
body.tekton-widget-embed #Content,
body.tekton-widget-embed .mcb-section.the_content {
  background: #ffffff !important;
}

html:has(body.tekton-widget-embed-service),
body.tekton-widget-embed-service,
body.tekton-widget-embed-service #Wrapper,
body.tekton-widget-embed-service #Content,
body.tekton-widget-embed-service .mcb-section.the_content {
  background: #21170f !important;
}


/* Homepage review block stays white and has no separate title by request. */
.mcb-section-tekton-home-reviews {
  background: #ffffff !important;
  padding-top: 30px !important;
  padding-bottom: 20px !important;
}

.mcb-section-tekton-home-reviews .tekton-trustindex-frame {
  background: #ffffff;
  margin-bottom: 15px;
}

/* Homepage-only spacing: tighten the gap between reviews and the service cards. */
.mcb-section-4252f25d4 {
  padding-top: 38px !important;
}

/* Homepage services: four equal categories on desktop, two on tablet, one on mobile. */
body.tekton-homepage .mcb-section-4252f25d4 > .section_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

body.tekton-homepage .mcb-section-4252f25d4 > .section_wrapper > .mcb-wrap-home-services-heading {
  flex: 0 0 100%;
  width: 100% !important;
}

body.tekton-homepage .mcb-section-4252f25d4 > .section_wrapper > .wrap:not(.mcb-wrap-home-services-heading) {
  display: flex;
  flex: 0 0 25%;
  float: none;
  width: 25% !important;
  padding: 0 10px;
  box-sizing: border-box;
}

body.tekton-homepage .mcb-section-4252f25d4 > .section_wrapper > .wrap:not(.mcb-wrap-home-services-heading) > .mcb-wrap-inner {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

body.tekton-homepage .mcb-section-4252f25d4 .column_image .image_wrapper {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

body.tekton-homepage .mcb-section-4252f25d4 .column_image .image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.tekton-homepage .mcb-section-4252f25d4 .column_button {
  margin-top: auto;
}

body.tekton-homepage .mcb-section-4252f25d4 .foran-nowrap {
  white-space: nowrap;
}

@media (min-width: 960px) {
  body.tekton-homepage .mcb-section-4252f25d4 .column_column h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
  }
}

/* Shared service-area directory: live map left, local page links right. */
.foran-home-service-areas {
  padding: 74px 0 !important;
  background: #fffef0;
}

.foran-home-service-areas > .section_wrapper {
  width: min(1160px, calc(100% - 48px)) !important;
  max-width: 1160px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  box-sizing: border-box;
}

.foran-service-areas-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.foran-service-areas-map {
  position: relative;
  display: block;
  height: 440px;
  min-height: 440px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(53, 40, 25, .18);
  background: #30241b;
  isolation: isolate;
}

.foran-service-areas-map iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: 0;
}

.foran-service-areas-content {
  color: #21170f;
}

.foran-service-areas-eyebrow {
  margin: 0 0 8px;
  color: #7a873e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.foran-service-areas-content h2 {
  margin-bottom: 18px;
  color: #532f17;
}

.foran-service-areas-content > p:not(.foran-service-areas-eyebrow) {
  max-width: 520px;
  margin-bottom: 26px;
}

.foran-service-area-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.foran-service-area-links a,
.foran-service-area-links a:visited {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(83, 47, 23, .2);
  border-radius: 8px;
  background: #ffffff;
  color: #532f17;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.foran-service-area-links a:hover,
.foran-service-area-links a:focus-visible {
  border-color: #ac6f1b;
  background: #ac6f1b;
  color: #ffffff;
  transform: translateY(-2px);
}

.foran-service-area-links a span {
  color: #ac6f1b;
  font-size: 18px;
}

.foran-service-area-links a:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.foran-service-area-links a:hover span,
.foran-service-area-links a:focus-visible span {
  color: #ffffff;
}

@media (max-width: 959px) {
  body.tekton-homepage .mcb-section-4252f25d4 > .section_wrapper > .wrap:not(.mcb-wrap-home-services-heading) {
    flex-basis: 50%;
    width: 50% !important;
  }

  .foran-service-areas-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .mcb-section-4252f25d4 {
    padding-top: 42px !important;
    padding-bottom: 38px !important;
  }

  body.tekton-homepage .mcb-section-4252f25d4 > .section_wrapper > .mcb-wrap-home-services-heading {
    margin-bottom: 28px !important;
  }

  body.tekton-homepage .mcb-section-4252f25d4 > .section_wrapper > .wrap:not(.mcb-wrap-home-services-heading) {
    flex-basis: 100%;
    width: 100% !important;
    min-height: 0 !important;
    margin-bottom: 32px !important;
    padding: 0;
  }

  body.tekton-homepage .mcb-section-4252f25d4 .column_image {
    margin-bottom: 18px !important;
  }

  body.tekton-homepage .mcb-section-4252f25d4 .column_column,
  body.tekton-homepage .mcb-section-4252f25d4 .column_button {
    min-height: 0 !important;
    margin-bottom: 12px !important;
  }

  body.tekton-homepage .mcb-section-4252f25d4 .column_column h3 {
    min-height: 0 !important;
    margin-bottom: 12px !important;
  }

  body.tekton-homepage .mcb-section-4252f25d4 .column_column p {
    margin-bottom: 16px !important;
  }

  body.tekton-homepage .mcb-section-4252f25d4 > .section_wrapper > .wrap:not(.mcb-wrap-home-services-heading):last-child {
    margin-bottom: 0 !important;
  }

  .foran-home-service-areas {
    padding: 54px 0 !important;
  }

  .foran-home-service-areas > .section_wrapper {
    width: calc(100% - 32px) !important;
    max-width: 1160px !important;
  }

  .foran-service-areas-map,
  .foran-service-areas-map img {
    min-height: 340px;
    height: 340px;
  }

  .foran-service-areas-map > span {
    right: 12px;
    bottom: 12px;
    min-height: 46px;
    padding: 0 15px;
    font-size: 14px;
  }

  .foran-service-area-links {
    grid-template-columns: 1fr;
  }
}

/* Homepage-only spacing: tighten the lower page flow after removing company values. */
.mcb-section-33d00def0 {
  padding-top: 80px !important;
  padding-bottom: 25px !important;
}

.mcb-section-3d76c2d90 {
  padding-top: 18px !important;
  padding-bottom: 30px !important;
}

.mcb-section-3d76c2d90 .mcb-item-heading-inner h3 {
  margin-bottom: 18px !important;
}

/* Homepage FAQ: column-major reading order, five independent items per column. */
.mcb-section-3d76c2d90 .mcb-wrap-5a426513a {
  width: 100% !important;
}
.mcb-section-3d76c2d90 .foran-home-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}
.mcb-section-3d76c2d90 .foran-home-faq-column {
  min-width: 0;
}
@media (max-width: 959px) {
  .mcb-section-3d76c2d90 .foran-home-faq-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
}

.mcb-section-b072e52b3 {
  padding-top: 42px !important;
}

html:has(body.tekton-widget-embed-home),
body.tekton-widget-embed-home,
body.tekton-widget-embed-home #Wrapper,
body.tekton-widget-embed-home #Content,
body.tekton-widget-embed-home .mcb-section.the_content {
  background: #ffffff !important;
}

/* Static fallback for BeTheme accordions/FAQ modules. Source theme JS is stripped from
   the clone, so we provide the open/close behavior and visibility states here. */
.faq_wrapper .question,
.mfn-acc .question {
  cursor: pointer;
}

.faq_wrapper .question .answer[hidden],
.mfn-acc .question .answer[hidden] {
  display: none !important;
}

.faq_wrapper .question.active .answer,
.faq_wrapper .question.open .answer,
.mfn-acc .question.active .answer,
.mfn-acc .question.open .answer {
  display: block !important;
}

.faq_wrapper .question .acc-icon-minus,
.mfn-acc .question .acc-icon-minus {
  display: none;
}

.faq_wrapper .question.active .acc-icon-plus,
.faq_wrapper .question.open .acc-icon-plus,
.mfn-acc .question.active .acc-icon-plus,
.mfn-acc .question.open .acc-icon-plus {
  display: none;
}

.faq_wrapper .question.active .acc-icon-minus,
.faq_wrapper .question.open .acc-icon-minus,
.mfn-acc .question.active .acc-icon-minus,
.mfn-acc .question.open .acc-icon-minus {
  display: inline-block;
}

/* Trustindex reuse: non-testimonials pages embed the working testimonials page widget in a clean iframe. */
.tekton-trustindex-frame {
  display: block;
  width: 100%;
  max-width: 1120px;
  height: 340px;
  margin: 0 auto 30px;
  border: 0;
  overflow: hidden;
}

body.tekton-widget-embed {
  background: #ffffff !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.tekton-widget-embed #Header,
body.tekton-widget-embed #Footer,
body.tekton-widget-embed .section-page-footer,
body.tekton-widget-embed .mfn-main-slider,
body.tekton-widget-embed .mfn-builder-content,
body.tekton-widget-embed .fixed-nav,
body.tekton-widget-embed #Side_slide,
body.tekton-widget-embed #body_overlay,
body.tekton-widget-embed #back_to_top {
  display: none !important;
}

body.tekton-widget-embed #Content,
body.tekton-widget-embed .content_wrapper,
body.tekton-widget-embed .sections_group,
body.tekton-widget-embed .entry-content,
body.tekton-widget-embed .section_wrapper,
body.tekton-widget-embed .the_content_wrapper {
  width: 100% !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.tekton-widget-embed .entry-content > section:not(.the_content),
body.tekton-widget-embed .entry-content > div:not(.ti-widget) {
  display: none !important;
}

body.tekton-widget-embed .mcb-section.the_content {
  padding: 0 !important;
  margin: 0 !important;
}

@media (max-width: 767px) {
  .tekton-trustindex-frame {
    height: 470px;
  }
}

/* Contact page Jobber embed: keep the form seated inside the cream card that overlaps the hero. */
body.page-id-15 .mcb-wrap-e2c56988c,
body.contact .mcb-wrap-e2c56988c {
  padding: 44px 5% 34px !important;
}

.foran-jobber-form-embed {
  display: block;
  width: 100%;
  min-height: 620px;
  margin: 0 auto;
  color: #21170f;
}

.foran-jobber-form-embed > div[id^="c25b03d1"] {
  width: 100%;
}

.foran-jobber-form-embed iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
}

.foran-jobber-fallback {
  margin: 18px auto 0;
  padding: 20px;
  border: 1px solid rgba(139, 152, 74, .35);
  border-radius: 10px;
  background: #fffef0;
  color: #21170f;
  text-align: center;
}

.foran-jobber-fallback[hidden] {
  display: none !important;
}

.foran-jobber-fallback p {
  margin: 0 0 12px;
}

.foran-jobber-fallback p:last-child {
  margin-bottom: 0;
}

.foran-jobber-fallback .button {
  display: inline-block;
  margin: 0 12px 8px 0;
  padding: 10px 18px;
  border-radius: 4px;
  background: #ac6f1b;
  color: #ffffff !important;
  text-decoration: none;
}

.foran-jobber-fallback a[href^="tel:"] {
  font-weight: 700;
  color: #21170f !important;
}

@media (max-width: 767px) {
  html,
  body.page-id-15,
  body.contact {
    overflow-x: hidden !important;
  }

  body.page-id-15 .mcb-section-75cd37386 .section_wrapper,
  body.contact .mcb-section-75cd37386 .section_wrapper,
  body.page-id-15 .mcb-section-2d3a4a9db .section_wrapper,
  body.contact .mcb-section-2d3a4a9db .section_wrapper {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    left: 0 !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  body.page-id-15 .mcb-section-75cd37386 .mcb-wrap,
  body.contact .mcb-section-75cd37386 .mcb-wrap,
  body.page-id-15 .mcb-section-75cd37386 .column,
  body.contact .mcb-section-75cd37386 .column,
  body.page-id-15 .mcb-section-75cd37386 .mcb-column-inner,
  body.contact .mcb-section-75cd37386 .mcb-column-inner,
  body.page-id-15 .mcb-section-75cd37386 .column_attr,
  body.contact .mcb-section-75cd37386 .column_attr {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    left: 0 !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  body.page-id-15 .mcb-section-2d3a4a9db .section_wrapper,
  body.contact .mcb-section-2d3a4a9db .section_wrapper {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  body.page-id-15 .mcb-section-2d3a4a9db .mcb-wrap-0c2d8fd90,
  body.contact .mcb-section-2d3a4a9db .mcb-wrap-0c2d8fd90 {
    display: none !important;
  }

  body.page-id-15 .mcb-wrap-e2c56988c,
  body.contact .mcb-wrap-e2c56988c {
    float: none !important;
    clear: both !important;
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    margin: -60px auto 0 !important;
    padding: 28px 12px 24px !important;
    box-sizing: border-box !important;
  }

  .foran-jobber-form-embed {
    min-height: 720px;
    overflow: hidden;
  }

  body.page-id-15 .mcb-section-75cd37386 h1,
  body.contact .mcb-section-75cd37386 h1 {
    display: block !important;
    max-width: calc(100vw - 32px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 20px !important;
    line-height: 26px !important;
    padding: 0 16px !important;
    white-space: normal !important;
    overflow-wrap: normal;
  }

  body.page-id-15 .mcb-section-75cd37386 h2,
  body.contact .mcb-section-75cd37386 h2 {
    display: block !important;
    max-width: calc(100vw - 36px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 14px !important;
    line-height: 22px !important;
    padding: 0 18px !important;
    white-space: normal !important;
  }

  .foran-jobber-form-embed .jobber-flash {
    width: calc(100% - 24px) !important;
    min-width: 0 !important;
    max-width: calc(100% - 24px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  .foran-jobber-form-embed .jobber-inline-work-request,
  .foran-jobber-form-embed iframe {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Static clone mobile side-slide menu. The original BeTheme JS was stripped, so the
   clone needs a lightweight opener/closer and submenu controls. */
#Side_slide {
  transition: right .25s ease, left .25s ease;
}

body.mobile-menu-open {
  overflow: hidden;
}

#Side_slide .menu_wrapper #menu {
  display: block !important;
  margin-bottom: 20px;
}

#Side_slide .menu_wrapper #menu ul.sub-menu {
  position: static !important;
  min-width: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
  display: none !important;
  background: rgba(255,255,255,.025) !important;
  box-shadow: none !important;
}

#Side_slide .menu_wrapper #menu ul.sub-menu li > a,
#Side_slide .menu_wrapper #menu ul.sub-menu li > a span {
  color: #ffffff !important;
  opacity: 1 !important;
}

#Side_slide .menu_wrapper #menu li.hover > ul.sub-menu {
  display: block !important;
}

#Side_slide #menu ul li.submenu .menu-toggle {
  appearance: none;
  -webkit-appearance: none;
  background: transparent !important;
  border: 0 !important;
  color: inherit !important;
  font-family: inherit;
  box-shadow: none !important;
}

#Side_slide #menu ul li.submenu .menu-toggle:focus-visible,
#Side_slide .close:focus-visible,
#Top_bar .responsive-menu-toggle:focus-visible {
  outline: 2px solid #ac6f1b;
  outline-offset: 2px;
}

/* Shared interaction and footer polish. */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid #6f7b35;
  outline-offset: 3px;
}

.faq_wrapper .question,
.mfn-acc .question {
  min-height: 52px;
}

.faq_wrapper .question:focus-visible,
.mfn-acc .question:focus-visible {
  outline: 3px solid #6f7b35;
  outline-offset: 3px;
}

#back_to_top {
  min-width: 44px;
  min-height: 44px;
}

#Footer .widgets_wrapper {
  padding-top: 54px !important;
  padding-bottom: 34px !important;
}

#Footer .widgets_wrapper .widget {
  margin-bottom: 18px !important;
}

#Footer .widgets_wrapper p,
#Footer .widgets_wrapper a,
#Footer .footer_copy .copyright,
#Footer .footer_copy .copyright a {
  color: #f4efe9 !important;
}

#Footer .footer_copy .copyright {
  font-size: 14px;
  line-height: 1.65;
}

#Footer .footer_copy .copyright a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 767px) {
  #Footer .widgets_wrapper {
    padding-top: 40px !important;
    padding-bottom: 16px !important;
  }

  #Footer .widgets_wrapper .column {
    margin-bottom: 24px !important;
  }

  #Footer .widgets_wrapper .widget {
    margin-bottom: 0 !important;
  }

  #Footer .footer_copy {
    padding-top: 22px !important;
    padding-bottom: 22px !important;
  }

  #Footer .footer_copy .copyright {
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
  }
}

/* Sitewide content typography contract. Semantic heading level now determines visual
   scale inside the page content, overriding legacy BeTheme classes and inline sizes. */
:root {
  --foran-content-h2-size: clamp(1.625rem, 1.48rem + .6vw, 2rem);
  --foran-content-h3-size: clamp(1.375rem, 1.28rem + .4vw, 1.625rem);
  --foran-content-h4-size: clamp(1.125rem, 1.04rem + .35vw, 1.375rem);
  --foran-content-h5-size: clamp(1.0625rem, 1.04rem + .1vw, 1.125rem);
  --foran-content-body-size: clamp(1rem, .976rem + .1vw, 1.0625rem);
}

#Content h2 {
  font-family: "Roboto Slab", Georgia, serif !important;
  font-size: var(--foran-content-h2-size) !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  letter-spacing: -.015em !important;
  text-wrap: balance;
}

#Content h3 {
  font-family: "Roboto Slab", Georgia, serif !important;
  font-size: var(--foran-content-h3-size) !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  letter-spacing: -.01em !important;
  text-wrap: balance;
}

#Content h4 {
  font-family: "Roboto Slab", Georgia, serif !important;
  font-size: var(--foran-content-h4-size) !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
  letter-spacing: -.005em !important;
  text-wrap: balance;
}

#Content h5 {
  font-family: "Roboto Slab", Georgia, serif !important;
  font-size: var(--foran-content-h5-size) !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

#Content p:not(.foran-service-areas-eyebrow):not(.related-heading):not(.thank-you-eyebrow),
#Content li,
#Content .answer {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: var(--foran-content-body-size) !important;
  line-height: 1.6 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-wrap: pretty;
}

/* Keep the established-property photo in the desktop split section, but remove its
   640px-tall stacked block from service pages on phones. */
@media (max-width: 767px) {
  body.tekton-service-page [data-photo-slot].bg-cover {
    display: none !important;
  }

  /* Let the About page's paired story cards use the available phone width instead
     of stacking 33px outer gutters with 50px inner padding. */
  body.page-id-878 .mcb-section-inner-y1qzaffy {
    padding-right: 14px !important;
    padding-left: 14px !important;
  }

  body.page-id-878 .mcb-wrap-ctimilx .mcb-wrap-inner-ctimilx,
  body.page-id-878 .mcb-wrap-5k1v39nh .mcb-wrap-inner-5k1v39nh {
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding: 24px 20px 28px !important;
  }
}

/* === Foran Landscape Company approved palette, September 2026 === */
:root {
  --foran-main: #0c1c12;
  --foran-accent: #61572a;
  --foran-secondary: #ac6f1b;
  --foran-on-dark: #ffffff;
  --foran-on-secondary: #07070a;
}

/* Main replaces the former light-green brand surfaces. */
#Top_bar,
#Top_bar.is-sticky,
.header-classic #Top_bar,
.header-fixed #Top_bar,
.header-plain #Top_bar,
.header-split #Top_bar,
.header-shop #Top_bar,
.header-shop-split #Top_bar,
.header-stack #Top_bar,
#Side_slide,
[style*="background-color:#ac6f1b"],
[style*="background-color: #ac6f1b"] {
  background-color: var(--foran-main) !important;
}

/* Every readable item sitting directly on the main surface is white. */
#Top_bar .menu > li > a,
#Top_bar .menu > li > a span:not(.description),
#Top_bar .responsive-menu-toggle,
#Top_bar .responsive-menu-toggle i,
#Side_slide,
#Side_slide a,
#Side_slide a span,
#Side_slide .close,
[style*="background-color:#ac6f1b"] h1,
[style*="background-color:#ac6f1b"] h2,
[style*="background-color:#ac6f1b"] h3,
[style*="background-color:#ac6f1b"] h4,
[style*="background-color:#ac6f1b"] h5,
[style*="background-color:#ac6f1b"] h6,
[style*="background-color:#ac6f1b"] p,
[style*="background-color:#ac6f1b"] a:not(.button) {
  color: var(--foran-on-dark) !important;
}

/* Accent replaces the former muted-brown accent role, including the phone bar. */
#Action_bar,
.header-classic #Action_bar,
.header-fixed #Action_bar,
.header-plain #Action_bar,
.header-split #Action_bar,
.header-shop #Action_bar,
.header-shop-split #Action_bar,
.header-stack #Action_bar {
  background-color: var(--foran-accent) !important;
}

#Action_bar .contact_details,
#Action_bar .contact_details a,
#Action_bar .contact_details a:hover,
#Action_bar .social li a,
#Action_bar .social-menu a {
  color: var(--foran-on-dark) !important;
}

/* Secondary owns buttons, active navigation, highlights, and interactive emphasis. */
:root,
body {
  --mfn-button-bg: var(--foran-secondary);
  --mfn-button-bg-hover: #8f5b15;
  --mfn-button-theme-bg: var(--foran-secondary);
  --mfn-button-theme-bg-hover: #8f5b15;
  --mfn-button-shop-bg: var(--foran-secondary);
  --mfn-button-shop-bg-hover: #8f5b15;
  --mfn-clients-tiles-hover: var(--foran-secondary);
  --mfn-section-tabber-nav-active-color: var(--foran-secondary);
  --mfn-woo-themecolor: var(--foran-secondary);
  --mfn-woo-bg-themecolor: var(--foran-secondary);
  --mfn-woo-border-themecolor: var(--foran-secondary);
}

body a.button:not(.footer_button),
body button.button,
body input[type="submit"],
body input[type="button"],
body .foran-jobber-fallback .button,
.mcb-section .mcb-wrap .mcb-item-9fdeb5b99 .icon-wrapper,
.mcb-section .mcb-wrap .mcb-item-af2cce6ea .icon-wrapper,
.mcb-section .mcb-wrap .mcb-item-8b8124817 .icon-wrapper,
.mcb-section .mcb-wrap .icon-wrapper[style*="background-color:#AC6F1B"],
.mcb-section .mcb-wrap .icon-wrapper[style*="background-color: #AC6F1B"] {
  background-color: var(--foran-secondary) !important;
  border-color: var(--foran-secondary) !important;
  color: var(--foran-on-secondary) !important;
}

body a.button:not(.footer_button),
body button.button,
body input[type="submit"],
body input[type="button"] {
  color: var(--foran-on-dark) !important;
  font-weight: 700 !important;
}

body a.button:not(.footer_button) .button_label,
body a.button:not(.footer_button) .button_icon,
body a.button:not(.footer_button) .button_icon i,
body button.button,
body input[type="submit"],
body input[type="button"] {
  color: var(--foran-on-dark) !important;
  font-weight: 700 !important;
}

body a.button[style*="background-color:#fffef0"],
body a.button[style*="background-color:#fffef0"] .button_label,
body a.button[style*="background-color:#fffef0"] .button_icon,
body a.button[style*="background-color:#fffef0"] .button_icon i {
  color: var(--foran-accent) !important;
  font-weight: 700 !important;
}

body .ti-widget .ti-widget-header a.ti-header-write-btn,
body .ti-widget .ti-widget-header a.ti-header-write-btn span {
  background: var(--foran-secondary) !important;
  border-color: var(--foran-secondary) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-weight: 700 !important;
}

body a.button:not(.footer_button):hover,
body a.button:not(.footer_button):focus-visible,
body button.button:hover,
body button.button:focus-visible,
body input[type="submit"]:hover,
body input[type="submit"]:focus-visible,
body input[type="button"]:hover,
body input[type="button"]:focus-visible {
  background-color: #8f5b15 !important;
  border-color: #8f5b15 !important;
  color: var(--foran-on-dark) !important;
}

body a.button:not(.footer_button):hover .button_label,
body a.button:not(.footer_button):focus-visible .button_label,
body a.button:not(.footer_button):hover .button_icon,
body a.button:not(.footer_button):focus-visible .button_icon,
body a.button:not(.footer_button):hover .button_icon i,
body a.button:not(.footer_button):focus-visible .button_icon i {
  color: var(--foran-on-dark) !important;
}

.themecolor,
.highlight:not(.highlight_image),
.foran-service-areas-eyebrow,
.foran-service-area-links a span,
#Top_bar .menu > li.current-menu-item > a,
#Top_bar .menu > li.current_page_item > a,
#Top_bar .menu > li.current-menu-parent > a,
#Top_bar .menu > li.current-menu-ancestor > a,
#Top_bar .menu > li.hover > a {
  color: var(--foran-secondary) !important;
}

#Top_bar .menu > li a:not(.menu-toggle)::after {
  background: var(--foran-secondary) !important;
}

#Top_bar .menu > li.current-menu-item.submenu > a > span:not(.description)::after,
#Top_bar .menu > li.current_page_item.submenu > a > span:not(.description)::after,
#Top_bar .menu > li.current-menu-parent.submenu > a > span:not(.description)::after,
#Top_bar .menu > li.current-menu-ancestor.submenu > a > span:not(.description)::after,
#Top_bar .menu > li.hover.submenu > a > span:not(.description)::after {
  border-top-color: var(--foran-secondary) !important;
}

.foran-service-area-links a:hover,
.foran-service-area-links a:focus-visible {
  border-color: var(--foran-secondary);
  background: var(--foran-secondary);
  color: var(--foran-on-secondary);
}

.foran-service-area-links a:hover span,
.foran-service-area-links a:focus-visible span {
  color: var(--foran-on-secondary);
}

/* Keep the approved brown typography and footer surfaces unchanged. */

/* Four approved photo panels: native source frame retained through tablet/mobile.
   Approval: Jakob 1548014223433531503. No surrounding copy/style changes. */
#Wrapper :is([data-photo-slot="photo-index-2"],[data-photo-slot="photo-landscape-services-1"],[data-photo-slot="photo-lawn-care-1"],[data-photo-slot="photo-seasonal-services-1"]) {
  padding:0 !important; height:auto !important; min-height:0 !important;
  align-self:flex-start !important; margin-top:80px !important; background-size:contain !important;
  background-position:center !important; background-repeat:no-repeat !important;
}
/* Parent-service phone reading order approved by Jakob: 1548044169031843900.
   Home is excluded. Hardscape keeps its inherited mobile-hidden photo; order
   its existing slot without changing visibility or tablet/desktop layout. */
@media (max-width:767px) {
  #Wrapper :is([data-photo-slot="photo-landscape-services-1"],[data-photo-slot="photo-hardscape-services-1"],[data-photo-slot="photo-lawn-care-1"],[data-photo-slot="photo-seasonal-services-1"]) {
    order:1 !important;
  }
}

/* Desktop stretch restoration approved by Jakob: 1548041150395453582.
   Match the existing 1024px stacking boundary; backgrounds crop proportionally. */
@media (min-width:1025px) {
  #Wrapper :is([data-photo-slot="photo-index-2"],[data-photo-slot="photo-landscape-services-1"],[data-photo-slot="photo-lawn-care-1"],[data-photo-slot="photo-seasonal-services-1"]) {
    align-self:stretch !important;
    aspect-ratio:auto !important;
    margin-top:0 !important;
    background-size:cover !important;
  }
}
@media (max-width:1024px) {
  #Wrapper .section_wrapper:has(> :is([data-photo-slot="photo-index-2"],[data-photo-slot="photo-landscape-services-1"],[data-photo-slot="photo-lawn-care-1"],[data-photo-slot="photo-seasonal-services-1"])) { display:flex !important; flex-direction:column !important; }
  #Wrapper .section_wrapper:has(> :is([data-photo-slot="photo-index-2"],[data-photo-slot="photo-landscape-services-1"],[data-photo-slot="photo-lawn-care-1"],[data-photo-slot="photo-seasonal-services-1"])) > .wrap { width:100% !important; flex-basis:auto !important; }
  #Wrapper :is([data-photo-slot="photo-index-2"],[data-photo-slot="photo-landscape-services-1"],[data-photo-slot="photo-lawn-care-1"],[data-photo-slot="photo-seasonal-services-1"]) { display:block !important; max-width:720px; margin:0 auto !important; flex-shrink:0; }
}
