.services-hero {
 width: 100%;
 height: 600px;
 object-fit: cover;
 margin: 0;
 padding: 0;

}

.intro-top-section {
 display: flex;
 gap: 8rem;
 padding-top: 8rem;
 padding-bottom: 8rem;
}

.intro-heading {
 flex: 1 1 30%;
 font-weight: 100;
 color: var(--accent-meta);
}

.intro-top-text {
 flex: 1 1 70%;
 font-weight: 300;
}

.intro-bottom-section {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 2rem;
 margin-top: 8rem;
 padding-bottom: 4rem;
 padding-left: 4rem;
 padding-right: 4rem;
 border-bottom: 0.1px solid var(--text-color);
}

.intro-bottom-text {
 font-weight: 200;
}

.projects-block {
 display: flex;
 flex-wrap: wrap;
 gap: 2rem;
}

.project-card {
 flex: 1 1 calc(25% - 1.5rem);
 box-sizing: border-box;
 display: block;
 text-decoration: none;
 color: inherit;
 transition: transform 0.2s ease, box-shadow 0.2s ease;
 padding: 1rem;
 border-radius: 10px;
}

.project-card:hover {
 transform: translateY(-4px);
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.project-card img {
 width: 100%;
 height: auto;
 display: block;
 object-fit: cover;
 aspect-ratio: 6/9;
 padding-bottom: 1rem;
 border-bottom: solid 0.1px var(--text-color);
}

.project-info {
 text-decoration: none;
}

.project-info h3 {
 font-size: 1rem;
 font-weight: normal;
 margin: 0.5rem 0 0;
 transition: text-decoration 0.3s ease;
}

.project-info h3:hover {
 text-decoration: underline;
}

.project-block-metadata {
 display: flex;
 justify-content: space-between;
 font-size: 0.875rem;
 font-weight: 200;
 color: var(--accent-meta);
 padding-top: 0.2rem;
}

.project-block-title {
 font-size: 1rem;
 font-weight: normal;
 margin: 0.5rem 0 0;
}

.phase-block,
.table-block {
 display: flex;
 flex-direction: row;
 align-items: flex-start;
 padding-top: 4rem;
 padding-bottom: 4rem;
 gap: 4rem;
 border-bottom: solid 0.1px var(--text-color);
}

.phase-block .call-to-action-button {
background-color: var(--accent-hl-alt);
}

.phase-block .call-to-action-button:hover {
 background-color: var(--button-bg);
}

.table-block {
 border-top: solid 0.1px var(--text-color);
}

.phase-left,
.table-left {
 flex: 1 1 50%;
}

.phase-title,
.table-title {
 font-weight: 300;
 padding-bottom: 1rem;
}

.table-title {
 text-transform: uppercase;
 font-size: 2rem;
 width: 80%;
}

.phase-text,
.additional-phase-text,
.table-text {
 font-size: 1rem;
 font-weight: 200;
}

.bold-table-text {
 font-weight: 500;
}

.bullet-point {
 font-size: 1.5rem;
 font-weight: 100;
 line-height: 120%;
 letter-spacing: 2%;
 text-transform: uppercase;
}

.phase-right {
 flex: 1 1 50%;
 text-align: center;
}

.table-right {
 text-align: end;
 flex: 1 1 50%;
 border-left: solid 0.1px var(--text-color);
 padding-left: 2rem;
}

.project-phase-img {
 max-width: 100%;
 height: 25rem;
 display: block;
 object-fit: cover;
 aspect-ratio: 5 / 3;
 filter: grayscale(100%);
 margin-left: auto;
}

.additional-phase-text {
 margin-bottom: 1rem;
}

.bold-inline-text {
 font-weight: 500;
}

#ongoing-care {
 scroll-margin-top: 110px;
}

@media screen and (max-width: 1024px) {
 .intro-top-section {
  gap: 4rem;
  padding-right: 0;
  padding-top: 4rem;
  padding-bottom: 4rem;
 }

 .intro-bottom-section {
  margin-top: 4rem;
 }

 .projects-block {
  gap: 0;
 }

 .project-phase-img {
  height: 20rem;
 }
}

@media screen and (max-width: 820px) {

 .services-hero {
  height: 450px;
 }

 .intro-top-section {
  gap: 2rem;
 }

 .planting-intro .intro-heading {
  flex: 1 1 45%;
 }

 .planting-intro .intro-top-text {
  flex: 1 1 55%;
 }

 .project-phase-img {
  height: 15rem;
 }

 .table-block {
  padding-top: 4rem;
  padding-bottom: 4rem;
  gap: 2rem;
 }

 .table-title {
  width: 95%;
 }

 .consult-table .table-left {
  flex: 1 1 55%;
  border-right: solid 0.1px var(--text-color);
  padding-right: 2rem;
 }

 .consult-table .table-right {
  flex: 1 1 45%;
  border-left: none;
  padding-left: none;
 }

 .redesign-table .table-left {
  flex: 1 1 40%;
  border-right: solid 0.1px var(--text-color);
  padding-right: 2rem;
 }

 .redesign-table .table-right {
  flex: 1 1 60%;
  border-left: none;
  padding-left: none;

 }

}

@media screen and (max-width: 768px) {
 .table-block {
  gap: 0;
 }

 .redesign-table .table-left {
  flex: 1 1 40%;
  padding-right: 1rem;
 }

 .redesign-table .table-right {
  flex: 1 1 60%;
 }
}

@media screen and (max-width: 767px) {
 .services-hero {
  height: 200px;
 }

 .intro-top-section {
  flex-direction: column;
  padding-top: 2rem;
 }

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

 .project-card {
  flex: 1 1 calc(100% - 1rem);
  padding: 0;
  margin-bottom: 4rem;
 }

   .project-card:hover {
    transform: none;
   box-shadow: none;
  }

 .phase-block,
 .table-block {
  flex-direction: column;
 }

 .phase-block {
  padding-bottom: 2rem;
  gap: 2rem;
  padding-top: 2rem;
 }

 .table-block {
  padding-top: 4rem;
  padding-bottom: 4rem;
 }

 .bottom-call-to-action {
  padding: 0;
  margin-left: 0;
  margin-right: 0;
 }

 .redesign-table .table-left,
 .consult-table .table-left {
  flex: 1 1 100%;
  padding-right: 0;
  border-right: none;
  border-left: none;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 4rem;
  border-bottom: 0.1px solid var(--text-color)
 }

 .redesign-table .table-right,
 .consult-table .table-right {
  text-align: start;
  flex: 1 1 100%;
  border-right: none;
  border-left: none;
  padding-left: 0;
  padding-right: 0;
  padding-top: 4rem;
 }

 .project-phase-img {
  width: 100%;
  height: auto;
 }

 .project-card.last-projects {
  display: none;
 }

 .redesign-table .bullet-point {
  font-size: 1.25rem;
 }

 .consult-table .bullet-point {
  font-size: 1.4rem;
 }
}

@media screen and (max-width: 360px) {
 .redesign-table .bullet-point {
  font-size: 1.15rem;
 }
}