/* Site design: typography, colours, components and responsive layouts. */
@font-face {
  font-family: "Sharp 400";
  src: url('../fonts/Sharp-Regular-400.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #fefefb;
  --transparent: transparent;
  --green: #61a157;
  --black: #1a1913;
  --light-brown: #fef7ec;
  --pure-black: black;
  --pure-white: white;
}

html {
  scroll-behavior: smooth;
}

.block-container {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .block-container {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .block-container {
    max-width: none;
  }
}

body {
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Merriweather, serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Merriweather, serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Merriweather, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Merriweather, serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Merriweather, serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Merriweather, serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.home-section {
  z-index: 1;
  height: 100vh;
}

.home-section.service, .home-section.blackberrygorse {
  height: 50vh;
}

.home__hero-content {
  z-index: 2;
  background-image: linear-gradient(#00000080, #00000080), url('../images/IMG_E7068.avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 7%;
  padding-right: 7%;
  display: flex;
}

.home__hero-content.services {
  background-image: linear-gradient(#00000080, #00000080), url('../images/IMG_7229.avif');
  background-position: 0 0, 50% 42%;
  background-size: auto, cover;
}

.home__hero-content.our-work {
  background-image: linear-gradient(#00000080, #00000080), url('../images/IMG_E7043.avif');
  background-position: 0 0, 54% 35%;
  background-size: auto, cover;
}

.hero-heading-wrapper {
  margin-top: 0;
  margin-bottom: 0;
}

.paragraph {
  background-color: var(--transparent);
  color: var(--white);
  text-decoration: none;
}

.paragraph.grey {
  color: #fffffccc;
}

.paragraph.cta-paragraph {
  color: #fefefbd9;
  font-family: Merriweather, serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.paragraph.link {
  background-color: var(--transparent);
  transition: color .2s;
}

.paragraph.link:hover {
  color: var(--green);
}

.paragraph.link.is-current {
  color: var(--white);
}

.large-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.padding-top, .padding-top.padding-medium {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.services-top-content-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  max-width: 52rem;
  display: flex;
}

.button-group {
  flex-flow: row;
  align-items: center;
  display: flex;
}

.call-button {
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  transition: background-color .2s, color .2s;
}

.call-button:hover {
  background: var(--white);
  color: var(--green);
}

.call-button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.hero-action-row,
.hero-quote-pair {
  display: flex;
  align-items: center;
}

.hero-action-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-quote-pair {
  gap: 10px;
}

.hero-work-button {
  border: 0;
  background: var(--green);
  color: var(--white);
}

.hero-action-row .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.hero-work-button:hover {
  background: var(--white);
  color: var(--green);
}

.hero-service-area {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  bottom: 28px;
  left: 7%;
  max-width: min(560px, 86vw);
  margin-top: 0;
  padding: 14px 18px;
  border: 1px solid #fefefb26;
  border-radius: 10px;
  background: #1a1913cc;
  box-shadow: 0 10px 30px #0003;
  backdrop-filter: blur(7px);
  color: var(--white);
  font-size: .8rem;
  line-height: 1.5;
}

.hero-service-area strong {
  color: var(--white);
  font-size: .875rem;
}

.hero-service-area span {
  color: #fefefbcc;
}

.cta-button-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.button-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  color: var(--white);
  text-align: center;
  letter-spacing: -.5px;
  background-color: var(--green);
  border-radius: 50rem;
  padding: 0 1.5rem;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: all .2s;
}

.button-2:hover {
  background-color: var(--white);
  color: var(--green);
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-small {
  flex-flow: column;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.footer1_menu-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: row;
  align-items: start;
  display: flex;
}

.footer-4-bottom-wrapper {
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
  display: flex;
}

.footer-top-wrapper-2 {
  grid-column-gap: 160px;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  justify-content: space-between;
  align-items: start;
  padding-top: 25px;
  display: flex;
}

.spacer-xxsmall {
  width: 100%;
  padding-top: .5rem;
}

.footer-link-list {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: flex-start start;
  display: flex;
}

.footer-logo-link {
  height: 80px;
  margin-bottom: 0;
  padding-left: 0;
}

.footer-logo-link.is-current {
  height: 100px;
  margin-bottom: 10px;
}

.text-opacity-40 {
  opacity: .9;
  color: var(--white);
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
}

.footer-link {
  color: var(--white);
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: 16px;
  text-decoration: none;
  transition: color .2s;
}

.footer-link:hover {
  color: var(--green);
}

.footer-link.no-wrap {
  white-space: nowrap;
}

.footer-left-wrapper {
  flex-direction: column;
  display: flex;
}

.footer-link-column {
  width: 11.6rem;
}

.footer-content {
  padding-top: 10px;
  padding-bottom: 10px;
}

.footer {
  background-color: var(--black);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.footer-credit-text {
  opacity: .72;
  font-size: .75rem;
  font-weight: 300;
  line-height: 1.4;
}

.footer-credit-text.text-secondary-color {
  color: var(--white);
  font-size: .75rem;
}

.spacer-xlarge {
  width: 100%;
  padding-top: 5.5rem;
}

.line-divider {
  background-color: #e5e5e5;
  width: 100%;
  height: 1px;
}

.line-divider.dark {
  background-color: #ffffff1a;
}

.services-card {
  border: 0;
  background-color: #25261f;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.services-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 991px) {
  .services-card-image { height: 200px; }
}

@media screen and (max-width: 767px) {
  .services-card-image { height: 220px; }
}

.services-card:first-child .services-card-image,
.services-card:last-child .services-card-image {
  object-position: center 58%;
}

.services-card-body {
  flex: 1;
  padding: 22px 24px 32px;
}

.services-grid {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  flex-wrap: nowrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-items: stretch;
  width: 100%;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.services-bottom-content {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.heading-h2 {
  color: var(--white);
  font-family: Merriweather, serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-h2.about-heading {
  margin-bottom: 6px;
}

.heading-h2.review-heading {
  text-align: left;
  margin-bottom: 40px;
}

.margin-bottom-2 {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom-2.margin-small {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.margin-bottom-2.margin-xxsmall, .margin-bottom-2.margin-xxlarge {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.about-grid {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  display: grid;
}

.section_layout218.color-scheme-1 {
  background-color: var(--green);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.about-image-wrapper {
  border-radius: 0;
  overflow: hidden;
}

.about-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  min-height: 560px;
}

.about-bottom-grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.cta-content-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  width: 100%;
  max-width: 45rem;
  display: flex;
}

.heading-style-h2-4 {
  color: var(--white);
  letter-spacing: -.0375rem;
  margin-bottom: 20px;
  font-size: 54px;
  font-weight: 700;
  line-height: 60px;
}

.max-width-large-2 {
  width: 100%;
  max-width: none;
}

.contact15_item-icon-wrapper {
  flex: none;
  align-self: flex-start;
}

.contact15_content-left {
  width: 100%;
}

.text-style-link-2 {
  width: 100%;
  color: var(--white);
  font-size: 17px;
  font-weight: 400;
  text-decoration: underline;
}

.heading-h6 {
  width: 100%;
  color: var(--white);
  font-family: Merriweather, serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.contact15_item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.contact15_content {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 100%;
  display: grid;
}

.text-size-medium-5 {
  width: 100%;
  color: var(--white);
  font-size: 20px;
  line-height: 150%;
}

.contact15_image-wrapper {
  border-radius: 0;
  width: 100%;
  overflow: hidden;
}

.icon-embed-xsmall {
  width: 2rem;
  height: 2rem;
  color: var(--light-brown);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.contact15_contact-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.contact15_component {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
  width: 100%;
}

.contact15_component > .margin-bottom-2 {
  margin-bottom: 0;
}

.contact15_content {
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}

.contact15_contact-list {
  gap: 20px;
  margin-top: 4px;
}

.text-style-link-2 {
  text-decoration: none;
  transition: color .2s;
}

.text-style-link-2:hover,
.text-style-link-2:focus-visible {
  color: var(--green);
}

.contact-area-copy {
  margin: 4px 0 0;
  color: #fefefbcc;
  font-size: .95rem;
  line-height: 1.6;
}

.contact15_image-wrapper .form {
  margin-top: 0;
}

.contact15_image-wrapper .form label {
  margin-top: 16px;
  margin-bottom: 8px;
}

.contact15_image-wrapper .form label:first-child {
  margin-top: 0;
}

.contact15_image-wrapper .form-text-field {
  min-height: 48px;
  margin-bottom: 0;
}

.form-button-wrapper .button {
  border: 0;
  background: var(--green);
  color: var(--white);
}

.form-button-wrapper .button:hover,
.form-button-wrapper .button:focus-visible {
  background: var(--white);
  color: var(--green);
}

.heading-h3 {
  color: var(--white);
  font-family: Merriweather, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.heading-h3.services-card-heading {
  margin-bottom: 10px;
}

.heading-h3.hero-heading {
  color: #fefefbcc;
}

.gallery-grid {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-columns: 1fr 1fr 1fr;
}

.gallery-thum {
  object-fit: cover;
  object-position: 35% 50%;
  width: 100%;
  height: 340px;
}

.rl-padding-section-large {
  padding-top: 80px;
  padding-bottom: 80px;
}

.gallery-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.gallery-arrow-icon {
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.gallery-slide {
  padding-right: 2rem;
}

.gallery-mask {
  width: 50%;
  overflow: visible;
}

.gallery-slide-nav {
  height: 1.75rem;
  font-size: .5rem;
  inset: auto auto 0% 0%;
}

.gallery-component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  align-items: start;
}

.gallery-slider {
  background-color: #0000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-bottom: 5rem;
  position: relative;
  overflow: visible;
}

.gallery-lightbox-link {
  width: 100%;
}

.gallery-arrow-right {
  border: 0;
  background-color: var(--pure-white);
  width: 48px;
  height: 48px;
  color: var(--pure-black);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  inset: auto 0% 0% auto;
  cursor: pointer;
  transition: background-color .2s, color .2s;
}

.gallery-heading-wrapper {
  width: 100%;
  max-width: 52rem;
}

.gallery-spacing-block- {
  width: 100%;
  padding-bottom: 3rem;
}

.gallery-image-wrapper {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

.blog-spacing-block- {
  width: 100%;
  padding-bottom: 1.5rem;
}

.gallery-arrow-left {
  border: 0;
  background-color: var(--pure-white);
  width: 48px;
  height: 48px;
  color: var(--pure-black);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  inset: auto 4rem 0% auto;
  cursor: pointer;
  transition: background-color .2s, color .2s;
}

.gallery-arrow-left:hover,
.gallery-arrow-right:hover {
  background-color: var(--green);
  color: var(--white);
}

.container {
  flex-flow: column;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  padding-left: 7%;
  padding-right: 7%;
  display: flex;
}

.container.hero-container {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  max-width: none;
  display: flex;
  position: relative;
}

.container.gallery-container {
  display: block;
}

.container.home-services {
  flex-flow: column;
}

.container.contact-form-container {
  justify-content: center;
  align-items: center;
  padding-top: 75px;
}

.container.footer-container {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.section {
  width: 100vw;
  height: 100vh;
}

.section.temporary {
  background-color: var(--black);
}

.hero-content-wrapper {
  width: 600px;
}

.button {
  border: 0;
  background-color: var(--green);
  color: var(--white);
  text-align: center;
  border-radius: 999px;
  padding: .8rem 1.5rem;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s, color .2s;
}

.button:hover {
  background-color: var(--white);
  color: var(--green);
}

.button.slim-button {
  padding: .6rem .85rem;
}

.heading-h1 {
  color: var(--white);
  margin-top: 71px;
  font-family: Merriweather, serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
}

.heading-h1.services-card-number {
  margin-top: 10px;
  margin-bottom: 10px;
}

.heading-h1.cta-heading {
  color: #ffffed;
  margin-top: 60px;
  margin-bottom: 5px;
}

.heading-h1.services-heading {
  margin-top: 71px;
}

.heading-h4 {
  color: var(--white);
  font-family: Merriweather, serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.heading-h5 {
  color: var(--white);
  font-family: Merriweather, serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.home-about-section {
  background-color: var(--green);
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
}

.home-hero-section {
  background-image: linear-gradient(#00000080, #00000080), url('../images/IMG_7045.avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  width: 100vw;
  height: 100vh;
}

.home-gallery-section {
  background-color: var(--black);
  overflow: hidden;
}

.home-services-section {
  background-color: var(--black);
  padding-bottom: 80px;
}

.cta-section {
  background-image: linear-gradient(#00000080, #00000080), url('../images/IMG_7192.avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-top: 80px;
  padding-bottom: 80px;
}

.cta-section.blackberrygorse {
  background-image: linear-gradient(#00000080, #00000080), url('../images/IMG_8842.avif');
  background-position: 0 0, 50% 48%;
}

.cta-section.blackberrygorse .cta-content-wrapper {
  gap: 20px;
}

.cta-section.blackberrygorse .cta-button-wrapper {
  margin-top: 4px;
}

.footer-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  margin-top: -25px;
}

.navbar-menu {
  align-items: center;
  display: flex;
  position: static;
}

.navbar-logo {
  display: block;
  width: auto;
  max-width: none;
  height: 65px;
  transform: translateY(-2px);
}

.navbar-menu-button {
  padding: 0;
}

.navbar-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar-component {
  background-color: var(--black);
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 4.5rem;
  padding: 6px 7%;
  display: flex;
  position: absolute;
  top: 0;
}

.navbar-logo-link {
  flex: 0 0 auto;
  line-height: 0;
  padding-left: 0;
}

.navbar-logo-link.is-current {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-menu-buttons {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-left: 1rem;
  display: flex;
}

.navbar-menu-buttons .call-button {
  flex-basis: 42px;
  width: 42px;
  height: 42px;
}

.form-text-field {
  color: var(--black);
  border-radius: 8px;
}

.form-button-wrapper {
  margin-top: 20px;
}

.contact-form-section {
  background-color: var(--black);
  min-height: 100vh;
}

.form {
  margin-top: 20px;
}

.home-contact-section {
  background-color: var(--green);
  padding-top: 80px;
  padding-bottom: 80px;
  scroll-margin-top: 72px;
}

.home-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
  width: 100%;
}

.home-contact-heading h2 {
  margin-bottom: 16px;
}

.home-contact-heading p {
  max-width: 28rem;
  margin-bottom: 0;
}

.home-contact-details {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}

.home-contact-detail {
  display: grid;
  gap: 5px;
}

.home-contact-detail strong {
  font-family: Merriweather, serif;
  font-size: 1rem;
}

.home-contact-detail a,
.home-contact-detail span {
  color: #fefefbd9;
  font-size: 1rem;
  line-height: 1.55;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.home-contact-detail a {
  transition: color .2s;
}

.home-contact-detail a:hover,
.home-contact-detail a:focus-visible {
  color: var(--black);
}

.home-contact-section .form-button-wrapper .button {
  background: var(--black);
}

.home-contact-section .form-button-wrapper .button:hover,
.home-contact-section .form-button-wrapper .button:focus-visible {
  background: var(--white);
  color: var(--green);
}

.home-contact-form {
  margin-top: 0;
}

.home-contact-form label {
  margin-top: 16px;
  margin-bottom: 8px;
}

.home-contact-form label:first-child {
  margin-top: 0;
}

.home-contact-form .form-text-field {
  min-height: 46px;
  margin-bottom: 0;
}

.home-contact-form .home-message-field {
  min-height: 140px;
  resize: vertical;
}

@media screen and (max-width: 767px) {
  .home-contact-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .home-contact-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
}

.gallery-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.list {
  padding-left: 20px;
}

.body {
  background-color: var(--black);
  color: var(--white);
  text-decoration: none;
}

.section-faq {
  background-color: var(--black);
  padding-top: 80px;
  padding-bottom: 80px;
}

.faq-component {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.faq-accordion {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.faq-question {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  border-top: 1px solid var(--white);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
}

.faq-list {
  width: 630px;
}

.faq-icon-wrapper {
  align-self: flex-start;
}

.faq-answer {
  overflow: hidden;
}

.faq-answer-wrapper {
  margin-bottom: 1.5rem;
}

.faq-icon {
  width: 2rem;
  height: 2rem;
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.review-card {
  border: 1px solid var(--white);
  border-radius: 10px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 2rem;
  display: flex;
}

.testimonial-customer {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: left;
  align-items: center;
  display: flex;
}

.review-wrapper {
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.review-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.review-card-space {
  width: 100%;
  padding-bottom: 1.5rem;
}

.home-review-section {
  margin-top: 80px;
  margin-bottom: 80px;
}

.testimonial-customer-image {
  object-fit: cover;
  border-radius: 0;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  min-height: 3rem;
  overflow: visible;
}

.customer-name {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.testimonial-customer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-card-stars {
  grid-column-gap: .15rem;
  grid-row-gap: .15rem;
  display: flex;
}

.review-heading-wrapper {
  width: 100%;
}

.testimonial-rating-icon {
  width: 1rem;
  height: 1rem;
  color: var(--white);
  flex-direction: column;
  display: flex;
}

.blackberrygorse-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.blackberrygorse-section {
  background-color: var(--black);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.blackberrygorse-section.top {
  margin-top: 80px;
  margin-bottom: 60px;
}

.blackberrygorse-section.bottom {
  margin-top: 60px;
  margin-bottom: 40px;
}

.vegetation-gallery-section {
  padding-bottom: 80px;
  background: var(--black);
}

.vegetation-gallery-image {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.blackberrygorse-image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.layout-spacing-block- {
  width: 100%;
  padding-bottom: 1.5rem;
}

.image {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.link-2 {
  color: var(--white);
  text-decoration: none;
}

.bold-text {
  color: #fefefbf2;
}

@media screen and (max-width: 991px) {
  .home-section {
    height: auto;
    max-height: none;
  }

  .hero-heading-wrapper {
    font-size: 8vw;
  }

  .paragraph.cta-paragraph {
    font-size: 1.3rem;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .footer-top-wrapper-2 {
    grid-row-gap: 4rem;
    flex-flow: column;
    grid-template-columns: 1fr;
  }

  .spacer-xlarge {
    padding-top: 3.5rem;
  }

  .services-grid {
    grid-column-gap: 24px;
    grid-row-gap: 30px;
    flex-direction: column;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 738px;
  }

  .services-bottom-content {
    max-width: 738px;
  }

  .heading-h2 {
    font-size: 2.25rem;
  }

  .margin-bottom-2 {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .about-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .section_layout218.color-scheme-1 {
    padding-bottom: 60px;
  }

  .about-image {
    min-height: 400px;
    max-height: 400px;
  }

  .heading-style-h2-4 {
    font-size: 2.75rem;
  }

  .contact15_content {
    grid-column-gap: 3rem;
  }

  .contact15_component {
    width: 100%;
  }

  .heading-h3 {
    font-size: 1.75rem;
  }

  .rl-padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .gallery-spacing-block- {
    padding-bottom: 4.5rem;
  }

  .heading-h1 {
    font-size: 3rem;
  }

  .heading-h4 {
    font-size: 1.5rem;
  }

  .menu-icon-line-middle {
    background-color: var(--white);
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar-menu {
    -webkit-text-fill-color: inherit;
    background-color: #fff;
    background-clip: border-box;
    border-bottom: 1px solid #000;
    padding: 1rem 5% 2rem;
    position: absolute;
    overflow: auto;
  }

  .navbar-menu.is-page-height-tablet {
    background-color: var(--black);
    height: 100vh;
    padding-bottom: 15rem;
  }

  .menu-icon-line-top {
    background-color: var(--white);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar-menu-button.is-open {
    background-color: #0000;
  }

  .menu-icon-line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon-line-bottom {
    background-color: var(--white);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar-menu-buttons {
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding-left: 20px;
    margin-top: 1.5rem;
    margin-left: 0;
  }

  .faq-list {
    width: 100%;
  }

  .review-list {
    grid-template-columns: 1fr 1fr;
  }

  .blackberrygorse-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    min-height: auto;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .contact15_component {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .container.contact-form-container {
    padding-top: 120px;
    padding-bottom: 56px;
  }

  .hero-service-area {
    right: 5vw;
    bottom: 20px;
    left: 5vw;
    max-width: none;
  }

  .hero-action-row {
    align-items: flex-start;
  }

  .hero-service-area {
    max-width: 28rem;
  }
  .home__hero-content {
    padding-left: 20%;
    padding-right: 5vw;
  }

  .home__hero-content.services, .home__hero-content.our-work {
    padding-left: 7%;
    padding-right: 7%;
  }

  .hero-heading-wrapper {
    font-size: 3.5em;
  }

  .paragraph.cta-paragraph {
    font-size: 1.2rem;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .footer1_menu-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .footer-4-bottom-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-bottom: 0;
  }

  .footer-top-wrapper-2 {
    grid-row-gap: 3rem;
    flex-flow: column;
  }

  .footer-link {
    padding-top: .125rem;
    padding-bottom: .125rem;
  }

  .footer-credit-text.text-secondary-color {
    margin-top: 20px;
  }

  .spacer-xlarge {
    padding-top: 2.5rem;
  }

  .services-grid {
    align-items: flex-start;
    max-width: none;
  }

  .heading-h2 {
    font-size: 2rem;
  }

  .margin-bottom-2 {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .about-grid {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .cta-content-wrapper {
    max-width: none;
  }

  .heading-style-h2-4 {
    font-size: 2.25rem;
  }

  .text-style-link-2 {
    word-break: break-all;
  }

  .heading-h6 {
    font-size: 1rem;
    line-height: 1rem;
  }

  .contact15_content {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .text-size-medium-5 {
    font-size: 1rem;
  }

  .heading-h3 {
    font-size: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-thum {
    height: 225px;
  }

  .rl-padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .gallery-slide {
    padding-right: 1.5rem;
  }

  .gallery-mask {
    width: 100%;
  }

  .gallery-spacing-block- {
    padding-bottom: 3rem;
  }

  .blog-spacing-block- {
    padding-bottom: 1.25rem;
  }

  .gallery-arrow-left {
    right: 3.5rem;
  }

  .heading-h1 {
    font-size: 2.5rem;
  }

  .heading-h1.services-heading {
    margin-top: 71px;
  }

  .heading-h4 {
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .heading-h5 {
    font-size: 1.25rem;
    line-height: 1.15rem;
  }

  .navbar-component {
    height: auto;
    min-height: 4rem;
  }

  .navbar-logo-link {
    padding-left: 0;
  }

  .gallery-section {
    padding-top: 7%;
  }

  .faq-question {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .faq-icon-wrapper {
    width: 1.75rem;
  }

  .faq-answer-wrapper {
    margin-bottom: 1.25rem;
  }

  .faq-icon {
    width: 1.75rem;
    height: 1.75rem;
  }

  .review-card {
    padding: 1.5rem;
  }

  .testimonial-customer {
    flex-direction: row;
    align-items: center;
    width: 100%;
  }

  .review-list {
    grid-template-columns: 1fr;
  }

  .review-card-space {
    padding-bottom: 1.25rem;
  }

  .blackberrygorse-wrapper {
    flex-flow: column-reverse;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
  }

  .layout-spacing-block- {
    padding-bottom: 1.25rem;
  }
}

@media screen and (max-width: 479px) {
  .home-section.service, .home-section.blackberrygorse {
    width: 100%;
  }

  .home__hero-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 10%;
    padding-right: 10%;
  }

  .hero-heading-wrapper {
    font-size: 3em;
  }

  .paragraph.cta-paragraph {
    font-size: 1.1rem;
  }

  .paragraph.about-paragraph {
    margin-bottom: 1rem;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .button-group {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .footer1_menu-wrapper {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .footer-top-wrapper-2 {
    grid-row-gap: 48px;
  }

  .footer-logo-link {
    margin-bottom: 1.5rem;
  }

  .text-opacity-40 {
    margin-bottom: 5px;
  }

  .footer-link {
    word-break: break-all;
    padding-top: .25rem;
    padding-bottom: .25rem;
  }

  .footer-link-column {
    width: 8rem;
  }

  .footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .services-card {
    margin-right: 0;
  }

  .heading-h2 {
    font-size: 1.75rem;
  }

  .margin-bottom-2 {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 225px;
    max-height: 225px;
  }

  .about-bottom-grid {
    grid-template-columns: 1fr;
  }

  .heading-style-h2-4 {
    font-size: 2.75rem;
  }

  .heading-h6 {
    font-size: 1rem;
  }

  .contact15_item {
    grid-column-gap: .7rem;
    grid-row-gap: .7rem;
  }

  .contact15_content {
    grid-template-columns: 1fr;
  }

  .text-size-medium-5 {
    font-size: 1rem;
  }

  .icon-embed-xsmall {
    width: 1.8rem;
    height: 1.8rem;
  }

  .contact15_contact-list {
    grid-template-columns: 1fr;
  }

  .heading-h3 {
    font-size: 1.35rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .heading-h1 {
    font-size: 2.25rem;
    line-height: 44px;
  }

  .heading-h1.cta-heading {
    margin-top: 40px;
  }

  .heading-h4 {
    font-size: 1.25rem;
  }

  .heading-h5 {
    font-size: 1.15rem;
  }

  .blackberrygorse-wrapper {
    grid-template-columns: 1fr;
  }
}

#contact15_item-1, #contact15_item-2 {
  align-self: start;
}

#blackberrygorse-image-wrapper-1 {
  grid-area: 1 / 2 / 2 / 3;
}

@media screen and (max-width: 991px) {
  #about-image-wrapper-1, #about-content-wrapper-1 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #about-image-wrapper-1, #about-content-wrapper-1 {
    grid-area: auto;
  }

  #blackberrygorse-content-1, #blackberrygorse-content-2 {
    order: -9999;
  }
}


/* Plain JavaScript interaction states. */
.faq-answer {
  width: 100%;
  height: 0;
  transition: height 400ms ease;
}
.faq-icon-wrapper {
  transition: transform 400ms ease;
}
.faq-accordion.is-open .faq-icon-wrapper {
  transform: rotate(180deg);
}
.nav-toggle .menu-icon-line-top,
.nav-toggle .menu-icon-line-bottom {
  transition: transform 600ms cubic-bezier(.86, 0, .07, 1);
}
.nav-toggle .menu-icon-line-middle {
  transition: width 200ms cubic-bezier(.86, 0, .07, 1) 400ms;
}
.nav-toggle.is-open .menu-icon-line-top {
  transform: translateY(8px) rotate(-45deg);
}
.nav-toggle.is-open .menu-icon-line-bottom {
  transform: translateY(-8px) rotate(45deg);
}
.nav-toggle.is-open .menu-icon-line-middle {
  width: 0;
  transition-delay: 0ms;
}
.slider-mask {
  touch-action: pan-y;
}
[role="button"]:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .faq-answer, .faq-icon-wrapper,
  .nav-toggle .menu-icon-line-top,
  .nav-toggle .menu-icon-line-middle,
  .nav-toggle .menu-icon-line-bottom {
    transition: none;
  }
}

.crayon-credit { color: inherit; text-decoration: none; transition: color 200ms ease; }
.crayon-credit:hover, .crayon-credit:focus-visible { color: var(--green); }
.footer-4-bottom-wrapper { gap: 16px; flex-wrap: wrap; }
.testimonial-customer-image-wrapper { overflow: visible; flex-shrink: 0; }
.comparison-carousel { position: relative; }
.comparison-track { display: flex; gap: 28px; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x mandatory; }
.comparison-track::-webkit-scrollbar { display: none; }
.comparison-track > .comparison-card { flex: 0 0 calc((100% - 56px) / 3); scroll-snap-align: start; }
.comparison-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; padding: 0; border: 0; border-radius: 50%; background: var(--white); color: var(--black); cursor: pointer; transition: background 200ms ease, color 200ms ease; }
.comparison-arrow:hover { background: var(--green); color: var(--white); }
.comparison-arrow:focus-visible { outline: 2px solid var(--green); outline-offset: 4px; }
.comparison-arrow[hidden] { display: none; }
.comparison-prev { left: -24px; }
.comparison-next { right: -24px; }
@media (max-width: 991px) {
  .comparison-track { gap: 24px; }
  .comparison-track > .comparison-card { flex-basis: calc((100% - 24px) / 2); }
}
@media (max-width: 767px) {
  .comparison-track > .comparison-card { flex-basis: 100%; }
  .comparison-arrow { width: 44px; height: 44px; }
  .comparison-prev { left: -22px; }
  .comparison-next { right: -22px; }
}
/* Before and after project photographs. */
.before-after-section {
  padding: 80px 0 0;
  background: var(--black);
}
#before-and-after { padding: 0 0 80px; }
.comparison-heading {
  max-width: 44rem;
  margin-bottom: 40px;
}
.comparison-heading h2 { margin: 0; }
.comparison-heading p { margin-bottom: 0; line-height: 1.6; }
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.comparison-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #fefefb66;
  border-radius: 10px;
  background: var(--black);
}
.comparison-photo {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  color: var(--white);
}
.comparison-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}
.comparison-pair .comparison-photo + .comparison-photo { border-top: 1px solid #fefefb66; }

/* Our Work uses one consistent eight-pixel, square-edged image grid. */
.work-before-after {
  padding: 8px 0 !important;
  background: #25261f;
}
.work-before-after .comparison-track {
  gap: 8px;
}
.work-before-after .comparison-track > .comparison-card {
  flex-basis: calc((100% - 16px) / 3);
}
.work-before-after .comparison-card {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.work-before-after .comparison-pair {
  display: grid;
  gap: 8px;
}
.work-before-after .comparison-pair .comparison-photo + .comparison-photo {
  border-top: 0;
}
.work-before-after .comparison-arrow {
  background: var(--white);
  color: var(--black);
}
.work-before-after .comparison-arrow:hover {
  background: var(--green);
  color: var(--white);
}
.work-before-after + .gallery-section {
  padding-top: 8px;
}
.comparison-label {
  position: absolute;
  top: 12px;
  left: 24px;
  padding: 6px 13px;
  border-radius: 50rem;
  background: #1a1913eb;
  color: var(--white);
  font-size: .6875rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.comparison-label--after { background: var(--green); color: var(--white); }
.comparison-extra { margin-top: 40px; }
.comparison-extra h3 { font-size: 1.5rem; margin-bottom: 24px; }
.comparison-extra-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.comparison-extra-grid figure { margin: 0; min-width: 0; }
.comparison-extra-grid .comparison-photo { border-radius: 10px; }
.comparison-extra-grid figcaption { margin-top: 10px; text-align: left; font-size: .75rem; color: #fefefbcc; }
@media screen and (max-width: 991px) {
  .comparison-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .comparison-extra-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-before-after .comparison-track > .comparison-card { flex-basis: calc((100% - 8px) / 2); }
  .vegetation-gallery-image { height: 260px; }
}
@media screen and (max-width: 767px) {
  .before-after-section { padding-top: 48px; }
  #before-and-after { padding: 0 0 48px; }
  .comparison-heading { margin-bottom: 28px; }
  .comparison-grid { grid-template-columns: minmax(0, 1fr); }
  .work-before-after .comparison-track > .comparison-card { flex-basis: 100%; }
  .vegetation-gallery-section { padding-bottom: 48px; }
  .vegetation-gallery-image { height: 240px; }
  }
@media screen and (max-width: 479px) {
  .comparison-extra-grid { grid-template-columns: minmax(0, 1fr); }
}

/* Responsive heading scale: one predictable visual level per heading class. */
.heading-h1 {
  font-size: clamp(2.65rem, 5vw, 4rem);
  line-height: 1.08;
}

.heading-h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.15;
}

.heading-h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.25;
}

.heading-h4 {
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  line-height: 1.35;
}

.heading-h5 {
  font-size: 1.125rem;
  line-height: 1.4;
}

.heading-h6 {
  font-size: 1rem;
  line-height: 1.4;
}

.heading-h2.cta-heading {
  color: #ffffed;
  margin: 0;
}

.hero-quote-pair .call-button {
  flex-basis: 50px;
  width: 50px;
  height: 50px;
}

.cta-paragraph a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
  -webkit-text-fill-color: currentColor;
}

.cta-paragraph a[href^="tel:"] .bold-text {
  color: inherit;
}

.footer-credit-divider {
  margin-bottom: 18px;
}

/* Consistent site-wide section rhythm. */
:root {
  --section-space: 80px;
  --section-space-compact: 40px;
}

.section-faq,
.gallery-section,
.cta-section,
.home-about-section,
.home-contact-section,
.home-services-section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.home-gallery-section .rl-padding-section-large {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.home-review-section {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

#before-and-after:not(.work-before-after) {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.work-before-after + .gallery-section {
  padding-top: 8px;
}

.blackberrygorse-section.top {
  margin: 0;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space-compact);
}

.blackberrygorse-section.bottom {
  margin: 0;
  padding-top: var(--section-space-compact);
  padding-bottom: var(--section-space-compact);
}

.vegetation-gallery-section {
  padding-top: var(--section-space-compact);
  padding-bottom: var(--section-space);
}

.cta-content-wrapper {
  gap: 20px;
}

@media screen and (max-width: 767px) {
  :root {
    --section-space: 48px;
    --section-space-compact: 24px;
  }
}

@media screen and (max-width: 479px) {
  .hero-action-row {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .hero-quote-pair {
    align-items: flex-start;
    gap: 10px;
  }
}

.footer-4-bottom-wrapper {
  gap: 8px;
  padding-right: 0;
}

@media screen and (max-width: 767px) {
  .footer-4-bottom-wrapper {
    flex-direction: column;
  }

  .footer-credit-text.text-secondary-color {
    margin-top: 0;
  }
}
