/* Services are a quiet list on the existing dark section. */
.scope-section .scope-shell { display: block; }
.scope-section h2 { margin-bottom: 42px; }
.scope-section .scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 56px;
  row-gap: 0;
  margin-top: 0;
  border-top: 1px solid var(--line-dark);
}
.scope-section .scope-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
  padding: 30px 0 34px;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  border-radius: 0;
  background: transparent;
  overflow: visible;
}
.scope-section .scope-item {
  align-items: center;
  justify-items: center;
  text-align: left;
}
.scope-section .scope-item-image,
.scope-section .scope-item-image--art {
  display: block;
  width: 112px;
  height: 112px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  transition: transform 420ms cubic-bezier(.22, 1, .36, 1), filter 420ms ease;
}
.scope-section .scope-item-copy {
  min-width: 0;
  width: 100%;
}
.scope-section .scope-item h3,
.scope-section .scope-item p { margin-left: 0; margin-right: auto; }
.scope-section .scope-item h3 {
  max-width: 27ch;
  margin: 0;
  color: #fffaf3;
  font-size: 23px;
  line-height: 1.22;
  letter-spacing: -.025em;
}
.scope-section .scope-item p {
  max-width: 52ch;
  margin: 12px 0 0;
  color: #d5cbc1;
  font-size: 16px;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .scope-section .scope-grid { column-gap: 32px; }
  .scope-section .scope-item {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 18px;
  }
  .scope-section .scope-item-image,
  .scope-section .scope-item-image--art {
    width: 88px;
    height: 88px;
  }
}
@media (max-width: 760px) {
  .scope-section h2 { margin-bottom: 28px; }
  .scope-section .scope-grid { grid-template-columns: 1fr; }
  .scope-section .scope-item {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 18px;
    padding: 24px 0 28px;
  }
}
@media (max-width: 420px) {
  .scope-section .scope-item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
  }
  .scope-section .scope-item-image,
  .scope-section .scope-item-image--art {
    width: 72px;
    height: 72px;
  }
  .scope-section .scope-item h3 { font-size: 19px; }
  .scope-section .scope-item p { font-size: 15px; }
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .scope-section .scope-item:hover .scope-item-image,
  .scope-section .scope-item:focus-within .scope-item-image {
    transform: scale(1.045);
    filter: brightness(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scope-section .scope-item-image { transition: none; }
}
