.services-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 54px;
  align-items: end;
}

.service-statement {
  position: relative;
  padding: 32px 0 0 34px;
}

.service-statement::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  height: 120px;
  border-top: 10px solid var(--orange);
  border-left: 10px solid var(--yellow);
}

.service-statement span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.service-statement h2 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.6vw, 3.7rem);
}

.scope-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 0;
}

.scope-tile {
  min-height: 300px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--yellow);
  box-shadow: 0 14px 35px rgba(32, 33, 36, 0.08);
  transition: transform 220ms ease, border-color 220ms ease;
}

.scope-tile:hover {
  transform: translateY(-8px);
  border-top-color: var(--orange);
}

.scope-tile span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--orange);
  font-weight: 900;
}

.scope-tile h3 {
  font-size: 1.35rem;
}

.service-feature {
  position: relative;
  overflow: hidden;
  background: var(--soft-gray);
}

.service-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../gallery/1.jpeg") center / cover;
  filter: grayscale(1);
  opacity: 0.08;
}

.service-feature .section-pad {
  position: relative;
}

.feature-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 58px;
  align-items: center;
}

.feature-copy .button {
  margin-top: 16px;
}

.feature-image {
  position: relative;
}

.feature-image::before {
  content: "";
  position: absolute;
  left: -20px;
  bottom: -20px;
  width: 46%;
  height: 34%;
  background: var(--orange);
  z-index: 0;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

.feature-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.service-detail-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-detail-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../gallery/29.jpeg") center / cover;
  filter: grayscale(1);
  opacity: 0.05;
  pointer-events: none;
}

.service-detail-grid > * {
  position: relative;
}

.detail-panel {
  padding: 28px;
  background: var(--charcoal);
  border-bottom: 6px solid var(--yellow);
}

.detail-panel h3 {
  color: var(--white);
  font-size: 1.35rem;
}

.detail-panel p {
  color: #d9dbd5;
}

@media (max-width: 940px) {
  .services-intro,
  .feature-layout {
    grid-template-columns: 1fr;
  }

  .scope-board,
  .service-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .scope-board,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
}
